:root {
  --ink: #14102f;
  --navy: #191536;
  --deep: #0d1026;
  --blue: #087fbd;
  --cyan: #09aee5;
  --aqua: #21d0d7;
  --sky: #eaf8ff;
  --line: #d9e5ee;
  --muted: #5b6877;
  --white: #ffffff;
  --orange: #ff7a18;
  --green: #168a5f;
  --shadow: 0 20px 60px rgba(20, 16, 47, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(9, 174, 229, 0.18), transparent 30rem),
    radial-gradient(circle at 92% 14%, rgba(33, 208, 215, 0.14), transparent 28rem),
    linear-gradient(180deg, #f3fbff 0%, #ffffff 46%, #f7fbfe 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(3, 19, 49, 0.98), rgba(4, 25, 62, 0.95));
  backdrop-filter: blur(20px);
  box-shadow: none;
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(3, 19, 49, 0.98), rgba(4, 25, 62, 0.95));
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 48px rgba(0, 12, 36, 0.22);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(86.5%, 1480px);
  min-height: 88px;
  gap: 36px;
}

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

.brand img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--white);
  font-size: 1.12rem;
  letter-spacing: 0;
  line-height: 1.1;
}

.brand span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
}

.site-header.scrolled .brand strong {
  color: var(--white);
}

