﻿:root {
  --bg: #f4f8fb;
  --surface: #ffffff;
  --surface-soft: #eaf3f8;
  --text: #18324a;
  --muted: #5d7285;
  --blue: #2a5d91;
  --blue-soft: #d9ecf8;
  --cyan: #48b9df;
  --gold: #d5a84d;
  --line: #d8e5ee;
  --shadow: 0 18px 50px rgba(42, 93, 145, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(115deg, rgba(214, 226, 235, 0.99) 0 28%, rgba(176, 215, 232, 0.96) 28% 52%, rgba(207, 222, 233, 0.99) 52% 100%),
    radial-gradient(circle at 86% 8%, rgba(72, 185, 223, 0.4), transparent 25rem),
    radial-gradient(circle at 12% 32%, rgba(213, 168, 77, 0.23), transparent 20rem),
    radial-gradient(circle at 70% 78%, rgba(42, 93, 145, 0.25), transparent 24rem),
    var(--bg);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(42, 93, 145, 0.095) 1px, transparent 1px),
    linear-gradient(rgba(42, 93, 145, 0.08) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.42), transparent 76%);
}

body.menu-open {
  overflow: hidden;
}

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

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

#particles-js {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

.header,
main,
.footer {
  position: relative;
  z-index: 2;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding: 18px clamp(18px, 4vw, 56px);
  transition: padding 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.header.scrolled {
  padding-block: 10px;
  background: rgba(244, 248, 251, 0.86);
  box-shadow: 0 12px 36px rgba(42, 93, 145, 0.1);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1120px, 100%);
  min-height: 58px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  width: 148px;
  flex: 0 0 auto;
}

.brand img,
.footer img,
.cta-box img,
.hero-showcase img {
  height: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-menu a {
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: var(--blue);
}

.nav-cta,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.nav-cta {
  padding: 0 18px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(42, 93, 145, 0.18);
}

.button {
  min-width: 190px;
  padding: 0 22px;
}

.button svg {
  width: 19px;
  height: 19px;
}

.primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(42, 93, 145, 0.18);
}

.secondary {
  color: var(--blue);
  background: #fff;
  border: 1px solid var(--line);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 0.2s ease;
}

.hero {
  position: relative;
  padding: 136px clamp(18px, 5vw, 70px) 46px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 96px clamp(14px, 3vw, 46px) 18px;
  z-index: -1;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(225, 236, 244, 0.82), rgba(184, 219, 235, 0.68)),
    radial-gradient(circle at 92% 18%, rgba(72, 185, 223, 0.3), transparent 18rem);
  border: 0;
  box-shadow: none;
}

.hero-content {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section-text h2,
.section-heading h2,
.cta-box h2 {
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  margin-top: 20px;
  font-size: 3.08rem;
  font-weight: 800;
}

.hero p {
  max-width: 650px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-showcase {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
  padding: 0;
  isolation: isolate;
  justify-self: center;
  transform: translateX(34px);
}

.hero-showcase::before {
  content: none;
}

.hero-showcase::after {
  content: none;
}

.showcase-panel {
  position: relative;
  width: min(430px, calc(100vw - 56px));
  height: 430px;
  display: flex;
  place-items: center;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  border-radius: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transform: none;
}

.showcase-panel::before {
  content: none;
}

.planet-animation {
  position: relative;
  z-index: 1;
  width: 455px;
  height: 455px;
  pointer-events: none;
  opacity: 1;
  animation: planetFreeFloat 6.4s ease-in-out infinite;
}

.planet-glow {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  background: rgba(72, 205, 255, 0.52);
  filter: blur(28px);
  animation: planetPulse 3.8s ease-in-out infinite;
}

.planet-core {
  position: absolute;
  inset: 48px;
  overflow: hidden;
  border: 1px solid rgba(220, 249, 255, 0.86);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.95), transparent 0.36rem),
    radial-gradient(circle at 62% 64%, rgba(255, 255, 255, 0.78), transparent 0.3rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(72, 205, 255, 0.22));
  box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.26), 0 0 48px rgba(72, 205, 255, 0.46);
  animation: planetFloat 5.2s ease-in-out infinite;
}

.planet-core::before,
.planet-core::after {
  content: "";
  position: absolute;
  inset: 13% 18%;
  border: 1px solid rgba(220, 249, 255, 0.48);
  border-radius: 50%;
}

