@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@600;700;800&display=swap');

:root {
  color-scheme: dark;
  --bg: #030814;
  --bg-2: #061021;
  --surface: rgba(7, 18, 38, 0.72);
  --surface-solid: #081429;
  --surface-light: #0c1b34;
  --line: rgba(135, 167, 207, 0.18);
  --line-bright: rgba(46, 169, 255, 0.42);
  --text: #f5f8ff;
  --muted: #9eacc2;
  --blue: #1ca6ff;
  --blue-2: #006eff;
  --green: #9bdc16;
  --green-2: #5cae00;
  --danger: #ff5f79;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 15%, rgba(0, 110, 255, 0.12), transparent 32rem),
    radial-gradient(circle at 80% 10%, rgba(155, 220, 22, 0.07), transparent 28rem),
    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: -5;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 86%);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

::selection {
  color: #04101a;
  background: var(--green);
}

.site-noise {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  z-index: -1;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.2;
  filter: blur(24px);
  background: radial-gradient(circle, rgba(28, 166, 255, 0.24), transparent 68%);
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
}

.section-shell {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 128px 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 100;
  width: min(1240px, calc(100% - 28px));
  height: var(--header-height);
  margin-top: 14px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(140, 171, 213, 0.16);
  border-radius: 18px;
  background: rgba(3, 8, 20, 0.62);
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  border-color: rgba(42, 153, 240, .28);
  background: rgba(3, 8, 20, 0.88);
  box-shadow: 0 20px 70px rgba(0,0,0,.4);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 0 20px rgba(28,166,255,.25));
}