.site-header.scrolled .brand span {
  color: rgba(255, 255, 255, 0.78);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.nav-links a {
  position: relative;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 0;
  transition: color 180ms ease;
}

.nav-caret {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-links a:hover .nav-caret {
  transform: translateY(0) rotate(45deg);
}

.site-header.scrolled .nav-links a {
  color: rgba(255, 255, 255, 0.94);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00aeef, #007bff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.site-header.scrolled .nav-links a:hover,
.site-header.scrolled .nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  box-shadow: 0 0 18px rgba(0, 174, 239, 0.55);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions .btn {
  min-height: 54px;
  border-radius: 8px;
  padding: 15px 26px;
  font-size: 1rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-size: 1.35rem;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 11px 18px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn-icon-calendar,
.btn-icon-arrow {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
}

.btn-icon-calendar {
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.btn-icon-calendar::before {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 3px;
  border-top: 2px solid currentColor;
}

.btn-icon-calendar::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: -5px;
  height: 4px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.btn-icon-arrow {
  width: 16px;
  height: 2px;
  background: currentColor;
}

.btn-icon-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.btn:hover {
  transform: translateY(-1px) scale(1.02);
}

.btn-primary {
  background: linear-gradient(135deg, #00aeef 0%, #007bff 100%);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(0, 123, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.05);
  box-shadow: 0 20px 46px rgba(0, 174, 239, 0.42), 0 0 30px rgba(0, 123, 255, 0.22);
}

.btn-outline-strong {
  border-color: rgba(8, 127, 189, 0.24);
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  box-shadow: 0 14px 34px rgba(20, 16, 47, 0.08);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.btn-glass {
  border-color: rgba(8, 127, 189, 0.18);
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(20, 16, 47, 0.12);
}

.btn-outline {
  border-color: var(--line);
  background: var(--white);
  color: var(--navy);
}

.hero {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--deep);
  min-height: calc(100vh - 88px);
}

.hero-carousel {
  height: calc(100vh - 88px);
  min-height: 640px;
  isolation: isolate;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px) scale(1.01);
  transition: opacity 800ms ease, transform 800ms ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 18, 50, 0.88) 0%, rgba(3, 30, 75, 0.76) 28%, rgba(5, 70, 130, 0.48) 47%, rgba(0, 123, 255, 0.16) 66%, rgba(0, 174, 239, 0.04) 84%, rgba(0, 174, 239, 0) 100%),
    radial-gradient(circle at 16% 30%, rgba(0, 174, 239, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(3, 20, 50, 0.18) 0%, rgba(3, 20, 50, 0.06) 48%, rgba(2, 14, 38, 0.66) 100%);
}

.hero-copy {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  width: min(86.5%, 1480px);
  margin: 0 auto;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 34px;
  padding-bottom: 34px;
}

.hero-content {
  width: 610px;
  max-width: 44%;
  min-width: 0;
}

.hero-copy h1 {
  max-width: 100%;
  margin: 18px 0 14px;
  color: var(--white);
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  font-size: clamp(2.65rem, 3.45vw, 4.05rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy h1 span {
  color: #20c8ff;
  text-shadow: 0 0 26px rgba(0, 174, 239, 0.38);
}

.hero-copy p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  font-weight: 650;
  line-height: 1.45;
}

.hero-badge-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
}

.badge-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(32, 200, 255, 0.5);
  border-radius: 999px;
  background: rgba(0, 174, 239, 0.2);
  color: #20c8ff;
  box-shadow: inset 0 0 18px rgba(32, 200, 255, 0.14), 0 12px 32px rgba(0, 174, 239, 0.18);
  font-size: 1rem;
}

.badge-icon::before,
.badge-icon::after,
.stat-icon::before,
.stat-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.badge-icon,
.stat-icon {
  position: relative;
}

.icon-shield::before {
  width: 12px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 7px 7px 9px 9px;
  transform: translateY(-1px);
}

.icon-shield::after {
  width: 6px;
  height: 3px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-1px) rotate(-45deg);
}

.icon-projects::before {
  width: 14px;
  height: 11px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.icon-projects::after {
  width: 7px;
  height: 4px;
  top: 10px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
}

.icon-globe::before {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.icon-globe::after {
  width: 16px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -5px 0 -1px currentColor, 0 5px 0 -1px currentColor;
  opacity: 0.9;
}

.icon-support::before {
  width: 16px;
  height: 12px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.icon-support::after {
  width: 18px;
  height: 8px;
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: translateY(5px);
}

.hero-copy .trust-badge {
  max-width: 100%;
  border-color: rgba(255, 255, 255, 0.22);
  background: linear-gradient(90deg, rgba(0, 174, 239, 0.28), rgba(0, 123, 255, 0.18));
  color: var(--white);
  box-shadow: inset 0 0 18px rgba(32, 200, 255, 0.08), 0 18px 38px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
  min-height: 38px;
  padding: 8px 16px;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(95px, 1fr));
  width: 100%;
  gap: 0;
  margin-top: 28px;
}

.hero-stats div {
  position: relative;
  min-width: 0;
  padding: 0 14px;
}

.hero-stats div:first-child {
  padding-left: 0;
}

.hero-stats div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.stat-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  border: 1px solid rgba(32, 200, 255, 0.58);
  border-radius: 999px;
  background: rgba(0, 174, 239, 0.14);
  color: #20c8ff;
  box-shadow: 0 0 22px rgba(0, 174, 239, 0.2);
  font-size: 1rem;
}

.hero-stats strong {
  display: block;
  color: #20c8ff;
  font-size: clamp(1.9rem, 2vw, 2.35rem);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 22px rgba(0, 174, 239, 0.55), 0 2px 16px rgba(0, 0, 0, 0.45);
}

.hero-stats small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.3;
}

.hero-slide.active .hero-copy .trust-badge,
.hero-slide.active .hero-copy .badge-icon,
.hero-slide.active .hero-copy h1,
.hero-slide.active .hero-copy p,
.hero-slide.active .hero-copy .hero-actions,
.hero-slide.active .hero-copy .hero-stats {
  animation: heroCopyIn 720ms ease both;
}

.hero-slide.active .hero-copy h1 {
  animation-delay: 80ms;
}

.hero-slide.active .hero-copy p {
  animation-delay: 150ms;
}

.hero-slide.active .hero-copy .hero-actions {
  animation-delay: 220ms;
}

.hero-slide.active .hero-copy .hero-stats {
  animation-delay: 300ms;
}

.btn-hero-outline {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.34);
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.btn-hero-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(-102%);
  transition: transform 260ms ease;
}

.btn-hero-outline:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
}

.btn-hero-outline:hover::before {
  transform: translateX(0);
}