.planet-core::before {
  transform: rotate(28deg);
}

.planet-core::after {
  transform: rotate(-34deg);
}

.planet-line {
  position: absolute;
  left: -20%;
  right: -20%;
  height: 1px;
  background: rgba(220, 249, 255, 0.44);
}

.line-one { top: 34%; }
.line-two { top: 50%; }
.line-three { top: 66%; }

.planet-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 16px rgba(123, 229, 255, 0.95);
  animation: dotBlink 2.6s ease-in-out infinite;
}

.dot-one { top: 32%; left: 28%; }
.dot-two { top: 52%; right: 24%; animation-delay: 0.7s; }
.dot-three { bottom: 24%; left: 50%; animation-delay: 1.3s; }

.planet-orbit {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(220, 249, 255, 0.46);
  border-radius: 50%;
}

.planet-orbit b {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 18px rgba(123, 229, 255, 1);
}

.orbit-one {
  transform: rotateX(66deg) rotateZ(-18deg);
  animation: orbitSpin 8.5s linear infinite;
}

.orbit-two {
  inset: 48px;
  transform: rotateX(70deg) rotateZ(44deg);
  animation: orbitSpin 11s linear reverse infinite;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 58px 0;
}

.section-text {
  max-width: 780px;
}

.section-text h2,
.section-heading h2,
.cta-box h2 {
  margin-top: 14px;
  font-size: 2.25rem;
  font-weight: 800;
}

.section-text p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.about-grid article,
.services-list article,
.steps article {
  position: relative;
  overflow: hidden;
  --mx: 50%;
  --my: 50%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(72, 185, 223, 0.16), transparent 12rem),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 32px rgba(42, 93, 145, 0.08);
  transition: transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.about-grid article::before,
.services-list article::before,
.steps article::before {
  content: "";
  position: absolute;
  inset: -1px;
  padding: 1px;
  opacity: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(72, 185, 223, 0.75), rgba(213, 168, 77, 0.28), rgba(42, 93, 145, 0.08));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.about-grid article::after,
.services-list article::after,
.steps article::after {
  content: "";
  position: absolute;
  left: var(--mx);
  top: var(--my);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(72, 185, 223, 0.18) 42%, transparent 70%);
  filter: blur(8px);
  transform: translate(-50%, -50%) scale(0.72);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.about-grid article:hover,
.services-list article:hover,
.steps article:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(42, 93, 145, 0.22);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 58px rgba(42, 93, 145, 0.16);
}

.about-grid article:hover::before,
.services-list article:hover::before,
.steps article:hover::before {
  opacity: 1;
}

.about-grid article:hover::after,
.services-list article:hover::after,
.steps article:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.about-grid article > *,
.services-list article > *,
.steps article > * {
  position: relative;
  z-index: 1;
}

.about,
.services,
.process {
  position: relative;
}

.about::before,
.services::before,
.process::before {
  content: "";
  position: absolute;
  inset: 52px -28px;
  z-index: -1;
  border-radius: 24px;
  pointer-events: none;
}

.about::before {
  background: linear-gradient(135deg, rgba(215, 229, 239, 0.74), rgba(181, 215, 231, 0.54));
}

.services::before {
  background: linear-gradient(135deg, rgba(188, 220, 236, 0.78), rgba(215, 229, 239, 0.6));
}

.process::before {
  background: linear-gradient(135deg, rgba(235, 219, 180, 0.68), rgba(188, 219, 234, 0.58));
}

.about-grid article {
  padding: 26px;
}

.about-grid svg {
  width: 28px;
  height: 28px;
  color: var(--blue);
}

.about-grid h3,
.services-list h3,
.steps h3 {
  margin-top: 16px;
  font-size: 1.12rem;
}

.about-grid p,
.services-list p,
.steps p,
.cta-box p,
.footer p,
.footer a {
  color: var(--muted);
}

.about-grid p,
.services-list p,
.steps p {
  margin-top: 8px;
  font-size: 0.96rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 30px;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.services-list article {
  display: flex;
  gap: 18px;
  padding: 24px;
}

.services-list svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: var(--blue);
  transition: transform 0.28s ease, color 0.28s ease;
}