.brand-word {
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.brand-word span {
  color: var(--green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links > a {
  position: relative;
  color: #c8d3e7;
  font-size: .88rem;
  font-weight: 600;
}

.nav-links > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.nav-links > a:hover {
  color: white;
}

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

.nav-cta {
  padding: 12px 17px;
  border: 1px solid rgba(28, 166, 255, .5);
  border-radius: 11px;
  color: white !important;
  background: rgba(28, 166, 255, .1);
}

.nav-cta:hover {
  border-color: rgba(155, 220, 22, .65);
  background: rgba(155, 220, 22, .08);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 1px;
  margin: 5px auto;
  background: white;
}

.hero {
  position: relative;
  min-height: 950px;
  padding-top: 190px;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 40px;
}

.hero-grid {
  position: absolute;
  inset: 85px -8vw 0;
  z-index: -3;
  opacity: .35;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(28,166,255,.12) 50%, transparent 50.2%),
    linear-gradient(transparent 49.8%, rgba(28,166,255,.08) 50%, transparent 50.2%);
  background-size: 90px 90px;
  mask-image: radial-gradient(ellipse at 65% 48%, black 0, transparent 68%);
}

.stars {
  position: absolute;
  z-index: -2;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: white;
}

.stars-a {
  top: 26%;
  right: 30%;
  box-shadow:
    40px 20px rgba(60,180,255,.8), 130px -80px rgba(255,255,255,.6),
    220px 60px rgba(155,220,22,.7), -80px 110px rgba(255,255,255,.5),
    350px 150px rgba(60,180,255,.8), 260px -130px rgba(255,255,255,.5),
    -170px -40px rgba(60,180,255,.7), 410px -90px rgba(155,220,22,.5),
    510px 80px rgba(255,255,255,.5), -310px 200px rgba(255,255,255,.35);
  animation: twinkle 5s infinite alternate;
}

.stars-b {
  top: 48%;
  right: 18%;
  opacity: .7;
  box-shadow:
    50px 40px rgba(255,255,255,.55), 190px 10px rgba(60,180,255,.7),
    320px 90px rgba(255,255,255,.4), -80px -60px rgba(155,220,22,.55),
    -220px 80px rgba(60,180,255,.5), 420px -40px rgba(255,255,255,.45);
  animation: twinkle 7s 1s infinite alternate-reverse;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 100px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(155,220,22,.7);
}

.hero h1 {
  max-width: 880px;
  margin: 22px 0 26px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(3.1rem, 6.5vw, 6.8rem);
  line-height: .98;
  letter-spacing: -.04em;
}

.hero h1 span {
  display: block;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(90deg, #27b2ff 0%, #e9f6ff 46%, #9bdc16 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 690px;
  margin: 0;
  color: #b0bfd4;
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
}

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

.button {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 750;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

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

.button-primary {
  color: #04101c;
  background: linear-gradient(95deg, #29b4ff, #8edb28);
  box-shadow: 0 16px 44px rgba(28,166,255,.18);
}

.button-primary:hover {
  box-shadow: 0 18px 55px rgba(117,210,50,.24);
}

.button-secondary {
  border-color: rgba(128, 160, 205, .25);
  color: #dbe6f6;
  background: rgba(9, 23, 46, .65);
}

.button-secondary:hover {
  border-color: rgba(28,166,255,.48);
  background: rgba(12,31,59,.85);
}

.trust-row {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  color: #8fa0b9;
  font-size: .82rem;
}

.check {
  margin-right: 5px;
  color: var(--green);
}

.hero-visual {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
}

.orbit-stage {
  position: relative;
  width: min(600px, 47vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.orbit-glow {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,103,255,.22), rgba(0,103,255,.03) 45%, transparent 70%);
  filter: blur(14px);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(72, 178, 255, .4);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.orbit::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border-top: 1px solid rgba(155,220,22,.75);
  border-left-color: transparent;
  border-bottom-color: transparent;
  filter: drop-shadow(0 0 10px rgba(155,220,22,.4));
}

.orbit span {
  position: absolute;
  top: 7%;
  right: 16%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 18px 5px rgba(28,166,255,.8);
}

.orbit-one {
  inset: 4%;
  animation: orbit-float 14s ease-in-out infinite;
}

.orbit-two {
  inset: 17%;
  opacity: .6;
  transform: rotate(58deg);
  animation: orbit-spin 18s linear infinite;
}

.orbit-three {
  inset: 29%;
  opacity: .35;
  transform: rotate(135deg);
  animation: orbit-spin-reverse 13s linear infinite;
}

.planet-horizon {
  position: absolute;
  bottom: 7%;
  left: 3%;
  width: 94%;
  height: 36%;
  border-radius: 50% 50% 15% 15% / 28% 28% 10% 10%;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 5%, rgba(255,255,255,.98) 0 1px, rgba(155,220,22,.8) 2px, rgba(28,166,255,.42) 7px, transparent 17px),
    radial-gradient(ellipse at 50% 8%, rgba(28,166,255,.5), transparent 22%),
    linear-gradient(180deg, rgba(0,149,255,.48), rgba(0,35,88,.6) 38%, #020711 74%);
  box-shadow:
    inset 0 1px 0 rgba(155,220,22,.9),
    0 -12px 45px rgba(28,166,255,.25);
  transform: perspective(500px) rotateX(56deg);
  transform-origin: center top;
}

.planet-horizon::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .45;
  background: repeating-linear-gradient(180deg, transparent 0 13px, rgba(28,166,255,.28) 14px 15px);
}

.hero-logo-wrap {
  position: relative;
  z-index: 3;
  width: 42%;
  filter: drop-shadow(0 0 34px rgba(28,166,255,.25));
  animation: logo-hover 5s ease-in-out infinite;
}

.signal-card {
  position: absolute;
  z-index: 5;
  width: 220px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(120,157,205,.24);
  border-radius: 14px;
  background: rgba(5,15,31,.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(15px);
}

.signal-card strong,
.signal-card small {
  display: block;
}

.signal-card strong {
  font-size: .82rem;
}

.signal-card small {
  margin-top: 2px;
  color: #8ea0ba;
  font-size: .68rem;
}

.signal-card-a {
  top: 17%;
  left: -3%;
  animation: float-card 5s .5s ease-in-out infinite;
}

.signal-card-b {
  right: -1%;
  bottom: 20%;
  animation: float-card 5.5s ease-in-out infinite reverse;
}

.signal-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Manrope, Inter, sans-serif;
  font-size: .66rem;
  font-weight: 800;
}

.signal-icon.blue {
  color: var(--blue);
  background: rgba(28,166,255,.08);
}

.signal-icon.green {
  color: var(--green);
  background: rgba(155,220,22,.07);
}

.hero-metrics {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 100%;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(8,20,41,.78), rgba(4,11,25,.9));
  box-shadow: 0 22px 70px rgba(0,0,0,.3);
  backdrop-filter: blur(14px);
}

.metric-card {
  position: relative;
  min-width: 0;
  min-height: 78px;
  padding: 10px 46px 10px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
  border-radius: 10px;
  color: inherit;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.metric-card:first-child {
  padding-left: 12px;
}

.metric-card:last-child {
  border-right: 0;
}

.metric-card:hover,
.metric-card:focus-visible {
  z-index: 2;
  outline: none;
  background: rgba(28,166,255,.07);
  box-shadow: inset 0 0 0 1px rgba(28,166,255,.2);
  transform: translateY(-2px);
}

.metric-arrow {
  position: absolute;
  top: 7px;
  right: 16px;
  color: var(--green);
  font-size: .8rem;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity .2s ease, transform .2s ease;
}

.metric-card:hover .metric-arrow,
.metric-card:focus-visible .metric-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.metric-value,
.metric-label {
  display: block;
}

.metric-value {
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.08;
  white-space: nowrap;
  color: white;
}

.metric-value-wide {
  font-size: 1.02rem;
  letter-spacing: .01em;
}

.metric-label {
  margin-top: 8px;
  color: #8798b1;
  font-size: .76rem;
  line-height: 1.3;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(6, 14, 29, .88);
}

.marquee-track {
  width: max-content;
  padding: 17px 0;
  display: flex;
  align-items: center;
  gap: 30px;
  animation: marquee 32s linear infinite;
}

.marquee-track span {
  color: #9db0c9;
  font-family: Manrope, Inter, sans-serif;
  font-size: .72rem;
  letter-spacing: .13em;
}

.marquee-track i {
  color: var(--green);
  font-style: normal;
  font-size: .65rem;
}

.section-kicker {
  margin-bottom: 18px;
}

.intro-grid,
.section-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: end;
}

.intro h2,
.section-heading h2,
.core-copy h2,
.contact h2 {
  margin: 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.intro-copy {
  color: #9dafc6;
  font-size: 1.05rem;
}

.intro-copy p {
  margin: 0 0 18px;
}

.pillar-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}

.pillar-card,
.service-card,
.process-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(11,27,53,.76), rgba(4,12,27,.88));
  box-shadow: 0 20px 60px rgba(0,0,0,.17);
}

.pillar-card {
  min-height: 350px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  color: inherit;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.pillar-card > * {
  position: relative;
  z-index: 1;
}

.pillar-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -55% 30%;
  height: 220px;
  border-radius: 50%;
  opacity: .16;
  background: radial-gradient(circle, var(--blue), transparent 65%);
}

.pillar-card:nth-child(even)::after {
  background: radial-gradient(circle, var(--green), transparent 65%);
}

.pillar-card:hover,
.pillar-card:focus-visible {
  z-index: 2;
  outline: none;
  border-color: rgba(28,166,255,.52);
  box-shadow: 0 24px 70px rgba(0,0,0,.34), inset 0 0 0 1px rgba(28,166,255,.1);
  transform: translateY(-8px);
}

.pillar-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(28,166,255,.42);
  border-radius: 50%;
  color: var(--blue);
  background: rgba(28,166,255,.05);
}