.hero-effects {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  transform: translate3d(var(--hero-mx, 0), var(--hero-my, 0), 0);
  transition: transform 180ms ease-out;
}

.particle,
.soft-glow,
.network-line,
.orbit-globe,
.wallet-icon {
  position: absolute;
  display: block;
}

.particle {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(33, 208, 215, 0.76);
  box-shadow: 0 0 24px rgba(33, 208, 215, 0.72);
  animation: heroParticle 9s linear infinite;
}

.p1 { left: 12%; top: 34%; animation-delay: -1s; }
.p2 { left: 28%; top: 72%; animation-delay: -3s; }
.p3 { left: 58%; top: 23%; animation-delay: -4s; }
.p4 { left: 76%; top: 68%; animation-delay: -6s; }
.p5 { left: 88%; top: 38%; animation-delay: -2s; }

.network-line {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(33, 208, 215, 0.82), transparent);
  opacity: 0.55;
  animation: networkPulse 4s ease-in-out infinite;
}

.n1 {
  right: 12%;
  top: 34%;
  width: 28%;
  transform: rotate(-11deg);
}

.n2 {
  right: 21%;
  bottom: 26%;
  width: 24%;
  transform: rotate(15deg);
  animation-delay: -2s;
}

.soft-glow {
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.55;
  animation: glowFloat 7s ease-in-out infinite;
}

.g1 {
  right: 14%;
  top: 18%;
  width: 150px;
  height: 150px;
  background: rgba(9, 174, 229, 0.28);
}

.g2 {
  right: 34%;
  bottom: 16%;
  width: 110px;
  height: 110px;
  background: rgba(255, 122, 24, 0.18);
  animation-delay: -3s;
}

.orbit-globe {
  right: 9%;
  top: 27%;
  width: 108px;
  height: 108px;
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  animation: rotateGlobe 12s linear infinite;
}

.orbit-globe::before,
.orbit-globe::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(33, 208, 215, 0.44);
  border-radius: 999px;
}

.wallet-icon {
  right: 17%;
  bottom: 20%;
  width: 82px;
  height: 58px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 20px 46px rgba(9, 174, 229, 0.28);
  animation: walletFloat 5.4s ease-in-out infinite;
}

.wallet-icon::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 18px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.carousel-arrow:hover {
  background: var(--cyan);
  color: var(--white);
  transform: translateY(-50%) scale(1.06);
}

.carousel-prev {
  left: 24px;
}

.carousel-next {
  right: 24px;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 8;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.carousel-dots button {
  width: 42px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  padding: 0;
  transition: width 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.carousel-dots button.active {
  width: 64px;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(9, 174, 229, 0.65);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(9, 174, 229, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--blue);
  box-shadow: 0 12px 30px rgba(8, 127, 189, 0.1);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 8px 13px;
  text-transform: uppercase;
}


.eyebrow {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 720px;
  margin: 14px 0 22px;
  color: var(--navy);
  font-size: clamp(2.45rem, 6vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 650px;
  margin: 0;
  color: #273148;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  max-width: 100%;
  margin-top: 24px;
}

.hero-actions .btn {
  flex: 0 0 auto;
  min-height: 48px;
  border-radius: 8px;
  padding: 13px 21px;
  font-size: 0.92rem;
  white-space: nowrap;
}


.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
  transform: translateY(-42px);
}

.metric {
  min-height: 118px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 254, 0.98));
}

.metric strong {
  display: block;
  color: var(--navy);
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.94rem;
}

.trusted-band {
  border-top: 1px solid rgba(217, 229, 238, 0.72);
  border-bottom: 1px solid rgba(217, 229, 238, 0.72);
  background: rgba(255, 255, 255, 0.72);
  padding: 28px 0;
  overflow: hidden;
}

.trusted-band .eyebrow {
  display: block;
  margin-bottom: 16px;
  text-align: center;
}

.logo-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: logoMarquee 24s linear infinite;
}

