:root {
  --ink: #102033;
  --muted: #5a6b7c;
  --soft: #eef9ff;
  --panel: rgba(255, 255, 255, 0.78);
  --panel-strong: rgba(255, 255, 255, 0.94);
  --line: rgba(0, 166, 255, 0.18);
  --blue: #245bff;
  --cyan: #00a6ff;
  --mint: #14d6b1;
  --orange: #ff7a2f;
  --rose: #ff4f8b;
  --shadow: 0 26px 80px rgba(28, 93, 180, 0.13);
  --radius: 22px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(255,255,255,0.94), rgba(232,249,255,0.92) 48%, rgba(255,245,237,0.9)),
    linear-gradient(25deg, transparent 0 46%, rgba(20,214,177,0.12) 46% 64%, transparent 64%),
    #f8fcff;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.orbital-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
  mix-blend-mode: multiply;
}

.light-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0,166,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,166,255,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.75), transparent 88%);
}

.topbar {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.82);
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(24px);
  box-shadow: 0 18px 60px rgba(38, 98, 160, 0.13);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}

.topbar.scrolled {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 14px 40px rgba(38, 98, 160, 0.16);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 208px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--cyan), var(--mint));
  box-shadow: 0 12px 28px rgba(0,166,255,0.26);
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
}

.nav-item,
.mobile-nav a {
  border-radius: 999px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 800;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}

.nav-item {
  padding: 10px 13px;
}

.nav-item:hover,
.nav-item.active,
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--blue);
  background: rgba(0,166,255,0.12);
}

.topbar-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 900;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}

.topbar-cta,
.btn.primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan) 54%, var(--mint));
  box-shadow: 0 16px 34px rgba(0,166,255,0.28);
}

.btn.secondary {
  color: var(--ink);
  border: 1px solid rgba(0,166,255,0.24);
  background: rgba(255,255,255,0.78);
}

.topbar-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(0,166,255,0.2);
  border-radius: 15px;
  background: white;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
}

.mobile-nav {
  position: fixed;
  top: 92px;
  left: 16px;
  right: 16px;
  z-index: 19;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(0,166,255,0.16);
  border-radius: 22px;
  background: rgba(255,255,255,0.94);
  box-shadow: var(--shadow);
}

.mobile-nav.open {
  display: grid;
}

.mobile-nav a {
  padding: 14px;
  text-align: center;
}

.page-stage {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 126px 0 56px;
}

.page {
  display: none;
  min-height: calc(100vh - 182px);
  animation: pageIn .5s var(--ease) both;
}

.page.active {
  display: block;
}

@keyframes pageIn {
  from { opacity: 0; transform: translateY(18px) scale(.99); }
  to { opacity: 1; transform: none; }
}

.hero-layout,
.split-page,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 50px;
  align-items: center;
}

.hero-copy h1,
.page-heading h2,
.split-page h2,
.contact-layout h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.6rem, 7vw, 6.7rem);
  line-height: .92;
  letter-spacing: 0;
}

.page-heading h2,
.split-page h2,
.contact-layout h2 {
  font-size: clamp(2.15rem, 5vw, 4.6rem);
}

.hero-copy p,
.page-heading p,
.split-page p,
.contact-layout p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.eyebrow,
.section-kicker,
.venture-status,
.price-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(20,214,177,0.45);
  animation: ping 1.8s infinite;
}

@keyframes ping {
  50% { box-shadow: 0 0 0 10px rgba(20,214,177,0); }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin: 34px 0;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 520px;
  gap: 12px;
}

.metric-strip div {
  padding: 18px;
  border: 1px solid rgba(0,166,255,0.15);
  border-radius: 18px;
  background: rgba(255,255,255,0.68);
  box-shadow: 0 12px 34px rgba(29,78,216,0.08);
}

.metric-strip strong {
  display: block;
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
}

.metric-strip span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.command-center {
  position: relative;
  min-height: 560px;
  perspective: 900px;
}

.holo-card,
.service-panel,
.venture-card,
.price-card,
.timeline,
.contact-form,
.contact-cards a,
.contact-cards span {
  border: 1px solid rgba(255,255,255,0.84);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(244,252,255,0.76));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.hero-holo {
  position: absolute;
  inset: 22px 0 0 auto;
  width: min(520px, 100%);
  min-height: 520px;
  padding: 24px;
  border-radius: 34px;
  overflow: hidden;
  transform-style: preserve-3d;
}

.hero-holo::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    linear-gradient(120deg, rgba(0,166,255,0.18), transparent 34%),
    linear-gradient(30deg, transparent 50%, rgba(255,122,47,0.18));
  pointer-events: none;
}

.holo-topline {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-weight: 900;
}

.holo-topline strong {
  color: var(--mint);
}

.holo-orbit {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  height: 300px;
  margin: 34px 0 22px;
}

.orbit-ring {
  position: absolute;
  border: 2px solid rgba(0,166,255,0.22);
  border-radius: 50%;
  transform: rotateX(68deg);
}

.ring-one {
  width: 260px;
  height: 260px;
  animation: orbit 10s linear infinite;
}