.pillar-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.green-icon {
  color: var(--green);
  border-color: rgba(155,220,22,.42);
  background: rgba(155,220,22,.05);
}

.card-number {
  position: absolute;
  top: 26px;
  right: 26px;
  color: rgba(201,217,240,.3);
  font-family: Manrope, Inter, sans-serif;
  font-size: .74rem;
}

.pillar-card h3 {
  margin: 58px 0 10px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.2rem;
}

.pillar-card p {
  margin: 0;
  color: #91a1b8;
  font-size: .92rem;
}

.card-link {
  margin-top: auto;
  padding-top: 26px;
  color: #c7d6e9;
  font-size: .76rem;
  font-weight: 750;
  opacity: .72;
  transition: color .2s ease, opacity .2s ease;
}

.card-link span {
  margin-left: 7px;
  color: var(--green);
  display: inline-block;
  transition: transform .2s ease;
}

.pillar-card:hover .card-link,
.pillar-card:focus-visible .card-link {
  color: white;
  opacity: 1;
}

.pillar-card:hover .card-link span,
.pillar-card:focus-visible .card-link span {
  transform: translate(3px, -3px);
}

.services {
  padding-top: 80px;
}

.section-heading {
  align-items: start;
  margin-bottom: 54px;
}

.section-heading p {
  max-width: 560px;
  margin: 0;
  color: #9dafc6;
  font-size: 1rem;
}

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

