:root {
  --obsidian: #0d0d0d;
  --deep-navy: #07111f;
  --mint: #3dffb5;
  --blue: #2f80ff;
  --white: #f4f7fb;
  --muted: #a9b3c3;
  --line: #263241;
  --panel: rgba(244, 247, 251, 0.055);
  --panel-strong: rgba(244, 247, 251, 0.092);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 8px;
  --max: 1180px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  background: var(--obsidian);
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 6%, rgba(61, 255, 181, 0.14), transparent 28rem),
    radial-gradient(circle at 14% 24%, rgba(47, 128, 255, 0.18), transparent 31rem),
    linear-gradient(135deg, var(--obsidian), var(--deep-navy) 54%, #05070c);
  line-height: 1.5;
  overflow-x: clip;
  cursor: none;
}

a, button {
  cursor: none;
}

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 5px;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 7px;
  height: 7px;
  background: var(--mint);
  box-shadow: 0 0 18px rgba(61, 255, 181, 0.75);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(244, 247, 251, 0.55);
  transition: width .25s var(--ease), height .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}

.cursor-ring.is-hovering {
  width: 58px;
  height: 58px;
  border-color: rgba(61, 255, 181, 0.9);
  background: rgba(61, 255, 181, 0.08);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 18px 18px 0;
}

.nav {
  width: min(var(--max), calc(100vw - 36px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 14px;
  background: rgba(8, 13, 21, 0.64);
  border: 1px solid rgba(244, 247, 251, 0.12);
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--obsidian);
  filter: drop-shadow(0 12px 22px rgba(35, 104, 255, 0.18));
}

.brand-mark svg {
  width: 38px;
  height: 38px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
  color: rgba(244, 247, 251, 0.76);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  transition: color .2s var(--ease);
}

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

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  min-height: 44px;
  padding: 0 18px;
  color: #03110d;
  background: var(--mint);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 15px 42px rgba(61, 255, 181, 0.25);
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}

.nav-cta:hover,
.btn:hover {
  background: #75ffd0;
  box-shadow: 0 18px 54px rgba(61, 255, 181, 0.36);
}

.btn.secondary {
  color: var(--white);
  background: rgba(244, 247, 251, 0.08);
  border: 1px solid rgba(244, 247, 251, 0.15);
  box-shadow: none;
}

.section {
  padding: 92px 18px;
}

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

.hero {
  min-height: 100svh;
  padding: 116px 18px 58px;
  display: grid;
  align-items: center;
  position: relative;
  isolation: isolate;
}

.hero-grid {
  width: min(var(--max), calc(100vw - 36px));
  margin: 0 auto;
  display: grid;
  gap: 46px;
  align-items: center;
}

.hero-copy {
  max-width: 860px;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0;
  margin: 0;
  line-height: .95;
}

h1 {
  font-size: clamp(46px, 6.4vw, 92px);
  max-width: 950px;
}

.word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.word span {
  display: inline-block;
  will-change: transform, opacity;
}

.hero p {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(244, 247, 251, 0.76);
  font-size: clamp(18px, 2.2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-foot {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 30px;
  color: rgba(244, 247, 251, 0.62);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-foot span {
  color: var(--mint);
}

.orbit-wrap {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(244, 247, 251, 0.11);
  background: linear-gradient(145deg, rgba(244, 247, 251, 0.06), rgba(244, 247, 251, 0.025));
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.orbit-wrap::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle, rgba(61, 255, 181, 0.16), transparent 24%),
    conic-gradient(from 60deg, transparent, rgba(47, 128, 255, 0.28), transparent, rgba(61, 255, 181, 0.28), transparent);
  animation: rotate-field 24s linear infinite;
}

.orbit {
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(244, 247, 251, 0.11);
  border-radius: 50%;
}

.orbit.two {
  inset: 82px;
  opacity: .65;
}

.saas-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 148px;
  height: 148px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #03110d;
  background:
    radial-gradient(circle at 35% 30%, #ffffff, var(--mint) 38%, var(--blue));
  box-shadow: 0 0 42px rgba(61, 255, 181, 0.36), 0 0 100px rgba(47, 128, 255, 0.26);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  text-align: center;
  line-height: 1;
  z-index: 2;
}

.product-node {
  position: absolute;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(244, 247, 251, 0.18);
  background: rgba(7, 17, 31, 0.82);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
  z-index: 3;
}

.product-node svg {
  width: 29px;
  height: 29px;
  color: var(--mint);
}

.node-a { left: 9%; top: 22%; }
.node-b { right: 12%; top: 13%; }
.node-c { right: 6%; bottom: 26%; }
.node-d { left: 16%; bottom: 13%; }
.node-e { left: 44%; top: 5%; }
.node-f { right: 38%; bottom: 4%; }

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--mint);
  opacity: .7;
  box-shadow: 0 0 16px var(--mint);
  animation: drift 7s ease-in-out infinite alternate;
}

.particle.one { left: 20%; top: 70%; animation-delay: -1s; }
.particle.two { left: 68%; top: 76%; animation-delay: -3s; }
.particle.three { left: 78%; top: 34%; animation-delay: -5s; }

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 44px;
}