.logo-track span {
  min-width: 180px;
  border: 1px solid rgba(217, 229, 238, 0.88);
  border-radius: var(--radius);
  background: #ffffff;
  color: #2f3b50;
  box-shadow: 0 12px 30px rgba(20, 16, 47, 0.05);
  font-weight: 900;
  padding: 14px 18px;
  text-align: center;
}

.section {
  padding: 84px 0;
}

.section.alt {
  background: var(--white);
}

.solutions-showcase {
  background:
    radial-gradient(circle at 12% 0%, rgba(9, 174, 229, 0.12), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f3fbff 100%);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2,
.split h2,
.cta h2 {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-head p,
.split p,
.cta p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.grid-3,
.grid-2,
.product-grid {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.product-grid {
  grid-template-columns: repeat(3, 1fr);
}

.solution-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.solution-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(217, 229, 238, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 44px rgba(20, 16, 47, 0.08);
  padding: 26px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9, 174, 229, 0.1), transparent 44%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.solution-card:hover {
  transform: translateY(-8px);
  border-color: rgba(9, 174, 229, 0.36);
  box-shadow: 0 26px 70px rgba(20, 16, 47, 0.13);
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-card h3,
.solution-card p,
.solution-icon {
  position: relative;
  z-index: 1;
}

.solution-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  font-weight: 900;
}

.solution-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.14rem;
  line-height: 1.25;
}

.solution-card p {
  margin: 0;
  color: var(--muted);
}

.card,
.feature,
.product-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(20, 16, 47, 0.07);
}

.lift-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.lift-card:hover {
  transform: translateY(-6px);
  border-color: rgba(9, 174, 229, 0.36);
  box-shadow: 0 24px 58px rgba(20, 16, 47, 0.12);
}

.card,
.feature,
.product-card {
  padding: 28px;
}

.card h3,
.feature h3,
.product-card h3,
.contact-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.25;
}

.card p,
.feature p,
.product-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

.card .link,
.product-card .link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--blue);
  font-weight: 900;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--sky);
  color: var(--blue);
  font-weight: 900;
}

.icon.orange {
  background: #fff1e7;
  color: var(--orange);
}

.icon.green {
  background: #eaf8f2;
  color: var(--green);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: 46px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(360px, 1fr) minmax(0, 0.88fr);
}

.visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.visual:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 72px rgba(20, 16, 47, 0.16);
}

.visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 26px;
  color: #334056;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(9, 174, 229, 0.15);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.tag {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
  color: #334056;
  font-size: 0.86rem;
  font-weight: 800;
  padding: 7px 10px;
}

.page-hero {
  padding: 94px 0 82px;
  background: linear-gradient(135deg, #f7fbfe 0%, #e9f8ff 46%, #fff7ef 100%);
}

.page-hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.6rem);
}

.cta {
  padding: 68px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 16%, rgba(33, 208, 215, 0.42), transparent 18rem),
    linear-gradient(135deg, var(--navy), #0b5f96 65%, var(--blue));
  color: var(--white);
}

.premium-final-cta {
  position: relative;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(8, 72, 116, 0.22);
}

.premium-final-cta::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(12px, -18px, 0) scale(1.08);
  }
}

@keyframes heroPanelIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes particleFloat {
  0% {
    transform: translate3d(0, 24px, 0);
    opacity: 0;
  }
  18%,
  78% {
    opacity: 1;
  }
  100% {
    transform: translate3d(20px, -74px, 0);
    opacity: 0;
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes walletFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-4deg);
  }
  50% {
    transform: translate3d(0, -16px, 0) rotate(3deg);
  }
}

@keyframes rotateGlobe {
  to {
    transform: rotate(360deg);
  }
}

@keyframes lineMove {
  0%,
  100% {
    opacity: 0.22;
    filter: blur(0);
  }
  50% {
    opacity: 0.9;
    filter: blur(1px);
  }
}

@keyframes logoMarquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroParticle {
  0% {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }
  20%,
  78% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(22px, -80px, 0);
  }
}