.service-card {
  min-height: 310px;
  padding: 32px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.service-card:hover {
  border-color: rgba(28,166,255,.4);
  background: linear-gradient(145deg, rgba(13,34,65,.88), rgba(5,13,29,.94));
  transform: translateY(-6px);
}

.service-featured {
  min-height: 480px;
  grid-row: span 2;
  background:
    radial-gradient(circle at 85% 15%, rgba(28,166,255,.18), transparent 22rem),
    linear-gradient(145deg, rgba(10,31,62,.92), rgba(4,12,27,.92));
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-index {
  color: var(--blue);
  font-family: Manrope, Inter, sans-serif;
  font-size: .72rem;
}

.service-badge {
  padding: 7px 10px;
  border: 1px solid rgba(155,220,22,.35);
  border-radius: 999px;
  color: var(--green);
  background: rgba(155,220,22,.06);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.service-card h3 {
  margin: auto 0 12px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
}

.service-featured h3 {
  max-width: 640px;
  margin-top: 110px;
  font-size: clamp(1.7rem, 3vw, 3.1rem);
}

.service-card p {
  max-width: 650px;
  margin: 0 0 22px;
  color: #93a4bc;
}

.service-card ul {
  margin: 4px 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px 18px;
  list-style: none;
}

.service-card li {
  color: #bdcadc;
  font-size: .84rem;
}

.service-card li::before {
  content: "◆";
  margin-right: 8px;
  color: var(--green);
  font-size: .55rem;
}

.service-card > a {
  margin-top: auto;
  color: #d9e7f8;
  font-size: .84rem;
  font-weight: 750;
}

.service-card > a span {
  margin-left: 8px;
  color: var(--green);
}

.morph-core {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(3,8,20,.82), rgba(8,22,45,.9)),
    radial-gradient(circle at 20% 50%, rgba(28,166,255,.11), transparent 35rem);
}

.core-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.core-visual {
  min-height: 580px;
  display: grid;
  place-items: center;
}

.core-radar {
  position: relative;
  width: min(480px, 42vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(28,166,255,.2);
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, transparent 0 15%, rgba(28,166,255,.08) 15.2% 15.5%),
    repeating-conic-gradient(from 0deg, rgba(28,166,255,.04) 0 1deg, transparent 1deg 30deg),
    rgba(4,13,28,.62);
  box-shadow: inset 0 0 90px rgba(0,107,255,.12), 0 0 80px rgba(0,0,0,.28);
}

.core-radar img {
  position: relative;
  z-index: 3;
  width: 120px;
  filter: drop-shadow(0 0 32px rgba(28,166,255,.25));
}

.radar-ring {
  position: absolute;
  border: 1px solid rgba(28,166,255,.18);
  border-radius: 50%;
}

.radar-ring-1 { inset: 18%; }
.radar-ring-2 { inset: 34%; }
.radar-ring-3 { inset: 46%; }

.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(28,166,255,.28), transparent 12%, transparent);
  animation: radar-spin 4s linear infinite;
}