.section-heading h2 {
  font-size: clamp(38px, 7vw, 82px);
  max-width: 840px;
}

.section-heading p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.stats {
  padding-top: 30px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(244, 247, 251, 0.14);
  border-left: 1px solid rgba(244, 247, 251, 0.14);
}

.stat {
  padding: 28px;
  min-height: 170px;
  border-right: 1px solid rgba(244, 247, 251, 0.14);
  border-bottom: 1px solid rgba(244, 247, 251, 0.14);
  background: rgba(244, 247, 251, 0.035);
}

.stat strong {
  display: block;
  color: var(--mint);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(38px, 6vw, 62px);
  line-height: .9;
  white-space: nowrap;
}

.stat strong span {
  display: inline;
  margin-top: 0;
}

.stat span {
  display: block;
  margin-top: 15px;
  color: rgba(244, 247, 251, 0.72);
  font-weight: 700;
}

.sector-grid {
  display: grid;
  gap: 18px;
  perspective: 1000px;
}

.product-card {
  min-height: 224px;
  position: relative;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(244, 247, 251, 0.12);
  border-radius: var(--radius);
  background: var(--panel);
  transform-style: preserve-3d;
  will-change: transform;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(0, 0, 0, .62));
  z-index: 1;
}

.product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .34;
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.03);
  transition: transform .6s var(--ease), opacity .6s var(--ease);
}

.product-card:hover img {
  opacity: .48;
  transform: scale(1.08);
}

.product-content {
  position: relative;
  z-index: 2;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateZ(34px);
}

.product-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.product-title {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.icon-box {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--mint);
  background: rgba(61, 255, 181, 0.11);
  border: 1px solid rgba(61, 255, 181, 0.24);
}

.icon-box svg {
  width: 19px;
  height: 19px;
}

.product-index {
  color: rgba(244, 247, 251, 0.48);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.product-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.08;
}

.product-card p {
  margin: 0;
  color: rgba(244, 247, 251, 0.74);
  max-width: 360px;
  font-size: 13.5px;
  line-height: 1.4;
}

.process {
  position: relative;
  padding-top: 20px;
}

.progress-track {
  position: absolute;
  left: 0;
  top: 62px;
  width: 100%;
  height: 2px;
  background: rgba(244, 247, 251, 0.14);
  overflow: hidden;
}

.progress-fill {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--mint), var(--blue));
  box-shadow: 0 0 24px rgba(61, 255, 181, 0.5);
}

.steps {
  display: grid;
  gap: 26px;
}

.step {
  position: relative;
  padding: 34px 0 0;
}

.step-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--obsidian);
  border: 2px solid var(--mint);
  box-shadow: 0 0 0 9px rgba(61, 255, 181, 0.1);
  margin-bottom: 26px;
}

.step h3 {
  font-size: 30px;
  margin-bottom: 12px;
}

.step p {
  margin: 0;
  color: var(--muted);
  max-width: 320px;
}

.cta-section {
  position: relative;
  min-height: 72svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #05080e;
}