@keyframes networkPulse {
  0%,
  100% {
    opacity: 0.2;
    filter: blur(0);
  }
  50% {
    opacity: 0.9;
    filter: blur(1px);
  }
}

@keyframes glowFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(14px, -18px, 0) scale(1.08);
  }
}

.cta h2,
.cta p {
  color: var(--white);
}

.cta p {
  max-width: 700px;
  margin-top: 14px;
  opacity: 0.88;
}

.cta .hero-actions {
  margin-top: 28px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 24px;
}

.contact-card {
  padding: 28px;
}

.form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--navy);
  font-weight: 800;
  font-size: 0.9rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.site-footer {
  background: #100d26;
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(4, 0.7fr);
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(9, 174, 229, 0.2));
}

.site-footer h3,
.site-footer h4 {
  color: var(--white);
  margin: 0 0 14px;
}

.site-footer ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.premium-strip {
  border-color: rgba(0, 174, 239, 0.18);
  background:
    linear-gradient(180deg, #061a3a 0%, #08234d 100%);
}

.premium-strip .eyebrow {
  color: #20c8ff;
}

.premium-strip .logo-track span {
  border-color: rgba(32, 200, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

.home-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background:
    radial-gradient(circle at 12% 6%, rgba(0, 174, 239, 0.1), transparent 28rem),
    linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
}

.home-dark {
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 174, 239, 0.22), transparent 30rem),
    radial-gradient(circle at 86% 20%, rgba(33, 208, 215, 0.16), transparent 28rem),
    linear-gradient(180deg, #061832 0%, #081f44 100%);
  color: var(--white);
}

.home-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.6fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.home-section-head h2,
.home-split h2 {
  margin: 8px 0 0;
  color: var(--white);
  font-size: clamp(2.2rem, 3.9vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.image-band .home-section-head h2,
.image-band .home-split h2,
.services-band .home-section-head h2 {
  color: #061832;
}

.home-section-head p,
.home-split p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.04rem;
}

.image-band .home-section-head p,
.image-band .home-split p,
.services-band .home-section-head p {
  color: #526276;
}

.home-pillar-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.home-pillar,
.service-tile {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(32, 200, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055));
  box-shadow: 0 24px 70px rgba(0, 9, 28, 0.2);
  padding: 28px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.home-pillar:hover,
.service-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(32, 200, 255, 0.42);
  box-shadow: 0 30px 80px rgba(0, 16, 48, 0.28);
}

.home-pillar h3,
.service-tile h3 {
  margin: 18px 0 10px;
  color: var(--white);
  font-size: 1.22rem;
}

.home-pillar p,
.service-tile p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.74);
}

.pillar-number,
.solution-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(32, 200, 255, 0.42);
  border-radius: 999px;
  background: rgba(0, 174, 239, 0.12);
  color: #20c8ff;
  font-weight: 900;
}

.home-pillar .link {
  color: #20c8ff;
}

.home-split {
  align-items: center;
}

.home-visual {
  overflow: hidden;
  border: 1px solid rgba(0, 174, 239, 0.18);
  border-radius: 8px;
  background: #061832;
  box-shadow: 0 28px 80px rgba(5, 20, 50, 0.18);
}

.home-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.capability-list,
.premium-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.capability-list span,
.premium-tags .tag {
  border: 1px solid rgba(0, 174, 239, 0.2);
  border-radius: 999px;
  background: rgba(0, 174, 239, 0.08);
  color: #0b5f96;
  font-weight: 800;
  padding: 9px 13px;
}

.solutions-layer .solution-card {
  border-color: rgba(32, 200, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.06));
  box-shadow: 0 22px 70px rgba(0, 9, 28, 0.18);
}

.solutions-layer .solution-card h3 {
  color: var(--white);
}

.solutions-layer .solution-card p {
  color: rgba(255, 255, 255, 0.72);
}

.services-band {
  background:
    linear-gradient(180deg, #f5fbff 0%, #ffffff 100%);
}

.service-tile {
  border-color: rgba(8, 127, 189, 0.16);
  background: var(--white);
  box-shadow: 0 22px 64px rgba(5, 20, 50, 0.1);
}

.service-tile img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  object-fit: cover;
}