.node {
  position: absolute;
  z-index: 3;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px 5px rgba(155,220,22,.35);
}

.node-1 { top: 22%; left: 29%; }
.node-2 { top: 38%; right: 17%; }
.node-3 { bottom: 23%; left: 24%; }
.node-4 { bottom: 14%; right: 34%; }

.core-copy > p {
  max-width: 660px;
  color: #9dafc6;
  font-size: 1.04rem;
}

.core-steps {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 14px;
}

.core-steps > div {
  padding: 17px;
  display: flex;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(6,16,33,.58);
}

.core-steps > div > span {
  color: var(--green);
  font-family: Manrope, Inter, sans-serif;
  font-size: .68rem;
}

.core-steps strong,
.core-steps small {
  display: block;
}

.core-steps strong {
  font-size: .9rem;
}

.core-steps small {
  margin-top: 2px;
  color: #8495ae;
  font-size: .76rem;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), rgba(28,166,255,.15), var(--green));
}

.process-card {
  min-height: 310px;
  padding: 34px 26px;
  border-radius: 20px;
}

.process-card span {
  position: relative;
  z-index: 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(28,166,255,.5);
  border-radius: 50%;
  color: var(--blue);
  background: #071329;
  font-family: Manrope, Inter, sans-serif;
  font-size: .72rem;
}

.process-card:nth-child(even) span {
  border-color: rgba(155,220,22,.45);
  color: var(--green);
}

.process-card h3 {
  margin: 80px 0 12px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.25rem;
}

.process-card p {
  margin: 0;
  color: #8fa0b8;
  font-size: .9rem;
}

.industry-panel {
  position: relative;
  overflow: hidden;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 70px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 0% 100%, rgba(28,166,255,.17), transparent 35rem),
    radial-gradient(circle at 100% 0%, rgba(155,220,22,.10), transparent 30rem),
    linear-gradient(145deg, rgba(10,26,50,.92), rgba(4,11,25,.96));
  box-shadow: var(--shadow);
}