.services-list article:hover svg,
.about-grid article:hover svg {
  color: var(--cyan);
  transform: translateY(-3px) scale(1.08);
}

.process {
  padding-top: 48px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.steps article {
  padding: 26px;
}

.steps strong {
  color: var(--gold);
  font-size: 1.05rem;
}

.cta-section {
  width: min(1040px, calc(100% - 36px));
  margin: 0 auto;
  padding: 52px 0 68px;
}

.cta-box {
  padding: clamp(32px, 6vw, 68px);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(234, 243, 248, 0.95), rgba(255, 255, 255, 0.94)),
    #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}

.cta-box img {
  width: min(300px, 82%);
  margin: 0 auto 24px;
}

.cta-box h2 {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.cta-box p {
  max-width: 620px;
  margin: 18px auto 28px;
}

.footer {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer img {
  width: 144px;
}

.footer div {
  text-align: right;
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .hero-content,
  .about-grid,
  .services-list,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-showcase {
    max-width: 560px;
    transform: none;
  }

  .section-heading {
    display: block;
  }
}

@media (max-width: 780px) {
  .brand {
    width: 126px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 24;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    z-index: 22;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 10px;
    padding: 90px 24px 32px;
    background: rgba(244, 248, 251, 0.96);
    backdrop-filter: blur(22px);
    transform: translateY(-100%);
    transition: transform 0.25s ease;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
  }

  .nav-cta {
    display: none;
  }

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

  .hero h1 {
    max-width: 100%;
    font-size: 1.85rem;
    overflow-wrap: break-word;
  }

  .hero-copy,
  .hero p,
  .hero-actions {
    width: 320px;
    max-width: calc(100vw - 48px);
    min-width: 0;
  }

  .hero-showcase {
    width: 300px;
    max-width: calc(100vw - 56px);
    justify-self: start;
    min-height: 310px;
    padding: 18px;
  }

  .planet-animation {
    width: 348px;
    height: 348px;
    opacity: 1;
  }

  .showcase-panel {
    width: 100%;
    height: 360px;
    transform: none;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }

  .footer div {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section,
  .cta-section,
  .footer {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding-block: 44px;
  }

  .cta-section {
    padding-block: 42px 54px;
  }

  .tag {
    font-size: 0.68rem;
    line-height: 1.3;
    min-height: 38px;
    padding-inline: 10px;
  }

  .services-list article {
    display: block;
  }
}

@keyframes orbitSpin {
  to {
    rotate: 360deg;
  }
}

@keyframes planetFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-5px) rotate(5deg);
  }
}

@keyframes planetFreeFloat {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

@keyframes planetPulse {
  0%, 100% {
    opacity: 0.55;
    transform: scale(0.96);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

@keyframes dotBlink {
  0%, 100% {
    opacity: 0.42;
    transform: scale(0.85);
  }

  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Modern visual refresh */
:root {
  --ink: #102335;
  --glass: rgba(255, 255, 255, 0.72);
  --shadow-strong: 0 28px 80px rgba(24, 50, 74, 0.18);
}

body {
  background:
    linear-gradient(118deg, rgba(244, 248, 251, 0.98), rgba(222, 238, 247, 0.94) 46%, rgba(249, 244, 231, 0.94)),
    var(--bg);
}

body::before {
  opacity: 0.62;
  background:
    linear-gradient(90deg, rgba(42, 93, 145, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(42, 93, 145, 0.07) 1px, transparent 1px);
  background-size: 88px 88px;
}

#particles-js {
  opacity: 0.22;
}

.header {
  padding-top: 16px;
  padding-left: 16px;
  padding-right: 16px;
}

.nav {
  width: 100%;
  max-width: none;
  min-height: 66px;
  padding: 8px 10px 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 44px rgba(42, 93, 145, 0.1);
  backdrop-filter: blur(18px);
}

.header.scrolled {
  background: transparent;
  box-shadow: none;
}

.brand {
  width: 156px;
}

.nav-menu {
  padding: 0 10px;
  color: rgba(24, 50, 74, 0.76);
}

.nav-menu a {
  position: relative;
  padding: 8px 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-menu a:hover::after {
  transform: scaleX(1);
}

.nav-cta,
.primary {
  background: linear-gradient(135deg, #245986, #2c7fa9 56%, #48b9df);
  box-shadow: 0 16px 36px rgba(42, 93, 145, 0.24);
}

.secondary {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(42, 93, 145, 0.08);
  backdrop-filter: blur(12px);
}

.hero {
  padding-top: 148px;
  padding-bottom: 78px;
}

.hero::before {
  inset: 104px clamp(14px, 3vw, 46px) 24px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(202, 229, 241, 0.58)),
    linear-gradient(90deg, rgba(213, 168, 77, 0.14), transparent 48%);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-strong);
}

.hero-content {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
}

.hero h1 {
  max-width: 780px;
  font-size: 4.45rem;
  line-height: 0.98;
  font-weight: 900;
  color: var(--ink);
}

.hero p {
  max-width: 690px;
  color: rgba(24, 50, 74, 0.74);
  font-size: 1.12rem;
}

.tag {
  gap: 8px;
  border: 1px solid rgba(72, 185, 223, 0.32);
  color: #245986;
  background: rgba(217, 236, 248, 0.78);
  box-shadow: 0 10px 24px rgba(72, 185, 223, 0.11);
}

.tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(213, 168, 77, 0.16);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 660px;
  margin-top: 26px;
}

.hero-metrics div {
  min-height: 86px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 34px rgba(42, 93, 145, 0.1);
  backdrop-filter: blur(14px);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  color: var(--blue);
  font-size: 1.28rem;
  line-height: 1;
}

.hero-metrics span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-showcase {
  min-height: 500px;
  transform: none;
}

.showcase-panel {
  width: min(510px, calc(100vw - 56px));
  height: 500px;
  justify-content: center;
}

.section {
  padding-block: 72px;
}

.section-text h2,
.section-heading h2,
.cta-box h2 {
  color: var(--ink);
  font-size: 2.25rem;
}

.section-heading {
  align-items: end;
}

.section-heading p {
  max-width: 420px;
  color: var(--muted);
  font-weight: 600;
}

.about-grid article,
.services-list article,
.steps article {
  border-color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(72, 185, 223, 0.17), transparent 12rem),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(42, 93, 145, 0.1);
  backdrop-filter: blur(16px);
}

.about-grid article,
.steps article {
  padding: 30px;
}

.about-grid svg,
.services-list svg {
  width: 31px;
  height: 31px;
}

.services-list article {
  min-height: 156px;
  align-items: flex-start;
  padding: 28px;
}

.services-list article > i,
.about-grid article > i {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: var(--radius);
  color: var(--blue);
  background: linear-gradient(135deg, rgba(217, 236, 248, 0.96), rgba(255, 255, 255, 0.72));
  box-shadow: inset 0 0 0 1px rgba(72, 185, 223, 0.18);
}

.steps strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 34px;
  border-radius: 999px;
  background: rgba(213, 168, 77, 0.16);
}

.cta-box {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(221, 240, 248, 0.84)),
    #fff;
  box-shadow: var(--shadow-strong);
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(213, 168, 77, 0.12), transparent 46%, rgba(72, 185, 223, 0.16));
  pointer-events: none;
}