.service-tile h3 {
  color: #061832;
}

.service-tile p {
  color: #526276;
}

.premium-final-cta {
  border: 1px solid rgba(32, 200, 255, 0.22);
  background:
    radial-gradient(circle at 82% 20%, rgba(0, 174, 239, 0.34), transparent 24rem),
    linear-gradient(135deg, #061832 0%, #082b5c 58%, #007bff 100%);
  box-shadow: 0 30px 90px rgba(0, 18, 50, 0.22);
}

.premium-final-cta .btn-outline,
.premium-final-cta .btn-hero-outline {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.site-footer {
  background:
    radial-gradient(circle at 86% 10%, rgba(0, 174, 239, 0.12), transparent 24rem),
    linear-gradient(180deg, #061832 0%, #050d20 100%);
}

@media (max-width: 980px) {
  .home-section-head,
  .home-pillar-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .home-section {
    padding: 70px 0;
  }
}

@media (max-width: 620px) {
  .home-section {
    padding: 56px 0;
  }

  .home-pillar,
  .service-tile {
    padding: 22px;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .header-actions .btn {
    display: none;
  }

  .hero-carousel {
    min-height: 680px;
  }

  .hero-copy {
    padding-left: 34px;
    padding-right: 34px;
  }

  .hero-content {
    width: min(70%, 640px);
    min-width: 0;
  }

  .hero-copy .trust-badge,
  .hero-badge-row,
  .hero-copy h1,
  .hero-copy p,
  .hero-actions,
  .hero-stats {
    max-width: min(70%, 640px);
    width: auto;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 22px 0;
    margin-top: 38px;
  }

  .hero-stats div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .carousel-arrow {
    display: none;
  }

  .solution-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-strip,
  .grid-3,
  .grid-2,
  .product-grid,
  .section-head,
  .split,
  .split.reverse,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .metric-strip {
    transform: none;
    margin-top: 24px;
  }

  .section {
    padding: 64px 0;
  }

  .cta {
    padding: 40px 24px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .page-hero {
    padding: 58px 0 62px;
  }

  .hero-carousel {
    height: 720px;
    min-height: 720px;
  }

  .hero-slide img {
    object-position: 64% center;
  }

  .hero-gradient {
    background:
      linear-gradient(180deg, rgba(7, 14, 32, 0.82) 0%, rgba(7, 14, 32, 0.66) 48%, rgba(7, 14, 32, 0.2) 100%);
  }

  .hero-copy {
    justify-content: flex-start;
    padding-top: 132px;
    padding-bottom: 96px;
  }

  .hero-content {
    width: 100%;
    min-width: 0;
  }

  .hero-copy .trust-badge,
  .hero-badge-row,
  .hero-copy h1,
  .hero-copy p,
  .hero-actions,
  .hero-stats {
    max-width: 100%;
    width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(2.25rem, 10vw, 3.15rem);
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-badge-row {
    gap: 8px;
  }

  .badge-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
  }

  .hero-copy .trust-badge {
    min-height: 30px;
    font-size: 0.68rem;
    padding: 7px 10px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 30px;
  }

  .hero-stats div {
    padding: 0 14px;
  }

  .hero-stats div:first-child,
  .hero-stats div:nth-child(3) {
    padding-left: 0;
  }

  .stat-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
  }

  .hero-stats strong {
    font-size: 1.65rem;
  }

  .hero-stats small {
    font-size: 0.82rem;
  }

  .carousel-dots {
    bottom: 24px;
  }

  .carousel-dots button {
    width: 30px;
  }

  .carousel-dots button.active {
    width: 48px;
  }

  .orbit-globe,
  .wallet-icon,
  .network-line {
    display: none;
  }

  .solution-card-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .metric {
    min-height: 96px;
    padding: 20px;
  }

  .card,
  .feature,
  .product-card,
  .contact-card {
    padding: 22px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