.cta-bg {
  position: absolute;
  inset: -18% 0;
  background:
    linear-gradient(rgba(5, 8, 14, 0.34), rgba(5, 8, 14, 0.86)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80") center / cover;
  will-change: transform;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  max-width: 880px;
  font-size: clamp(44px, 9vw, 104px);
}

.cta-content p {
  max-width: 640px;
  color: rgba(244, 247, 251, 0.78);
  margin: 24px 0 34px;
  font-size: 20px;
}

.site-footer {
  padding: 42px 18px;
  border-top: 1px solid rgba(244, 247, 251, 0.11);
  background: #080b10;
}

.footer-grid {
  width: min(var(--max), calc(100vw - 36px));
  margin: 0 auto;
  display: grid;
  gap: 24px;
  color: rgba(244, 247, 251, 0.62);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.footer-links a:hover {
  color: var(--white);
}

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

@keyframes drift {
  from { transform: translate3d(-10px, 6px, 0); }
  to { transform: translate3d(12px, -18px, 0); }
}

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

  body,
  a,
  button {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

@media (pointer: coarse) {
  body,
  a,
  button {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.22fr) minmax(320px, .78fr);
  }

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

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

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

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

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .section {
    padding: 122px 18px;
  }

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

  .product-card:nth-child(1),
  .product-card:nth-child(4) {
    transform-origin: left center;
  }

  .product-card:nth-child(3),
  .product-card:nth-child(6) {
    transform-origin: right center;
  }
}

@media (max-width: 767px) {
  .site-header {
    padding-top: 12px;
  }

  .nav {
    width: min(100%, calc(100vw - 24px));
  }

  .brand span {
    max-width: 118px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero {
    padding-top: 102px;
  }

  .orbit-wrap {
    min-height: 350px;
  }

  .saas-core {
    width: 122px;
    height: 122px;
    font-size: 14px;
  }

  .product-node {
    width: 58px;
    height: 58px;
  }

  .product-node svg {
    width: 23px;
    height: 23px;
  }

  .progress-track {
    display: none;
  }

  .step {
    border-left: 1px solid rgba(244, 247, 251, 0.14);
    padding: 0 0 0 24px;
  }

  .step-dot {
    position: absolute;
    left: -10px;
    top: 4px;
  }
}

/* Light, clear redesign overrides */
:root {
  --obsidian: #f7f9fc;
  --deep-navy: #eaf1f8;
  --mint: #00c78a;
  --blue: #2368ff;
  --white: #111827;
  --muted: #5f6f84;
  --line: #d8e1ed;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: rgba(255, 255, 255, 0.94);
  --shadow: 0 24px 70px rgba(24, 36, 58, 0.12);
}

html {
  background: #f7f9fc;
}

body {
  color: #111827;
  background:
    radial-gradient(circle at 74% 8%, rgba(0, 199, 138, 0.16), transparent 28rem),
    radial-gradient(circle at 8% 18%, rgba(35, 104, 255, 0.12), transparent 30rem),
    linear-gradient(135deg, #ffffff 0%, #f7f9fc 46%, #edf4fb 100%);
}

.noise {
  opacity: .08;
  mix-blend-mode: multiply;
}

.site-header {
  color: #111827;
}

.nav {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(17, 24, 39, 0.1);
  box-shadow: 0 16px 44px rgba(37, 55, 84, 0.12);
}

.brand-mark {
  color: #ffffff;
}

.nav-links {
  color: rgba(17, 24, 39, 0.62);
}

.nav-links a:hover {
  color: #111827;
}

.nav-cta,
.btn {
  color: #ffffff;
  background: #111827;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.18);
}

.nav-cta:hover,
.btn:hover {
  background: #2368ff;
  box-shadow: 0 18px 48px rgba(35, 104, 255, 0.26);
}

.btn.secondary {
  color: #111827;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(17, 24, 39, 0.13);
  box-shadow: 0 12px 34px rgba(37, 55, 84, 0.1);
}

.hero p,
.section-heading p,
.product-card p,
.step p,
.cta-content p {
  color: #526278;
}

.hero-foot {
  color: #6b7a90;
}

.hero-foot span {
  color: #2368ff;
}

.orbit-wrap,
.product-card,
.stat {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(17, 24, 39, 0.1);
  box-shadow: var(--shadow);
}

.orbit-wrap::before {
  background:
    radial-gradient(circle, rgba(0, 199, 138, 0.2), transparent 24%),
    conic-gradient(from 60deg, transparent, rgba(35, 104, 255, 0.22), transparent, rgba(0, 199, 138, 0.24), transparent);
}

.orbit,
.orbit.two {
  border-color: rgba(17, 24, 39, 0.14);
}

.saas-core {
  color: #ffffff;
  background:
    radial-gradient(circle at 35% 30%, #ffffff, #00c78a 34%, #2368ff);
  box-shadow: 0 0 42px rgba(0, 199, 138, 0.26), 0 0 92px rgba(35, 104, 255, 0.18);
}

.product-node {
  color: #111827;
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(17, 24, 39, 0.12);
}

.product-node svg,
.icon-box,
.icon-box svg {
  color: #2368ff;
}

.icon-box {
  background: rgba(35, 104, 255, 0.08);
  border-color: rgba(35, 104, 255, 0.18);
}

.stats-grid {
  border-top-color: rgba(17, 24, 39, 0.1);
  border-left-color: rgba(17, 24, 39, 0.1);
}

.stat {
  border-right-color: rgba(17, 24, 39, 0.1);
  border-bottom-color: rgba(17, 24, 39, 0.1);
  box-shadow: none;
}

.stat strong {
  color: #2368ff;
}

.stat span {
  color: #526278;
}

.product-card::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, .08) 0%, rgba(255, 255, 255, .86) 76%, rgba(255, 255, 255, .94));
}

.product-card img {
  opacity: .22;
  filter: saturate(1.02) contrast(1.02);
}

.product-card:hover img {
  opacity: .3;
}

.product-index {
  color: rgba(17, 24, 39, 0.38);
}

.progress-track {
  background: rgba(17, 24, 39, 0.12);
}

.progress-fill {
  background: linear-gradient(90deg, #2368ff, #00c78a);
}

.step-dot {
  background: #ffffff;
  border-color: #2368ff;
  box-shadow: 0 0 0 9px rgba(35, 104, 255, 0.08);
}

.cta-section {
  background: #f4f8fc;
}

.cta-bg {
  background:
    linear-gradient(90deg, rgba(247, 249, 252, 0.95), rgba(247, 249, 252, 0.76), rgba(247, 249, 252, 0.5)),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.site-footer {
  background: #ffffff;
  border-top-color: rgba(17, 24, 39, 0.1);
}

.footer-grid {
  color: #66758b;
}

.footer-links a:hover {
  color: #111827;
}

.cursor-dot {
  background: #2368ff;
  box-shadow: 0 0 18px rgba(35, 104, 255, 0.5);
}

.cursor-ring {
  border-color: rgba(17, 24, 39, 0.34);
}

.cursor-ring.is-hovering {
  border-color: rgba(35, 104, 255, 0.8);
  background: rgba(35, 104, 255, 0.06);
}