.industry-copy h2 {
  margin: 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.industry-copy p {
  margin: 24px 0 30px;
  color: #9dafc6;
}

.industry-list {
  display: grid;
  align-content: center;
}

.industry-list div {
  padding: 17px 0;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.industry-list div:last-child {
  border-bottom: 0;
}

.industry-list span {
  color: var(--green);
  font-family: Manrope, Inter, sans-serif;
  font-size: .68rem;
}

.contact {
  padding-top: 60px;
}

.contact-panel {
  padding: 64px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 75px;
  border: 1px solid rgba(28,166,255,.24);
  border-radius: 28px;
  background:
    linear-gradient(125deg, rgba(8,23,47,.95), rgba(3,9,21,.98)),
    var(--surface-solid);
  box-shadow: 0 30px 100px rgba(0,0,0,.4);
}

.contact-copy p {
  color: #9dafc6;
}

.contact-points {
  margin-top: 28px;
  display: grid;
  gap: 11px;
  color: #b9c7d9;
  font-size: .88rem;
}

.contact-points span {
  margin-right: 8px;
  color: var(--green);
}

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

.form-row {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  color: #a9b7ca;
  font-size: .76rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(135,167,207,.22);
  border-radius: 10px;
  outline: none;
  color: white;
  background: rgba(4,12,26,.82);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input,
.contact-form select {
  height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(28,166,255,.65);
  box-shadow: 0 0 0 3px rgba(28,166,255,.08);
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-note {
  margin: 0;
  color: #74849c;
  font-size: .72rem;
  text-align: center;
}

.form-note code {
  color: #9badc4;
}

.form-note.success {
  color: var(--green);
}

.form-note.error {
  color: var(--danger);
}

.site-footer {
  padding: 70px 0 30px;
}

.footer-top {
  padding-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.footer-top p {
  margin: 0;
  color: #7f90aa;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-grid {
  padding: 42px 0;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid strong {
  margin-bottom: 7px;
  font-size: .8rem;
}

.footer-grid a {
  color: #8495ad;
  font-size: .78rem;
}

.footer-grid a:hover {
  color: var(--blue);
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #687991;
  font-size: .72rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-delay {
  transition-delay: .12s;
}

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

@keyframes twinkle {
  from { opacity: .25; transform: scale(.8); }
  to { opacity: .9; transform: scale(1.25); }
}

@keyframes orbit-float {
  0%,100% { transform: rotate(-18deg) scale(1); }
  50% { transform: rotate(-14deg) scale(1.015); }
}

@keyframes orbit-spin {
  to { transform: rotate(418deg); }
}

@keyframes orbit-spin-reverse {
  to { transform: rotate(-225deg); }
}

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

@keyframes float-card {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

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

@media (max-width: 1080px) {
  .nav-links {
    gap: 18px;
  }

  .hero {
    min-height: auto;
    padding-top: 170px;
    padding-bottom: 170px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-visual {
    min-height: 520px;
  }

  .orbit-stage {
    width: min(590px, 82vw);
  }

  .hero-metrics {
    bottom: 34px;
  }

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

  .intro-grid,
  .section-heading,
  .core-grid,
  .industry-panel,
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .core-visual {
    order: 2;
    min-height: 480px;
  }

  .core-radar {
    width: min(470px, 75vw);
  }

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

  .process-grid::before {
    display: none;
  }

  .process-card h3 {
    margin-top: 52px;
  }

  .industry-panel,
  .contact-panel {
    padding: 44px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    margin-top: 8px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    padding: 18px;
    display: grid;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    background: rgba(3,8,20,.97);
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links > a {
    padding: 13px 10px;
  }

  .nav-links > a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    padding-top: 140px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 12vw, 5rem);
  }

  .signal-card {
    width: 195px;
  }

  .hero-metrics {
    position: relative;
    bottom: auto;
    margin-top: 20px;
    grid-template-columns: repeat(2,1fr);
  }

  .metric-card {
    padding: 13px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-card:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .section {
    padding: 90px 0;
  }

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

  .service-featured {
    grid-row: auto;
  }

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

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

@media (max-width: 580px) {
  .section-shell {
    width: min(100% - 24px, 1240px);
  }

  .site-header {
    width: calc(100% - 16px);
    padding: 0 14px;
  }

  .brand-word {
    font-size: .87rem;
  }

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

  .hero {
    padding-top: 128px;
    padding-bottom: 70px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 390px;
  }

  .orbit-stage {
    width: 96vw;
    margin-left: -8vw;
  }

  .signal-card {
    display: none;
  }

  .trust-row {
    display: grid;
  }

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

  .metric-card,
  .metric-card:nth-last-child(-n+2) {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-card:last-child {
    border-bottom: 0;
  }

  .intro-grid,
  .section-heading {
    gap: 28px;
  }

  .pillar-grid,
  .process-grid,
  .core-steps,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .industry-panel,
  .contact-panel {
    padding: 28px 22px;
  }

  .contact h2,
  .industry-copy h2,
  .intro h2,
  .section-heading h2,
  .core-copy h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* Clickable card refinements */
@media (max-width: 820px) {
  .metric-card {
    padding: 13px 42px 13px 13px;
  }

  .metric-card:first-child {
    padding-left: 13px;
  }
}

@media (max-width: 580px) {
  .metric-card,
  .metric-card:nth-last-child(-n+2) {
    padding: 13px 40px 13px 0;
  }

  .metric-card:first-child {
    padding-left: 0;
  }
}


/* Hero metric layout correction
   Keep the trust indicators and metric panel in separate layout rows. */
@media (min-width: 821px) {
  .hero {
    min-height: auto;
    padding-bottom: 72px;
    align-items: center;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-metrics {
    position: relative;
    left: auto;
    bottom: auto;
    grid-column: 1 / -1;
    align-self: stretch;
    margin-top: -22px;
  }
}

@media (min-width: 821px) and (max-width: 1080px) {
  .hero {
    padding-bottom: 72px;
  }

  .hero-metrics {
    bottom: auto;
    margin-top: 0;
  }
}


/* Human-made style refresh */
.button-ghost {
  border-color: rgba(135,167,207,.25);
  color: #dce7f5;
  background: rgba(255,255,255,.03);
}

.button-ghost:hover {
  border-color: rgba(155,220,22,.45);
  background: rgba(255,255,255,.06);
}

.hero h1,
.intro h2,
.section-heading h2,
.core-copy h2,
.contact h2,
.industry-copy h2 {
  line-height: 1.02;
}

.hero-lead,
.section-heading p,
.intro-copy,
.core-copy > p,
.industry-copy p,
.contact-copy p {
  color: #afbed1;
}

.site-header {
  border-radius: 16px;
}

.pillar-card,
.service-card,
.process-card,
.contact-panel,
.industry-panel {
  border-radius: 18px;
}

.service-card,
.pillar-card,
.process-card {
  box-shadow: 0 16px 42px rgba(0,0,0,.16);
}

.service-card:hover,
.pillar-card:hover,
.pillar-card:focus-visible,
.process-card:hover {
  transform: translateY(-4px);
}

.site-footer {
  margin-top: 40px;
  padding: 0 0 30px;
}

.footer-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(5,14,28,.96), rgba(4,12,25,.98));
}

.footer-left,
.footer-right {
  padding: 56px 44px;
}

.footer-left {
  border-right: 1px solid rgba(255,255,255,.09);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand img {
  width: 44px;
  height: 44px;
}

.footer-tagline {
  max-width: 360px;
  margin: 0;
  color: #dce6f3;
  font-size: 1.03rem;
  line-height: 1.65;
}

.footer-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-pill {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, opacity .2s ease, border-color .2s ease, background .2s ease;
}

.footer-pill:hover {
  transform: translateY(-2px);
}

.footer-pill-primary {
  color: #04101c;
  background: linear-gradient(95deg, #5ed1e9, #77d7ff);
}

.footer-pill-secondary {
  border: 1px solid rgba(135,167,207,.22);
  color: #e7eff9;
  background: rgba(255,255,255,.03);
}

.footer-pill-secondary:hover {
  border-color: rgba(155,220,22,.45);
}

.footer-contact-block h3 {
  margin: 0 0 28px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.06;
  letter-spacing: -.03em;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer-contact-grid > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-contact-grid strong {
  color: white;
  font-size: .92rem;
}

.footer-contact-grid a,
.footer-contact-grid span {
  color: #dce6f3;
  font-size: 1rem;
}

.footer-contact-grid a:hover {
  color: #77d7ff;
}

.footer-note {
  max-width: 760px;
  margin: 28px 0 0;
  color: #a9bad0;
  line-height: 1.75;
}

.footer-socials {
  margin-top: 24px;
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #04101c;
  font-weight: 800;
  text-transform: lowercase;
  background: #71d9ea;
}

.footer-links-grid {
  margin-top: 42px;
  padding-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-links-grid > div {
  display: grid;
  gap: 10px;
}

.footer-links-grid strong {
  color: white;
  font-size: .88rem;
}

.footer-links-grid a {
  color: #93a5be;
  font-size: .88rem;
}

.footer-links-grid a:hover {
  color: #77d7ff;
}

.footer-legal {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-legal p {
  max-width: 860px;
  margin: 0;
  color: #95a6be;
  line-height: 1.75;
  font-size: .9rem;
}

.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 0;
  color: #70829b;
  font-size: .78rem;
}

/* make existing old footer rules harmless */
.footer-top,
.footer-grid {
  display: none;
}

@media (max-width: 1080px) {
  .footer-panel {
    grid-template-columns: 1fr;
  }

  .footer-left {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .footer-contact-grid,
  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-left,
  .footer-right {
    padding: 34px 22px;
  }

  .footer-contact-grid,
  .footer-links-grid {
    grid-template-columns: 1fr;
  }

  .footer-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-pill {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