.cta-box > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    justify-self: center;
    min-height: 460px;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .section-heading {
    display: grid;
  }
}

@media (max-width: 780px) {
  .nav {
    border-radius: 12px;
  }

  .hero {
    padding-top: 122px;
  }

  .hero-copy,
  .hero p,
  .hero-actions,
  .hero-metrics {
    width: auto;
    max-width: 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .showcase-panel {
    height: auto;
  }

  .chip-one,
  .chip-two {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.15rem;
  }

  .section-text h2,
  .section-heading h2,
  .cta-box h2 {
    font-size: 1.7rem;
  }

  .mockup-body {
    grid-template-columns: 1fr;
  }

  .mockup-sidebar {
    grid-template-columns: repeat(4, 44px);
  }

  .mockup-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes mockupFloat {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

/* Requested hero refinements */
.hero h1 {
  max-width: 720px;
  font-size: 3.55rem;
  line-height: 1.04;
}

.tech-globe {
  position: relative;
  width: min(470px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  animation: globeFloat 6.4s ease-in-out infinite;
}

.globe-halo {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 185, 223, 0.44), rgba(42, 93, 145, 0.14) 42%, transparent 68%);
  filter: blur(18px);
  animation: globePulse 4s ease-in-out infinite;
}

.globe-core {
  position: relative;
  width: 72%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(220, 249, 255, 0.92);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.95), transparent 0.34rem),
    radial-gradient(circle at 36% 28%, rgba(255, 255, 255, 0.32), transparent 7rem),
    linear-gradient(145deg, rgba(72, 185, 223, 0.98), rgba(42, 93, 145, 0.96) 68%, rgba(24, 50, 74, 0.98));
  box-shadow:
    inset -34px -30px 54px rgba(16, 35, 53, 0.36),
    inset 22px 22px 36px rgba(255, 255, 255, 0.2),
    0 34px 76px rgba(24, 50, 74, 0.28);
}