.ring-two {
  width: 188px;
  height: 188px;
  border-color: rgba(255,122,47,0.24);
  animation: orbitReverse 8s linear infinite;
}

.orbit-core {
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  border-radius: 36px;
  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--cyan), var(--mint));
  box-shadow: 0 28px 80px rgba(0,166,255,0.34);
}

@keyframes orbit {
  to { transform: rotateX(68deg) rotateZ(360deg); }
}

@keyframes orbitReverse {
  to { transform: rotateX(68deg) rotateZ(-360deg); }
}

.signal-board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.signal-board div {
  min-height: 82px;
  padding: 16px;
  border: 1px solid rgba(0,166,255,0.15);
  border-radius: 20px;
  background: rgba(255,255,255,0.64);
}

.signal-board span {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-board strong {
  display: block;
  margin-top: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
}

.floating-chip {
  position: absolute;
  z-index: 2;
  padding: 13px 16px;
  border: 1px solid rgba(0,166,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.84);
  box-shadow: 0 18px 48px rgba(29,78,216,0.12);
  color: var(--ink);
  font-size: .82rem;
  font-weight: 900;
}

.chip-one { top: 38px; right: -18px; animation: floatA 5s ease-in-out infinite; }
.chip-two { left: 6px; bottom: 116px; animation: floatB 4.8s ease-in-out infinite; }
.chip-three { right: 40px; bottom: 28px; animation: floatA 5.2s ease-in-out infinite .4s; }

@keyframes floatA {
  50% { transform: translateY(-12px); }
}

@keyframes floatB {
  50% { transform: translateY(12px); }
}

.page-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

.lane-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.lane-tab {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(0,166,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.66);
  color: var(--muted);
  font-weight: 900;
}

.lane-tab.active {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 15px 34px rgba(0,166,255,0.2);
}

.service-panels {
  position: relative;
  min-height: 430px;
}

.service-panel {
  display: none;
  min-height: 420px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 34px;
  animation: pageIn .35s var(--ease) both;
}

.service-panel.active {
  display: grid;
  align-content: center;
}

.panel-number {
  color: rgba(0,166,255,0.18);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900;
  line-height: .8;
}

.service-panel h3 {
  max-width: 800px;
  margin: 18px 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1;
}

.service-panel p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.service-panel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.service-panel li {
  padding: 10px 14px;
  border: 1px solid rgba(0,166,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  color: var(--muted);
  font-weight: 800;
}

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

.venture-card,
.price-card {
  min-height: 330px;
  padding: 28px;
  border-radius: 28px;
  transform-style: preserve-3d;
}

.venture-card h3,
.price-card h3 {
  margin: 10px 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: .95;
}

.venture-card p,
.price-card p {
  color: var(--muted);
  line-height: 1.7;
}

.progress {
  height: 9px;
  margin-top: 34px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(0,166,255,0.1);
}

.progress span {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--mint));
  animation: progressIn 1.2s var(--ease) both;
}

.progress.pulse span {
  animation: progressIn 1.2s var(--ease) both, glowPulse 1.8s ease-in-out infinite;
}

@keyframes progressIn {
  from { width: 0; }
}

@keyframes glowPulse {
  50% { filter: brightness(1.25); }
}

.price-card {
  display: grid;
  align-content: start;
}

.price-card.featured {
  border-color: rgba(255,122,47,0.42);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,247,239,0.82));
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

.payment-note {
  margin-top: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(0,166,255,0.18);
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  color: var(--muted);
  font-weight: 700;
}

.payment-note.error {
  border-color: rgba(255,79,139,0.3);
  color: #a11d50;
  background: rgba(255,240,246,0.84);
}

.payment-note.success {
  border-color: rgba(20,214,177,0.34);
  color: #087b68;
}

.timeline {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 28px;
}

.timeline div {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.72);
}

.timeline strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
}

.timeline span {
  color: var(--muted);
}

.contact-layout {
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin-top: 28px;
}

.contact-cards a,
.contact-cards span {
  padding: 18px;
  border-radius: 18px;
  color: var(--muted);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 26px;
  border-radius: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: .86rem;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(0,166,255,0.18);
  border-radius: 15px;
  padding: 14px 15px;
  color: var(--ink);
  background: rgba(255,255,255,0.76);
  outline: none;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(0,166,255,0.5);
  box-shadow: 0 0 0 4px rgba(0,166,255,0.1);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 800;
}

@media (max-width: 980px) {
  .desktop-nav,
  .topbar-cta {
    display: none;
  }

  .menu-button {
    display: block;
    margin-left: auto;
  }

  .brand {
    min-width: 0;
  }

  .hero-layout,
  .split-page,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .command-center {
    min-height: 500px;
  }

  .venture-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 18px;
  }

  .brand-copy small {
    display: none;
  }

  .page-stage {
    width: min(100% - 24px, 1180px);
    padding-top: 104px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 17vw, 4.6rem);
  }

  .metric-strip,
  .signal-board {
    grid-template-columns: 1fr;
  }

  .hero-holo {
    position: relative;
    min-height: 460px;
  }

  .floating-chip {
    display: none;
  }

  .mobile-nav {
    top: 78px;
  }
}