.globe-core::before,
.globe-core::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.globe-core::before {
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent),
    repeating-linear-gradient(90deg, transparent 0 30px, rgba(255, 255, 255, 0.16) 31px, transparent 32px);
  animation: globeSpin 9s linear infinite;
}

.globe-core::after {
  background: radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.18), transparent 38%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.latitude,
.longitude {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(220, 249, 255, 0.34);
  border-radius: 50%;
  pointer-events: none;
}

.latitude {
  left: 8%;
  right: 8%;
  height: 18%;
}

.lat-one { top: 24%; }
.lat-two { top: 42%; }
.lat-three { top: 60%; }

.longitude {
  top: 7%;
  bottom: 7%;
  width: 34%;
}

.lon-one { left: 16%; }
.lon-two { left: 33%; }
.lon-three { right: 16%; }

.node {
  position: absolute;
  z-index: 4;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.18), 0 0 22px rgba(123, 229, 255, 0.95);
  animation: dotBlink 2.6s ease-in-out infinite;
}

.node-one { left: 32%; top: 33%; }
.node-two { right: 28%; top: 42%; animation-delay: 0.6s; }
.node-three { left: 47%; bottom: 26%; animation-delay: 1.1s; }
.node-four { right: 34%; bottom: 35%; animation-delay: 1.7s; }

.globe-ring {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(220, 249, 255, 0.62);
  border-radius: 50%;
  pointer-events: none;
}

.globe-ring b {
  position: absolute;
  top: 11px;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 22px rgba(123, 229, 255, 1);
}

.ring-one {
  transform: rotateX(68deg) rotateZ(-16deg);
  animation: orbitSpin 8s linear infinite;
}

.ring-two {
  inset: 20%;
  transform: rotateX(70deg) rotateZ(48deg);
  animation: orbitSpin 11s linear reverse infinite;
}

.globe-chip {
  position: absolute;
  z-index: 5;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(24, 50, 74, 0.16);
  backdrop-filter: blur(14px);
  font-size: 0.82rem;
  font-weight: 900;
}

.globe-chip svg {
  width: 17px;
  height: 17px;
  color: var(--cyan);
}

.globe-chip.chip-one {
  top: 86px;
  right: -34px;
}

.globe-chip.chip-two {
  left: -26px;
  bottom: 64px;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.85rem;
  }
}

@media (max-width: 780px) {
  .tech-globe {
    width: min(410px, 100%);
  }

  .globe-chip {
    position: static;
    margin: 10px 10px 0;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .tech-globe {
    width: min(330px, 100%);
  }
}

@keyframes globeFloat {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@keyframes globePulse {
  0%, 100% {
    opacity: 0.62;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes globeSpin {
  to {
    transform: translateX(-64px);
  }
}

@keyframes continentDrift {
  0% {
    translate: 0 0;
  }

  50% {
    translate: -18px 3px;
  }

  100% {
    translate: 0 0;
  }
}

/* Final override: smaller hero title and guaranteed visible globe */
.hero h1 {
  max-width: 620px !important;
  font-size: 2.75rem !important;
  line-height: 1.12 !important;
  font-weight: 850 !important;
}

.hero-content {
  width: min(1320px, 100%) !important;
  grid-template-columns: minmax(560px, 0.88fr) minmax(660px, 1fr) !important;
  gap: 34px !important;
  align-items: center !important;
}

.hero-showcase {
  min-height: 600px !important;
  display: grid !important;
  place-items: center !important;
}

.showcase-panel {
  width: 700px !important;
  max-width: 100% !important;
  height: 600px !important;
  display: grid !important;
  place-items: center !important;
  color: var(--text) !important;
}

.hero-showcase {
  min-height: 600px !important;
}

.showcase-panel {
  width: 700px !important;
  height: 600px !important;
}

.tech-globe {
  position: relative !important;
  width: 640px !important;
  height: 640px !important;
  display: grid !important;
  place-items: center !important;
  isolation: isolate !important;
  color: var(--text) !important;
  animation: globeFloat 6.4s ease-in-out infinite !important;
}

.globe-halo {
  position: absolute !important;
  inset: 20px !important;
  z-index: 0 !important;
  display: block !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(72, 185, 223, 0.55), rgba(42, 93, 145, 0.22) 48%, transparent 72%) !important;
  filter: blur(16px) !important;
}

.globe-core {
  position: relative !important;
  z-index: 2 !important;
  display: block !important;
  width: 470px !important;
  height: 470px !important;
  min-width: 470px !important;
  min-height: 470px !important;
  overflow: hidden !important;
  border: 2px solid rgba(220, 249, 255, 0.95) !important;
  border-radius: 50% !important;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.95), transparent 9px),
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.28), transparent 86px),
    linear-gradient(145deg, #48b9df 0%, #2a5d91 62%, #102335 100%) !important;
  box-shadow:
    inset -34px -32px 54px rgba(16, 35, 53, 0.42),
    inset 20px 20px 34px rgba(255, 255, 255, 0.24),
    0 30px 70px rgba(24, 50, 74, 0.32) !important;
}

.continent {
  display: none !important;
}

.globe-ring {
  z-index: 3 !important;
  display: block !important;
}

.globe-chip {
  z-index: 4 !important;
  color: var(--text) !important;
  background: rgba(255, 255, 255, 0.86) !important;
  border: 1px solid rgba(255, 255, 255, 0.92) !important;
}

.globe-chip.chip-one {
  top: 145px !important;
  right: 34px !important;
}

.globe-chip.chip-two {
  left: 32px !important;
  bottom: 145px !important;
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr !important;
  }

  .hero h1 {
    max-width: 100% !important;
    font-size: 2.35rem !important;
  }

  .showcase-panel {
    width: 580px !important;
    height: 520px !important;
  }

  .tech-globe {
    width: 520px !important;
    height: 520px !important;
  }

  .globe-core {
    width: 380px !important;
    height: 380px !important;
    min-width: 380px !important;
    min-height: 380px !important;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.9rem !important;
    line-height: 1.16 !important;
  }

  .showcase-panel {
    width: 340px !important;
    height: 350px !important;
  }

  .tech-globe {
    width: 330px !important;
    height: 330px !important;
  }

  .globe-core {
    width: 245px !important;
    height: 245px !important;
    min-width: 245px !important;
    min-height: 245px !important;
  }
}

/* Final override: full-width top menu */
.header {
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  padding: 0 !important;
}

.header.scrolled {
  padding: 0 !important;
}

.nav {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-top: 0 !important;
  border-radius: 0 !important;
  padding: 10px 28px !important;
}

@media (max-width: 780px) {
  .nav {
    padding: 10px 16px !important;
  }
}

/* Final override: right-aligned nav links and calibrated globe size */
.nav {
  justify-content: flex-start !important;
  gap: 26px !important;
}

.brand {
  margin-right: auto !important;
}

.nav-menu {
  margin-left: auto !important;
  gap: 34px !important;
}

.nav-cta {
  margin-left: 22px !important;
}

.showcase-panel {
  width: 620px !important;
  height: 545px !important;
}

.tech-globe {
  width: 560px !important;
  height: 560px !important;
}

.globe-core {
  width: 410px !important;
  height: 410px !important;
  min-width: 410px !important;
  min-height: 410px !important;
}

.globe-chip.chip-one {
  top: 116px !important;
  right: 32px !important;
}

.globe-chip.chip-two {
  left: 30px !important;
  bottom: 126px !important;
}

@media (max-width: 900px) {
  .brand {
    margin-right: 0 !important;
  }

  .nav-menu {
    margin-left: 0 !important;
  }

  .showcase-panel {
    width: 520px !important;
    height: 470px !important;
  }

  .tech-globe {
    width: 470px !important;
    height: 470px !important;
  }

  .globe-core {
    width: 345px !important;
    height: 345px !important;
    min-width: 345px !important;
    min-height: 345px !important;
  }
}

