:root {
  --bg: #030303;
  --panel: rgba(14, 12, 10, 0.78);
  --panel-strong: rgba(18, 15, 12, 0.94);
  --line: rgba(255, 121, 15, 0.24);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f8f7f4;
  --muted: #c7c1b8;
  --orange: #ff790f;
  --orange-2: #ffb253;
  --white-hot: #ffffff;
  --amber: #ff9c2a;
  --font-sans: "Inter", system-ui, sans-serif;
  --font-display: "Space Grotesk", var(--font-sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 68% 18%, rgba(255, 121, 15, 0.16), transparent 28rem),
    radial-gradient(circle at 20% 40%, rgba(255, 156, 42, 0.1), transparent 22rem),
    radial-gradient(circle at 50% 82%, rgba(255, 255, 255, 0.045), transparent 24rem),
    linear-gradient(145deg, #020202 0%, #100d0a 55%, #020202 100%);
  color: var(--text);
  font-family: var(--font-sans);
}

body.modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--scene-x, 50%) var(--scene-y, 28%), rgba(255, 121, 15, 0.14), transparent 20rem),
    radial-gradient(circle at calc(var(--scene-x, 50%) + 18%) calc(var(--scene-y, 28%) + 18%), rgba(255, 255, 255, 0.055), transparent 18rem);
  opacity: 0.72;
  mix-blend-mode: screen;
  transition: opacity 0.25s ease;
}

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

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

.site-shell {
  width: min(1440px, calc(100% - 48px));
  margin: 24px auto 0;
  position: relative;
  z-index: 2;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px 26px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: rgba(3, 3, 3, 0.78);
  backdrop-filter: blur(22px);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

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

.brand-mark {
  width: 48px;
  height: 34px;
  display: inline-block;
  position: relative;
  overflow: visible;
  color: transparent;
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/monova-mark.svg") center / contain no-repeat;
}

.brand-name {
  color: #f7f6f1;
  font: 800 15px/1 var(--font-display);
  letter-spacing: 7px;
  text-shadow: 0 0 18px rgba(255, 121, 15, 0.18);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 48px);
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  color: #f2f2ee;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav .active {
  color: var(--orange);
}

.nav-cta,
.primary-button,
.ghost-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-cta,
.outline-button,
.ghost-button {
  border: 1px solid rgba(255, 121, 15, 0.42);
  background: rgba(255, 121, 15, 0.055);
}

.nav-cta {
  padding: 0 18px;
  color: var(--orange-2);
}

.nav-cta span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
}

.primary-button {
  padding: 0 28px;
  border: 0;
  color: #100804;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 16px 45px rgba(255, 121, 15, 0.24);
}

.ghost-button,
.outline-button {
  padding: 0 24px;
}

.menu-button {
  display: none;
}

.hero {
  min-height: 675px;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  align-items: center;
  gap: 32px;
  padding: 72px 38px 52px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 30px 30px;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.98) 0%, rgba(3, 3, 3, 0.9) 33%, rgba(3, 3, 3, 0.38) 66%, rgba(3, 3, 3, 0.18) 100%),
    linear-gradient(0deg, rgba(3, 3, 3, 0.9) 0%, rgba(3, 3, 3, 0.16) 46%, rgba(3, 3, 3, 0.18) 100%),
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    #030303;
  background-size: auto, auto, 76px 76px, 76px 76px, auto;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  width: auto;
  height: auto;
  background:
    radial-gradient(ellipse at 59% 53%, rgba(3, 3, 3, 0.72) 0%, rgba(3, 3, 3, 0.44) 30%, rgba(3, 3, 3, 0.12) 60%, transparent 78%),
    linear-gradient(90deg, rgba(3, 3, 3, 0.99) 0%, rgba(3, 3, 3, 0.92) 29%, rgba(3, 3, 3, 0.38) 49%, rgba(3, 3, 3, 0.1) 75%, rgba(3, 3, 3, 0.02) 100%);
  clip-path: none;
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0 -140px 0 230px;
  z-index: 0;
  pointer-events: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #030303 0%, rgba(3, 3, 3, 0.58) 12%, rgba(3, 3, 3, 0.06) 30%, rgba(3, 3, 3, 0.08) 74%, rgba(3, 3, 3, 0.64) 100%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.72) 0%, rgba(3, 3, 3, 0.02) 22%, rgba(3, 3, 3, 0.04) 72%, rgba(3, 3, 3, 0.72) 100%);
  pointer-events: none;
}

.hero-media video {
  display: block;
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.96;
  filter: brightness(1.06) saturate(1.12);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 -140px 0 230px;
  z-index: 0;
  background: url("assets/monova-main-banner.png") center / cover no-repeat;
  opacity: 0;
  filter: brightness(0.92) saturate(1.08);
  pointer-events: none;
}

.about::after,
.projects::before {
  content: "";
  position: absolute;
  inset: 5% 0 auto auto;
  width: 48%;
  height: 70%;
  background: linear-gradient(135deg, transparent 20%, rgba(255, 121, 15, 0.1), transparent 60%);
  clip-path: polygon(28% 0, 100% 0, 67% 100%, 0 100%);
  opacity: 0.5;
  pointer-events: none;
}

.hero-copy,
.about-copy,
.section-heading,
.contact > div {
  position: relative;
  z-index: 1;
}

.hero-copy {
  z-index: 6;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 560px;
  margin-bottom: 22px;
  font: 900 clamp(38px, 3.75vw, 56px) / 1.07 var(--font-display);
}

h1 span,
.about h2 span,
.section-heading h2 span {
  display: block;
  color: var(--orange);
}

.hero-text {
  max-width: 520px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 30px 0 0;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
}

.social-proof p {
  margin: 0;
  line-height: 1.45;
}

.social-proof strong {
  color: #ffe1b8;
}

.avatars {
  display: flex;
}

.avatars span {
  width: 38px;
  height: 38px;
  border: 2px solid #0b0f11;
  border-radius: 999px;
  margin-left: -8px;
  background: linear-gradient(135deg, #ffe1b8, #3b857a 45%, #ff790f);
}

.avatars span:first-child {
  margin-left: 0;
}

.orbit-grid {
  position: absolute;
  inset: 12% 10% 12% 42%;
  border: 0;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 121, 15, 0.12), transparent 62%);
  background-size: auto;
  box-shadow: none;
  opacity: 0.9;
}

.orbit-grid::before,
.orbit-grid::after,
.orbit-grid span {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 121, 15, 0.24);
  border-radius: 999px;
}

.orbit-grid::before {
  inset: 10% 10%;
  animation: soft-spin 22s linear infinite;
}

.orbit-grid::after {
  inset: 26% 26%;
  border-color: rgba(16, 243, 109, 0.22);
  animation: soft-spin 17s linear infinite reverse;
}

.orbit-grid span:nth-child(1) {
  width: 10px;
  height: 10px;
  left: 22%;
  top: 28%;
  background: var(--white-hot);
  box-shadow: 0 0 28px rgba(16, 243, 109, 0.75);
}

.orbit-grid span:nth-child(2) {
  width: 12px;
  height: 12px;
  right: 20%;
  top: 34%;
  background: var(--orange);
  box-shadow: 0 0 28px rgba(255, 121, 15, 0.75);
}

.orbit-grid span:nth-child(3) {
  width: 8px;
  height: 8px;
  left: 48%;
  bottom: 20%;
  background: #fff;
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.65);
}

.command-panel {
  position: absolute;
  z-index: 4;
  right: 6%;
  top: 18%;
  width: min(300px, 50%);
  overflow: hidden;
  border: 1px solid rgba(255, 121, 15, 0.28);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(5, 8, 10, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.panel-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line-soft);
  color: #e9e8e2;
  font: 800 12px/1 var(--font-display);
  letter-spacing: 2px;
}

.panel-bar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.panel-bar span:first-child {
  background: var(--orange);
}

.panel-bar strong {
  margin-left: auto;
}

.status-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 14px;
  color: var(--muted);
  font-size: 12px;
}

.status-line strong {
  color: #dfffe9;
  text-align: right;
}

.signal-map {
  position: relative;
  min-height: 112px;
  margin: 0 14px 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 121, 15, 0.08), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 36px),
    rgba(0, 0, 0, 0.18);
}

.signal-map::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 20%;
  top: 28%;
  height: 44%;
  border: 1px solid rgba(255, 121, 15, 0.2);
  border-left: 0;
  border-bottom: 0;
  transform: skewX(-18deg);
}

.signal-map span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(255, 121, 15, 0.08), 0 0 26px rgba(255, 121, 15, 0.8);
  animation: node-pulse 2.2s ease-in-out infinite;
}

.signal-map span:nth-child(even) {
  background: var(--white-hot);
  box-shadow: 0 0 0 8px rgba(16, 243, 109, 0.08), 0 0 26px rgba(16, 243, 109, 0.8);
  animation-delay: 0.55s;
}

.code-stream {
  display: grid;
  gap: 7px;
  padding: 0 14px 15px;
  color: #e7e5df;
  font: 700 13px/1.3 var(--font-display);
}

.code-stream p {
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.code-stream span {
  color: var(--orange);
}

.floating-chip {
  position: absolute;
  z-index: 5;
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 121, 15, 0.34);
  border-radius: 999px;
  color: #fff3e7;
  background: rgba(3, 6, 8, 0.76);
  backdrop-filter: blur(14px);
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
}

.chip-ai {
  right: 8%;
  bottom: 24%;
}

.chip-cloud {
  left: 52%;
  top: 20%;
}

.chip-ux {
  left: 50%;
  bottom: 20%;
}

.innovation-lab {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 38px;
  align-items: center;
  margin: 20px 24px 34px;
  min-height: 680px;
  padding: 54px 58px;
  position: relative;
  overflow: hidden;
}

.innovation-lab::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 121, 15, 0.13), transparent 18rem),
    radial-gradient(circle at 92% 24%, rgba(16, 243, 109, 0.08), transparent 16rem),
    linear-gradient(115deg, transparent 0 54%, rgba(255, 121, 15, 0.08) 54% 54.3%, transparent 54.3% 100%);
}

.lab-copy h2,
.process-heading h2 {
  max-width: 620px;
  font: 900 clamp(30px, 3vw, 48px) / 1.08 var(--font-display);
}

.lab-copy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(260px, 1fr);
  align-items: center;
  column-gap: 28px;
  min-height: 560px;
}

.lab-copy .section-kicker,
.lab-copy h2,
.lab-copy > p:not(.section-kicker) {
  grid-column: 2;
}

.lab-copy h2 span {
  color: var(--orange);
}

.lab-cat-scene {
  grid-column: 1;
  grid-row: 1 / 4;
  align-self: end;
  position: relative;
  min-height: 520px;
}

.lab-cat-scene::before {
  content: "";
  position: absolute;
  inset: 14% -18% 2% -24%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 121, 15, 0.22), transparent 62%);
  filter: blur(8px);
}

.lab-cat-scene img {
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: min(360px, 30vw);
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 34px 58px rgba(0, 0, 0, 0.58)) saturate(1.06);
}

.lab-copy p:not(.section-kicker),
.process-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

.lab-console {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(190px, 1fr) auto;
  min-height: 420px;
  padding: 26px;
  border: 1px solid rgba(255, 121, 15, 0.42);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(16, 243, 109, 0.12), transparent 15rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.38);
  box-shadow:
    0 26px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.lab-console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.lab-console-head div {
  position: relative;
  padding-left: 42px;
}

.lab-console-head div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 0 24px rgba(255, 121, 15, 0.4);
}

.lab-console-head strong {
  display: block;
  color: var(--text);
  font: 900 24px/1.08 var(--font-display);
}

.lab-console-head small {
  display: block;
  margin-top: 4px;
  color: #20f37b;
  font-size: 15px;
  font-weight: 700;
}

.lab-console-head i {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 20%, #d8d4cc 0 2px, transparent 3px),
    radial-gradient(circle at 50% 50%, #d8d4cc 0 2px, transparent 3px),
    radial-gradient(circle at 50% 80%, #d8d4cc 0 2px, transparent 3px);
  opacity: 0.7;
}

.lab-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 7px;
  border: 1px solid rgba(255, 121, 15, 0.58);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.42);
  box-shadow: 0 0 28px rgba(255, 121, 15, 0.08);
}

.lab-input-row input {
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  padding: 0 10px;
  font: 700 15px/1.2 var(--font-sans);
}

.lab-input-row input::placeholder {
  color: rgba(248, 247, 244, 0.48);
}

.lab-input-row .primary-button {
  width: 54px;
  min-height: 50px;
  border-radius: 14px;
  padding: 0;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.lab-diagnosis {
  position: relative;
  display: grid;
  gap: 14px;
  align-content: start;
  margin: 28px 0 22px;
  padding-left: 64px;
}

.lab-diagnosis::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 121, 15, 0.58);
  border-radius: 999px;
  background: url("assets/monova-assistant-cat.png?v=20260602-thinking") center 18% / 128% auto no-repeat;
  box-shadow: 0 0 20px rgba(255, 121, 15, 0.22);
}

.lab-message {
  width: fit-content;
  max-width: min(520px, 100%);
  padding: 14px 16px;
}

.lab-message--bot {
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 18px 18px 18px 6px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(6, 10, 12, 0.72);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.lab-message--user {
  justify-self: end;
  max-width: min(430px, 88%);
  border-radius: 18px 18px 6px 18px;
  color: #160904;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(255, 121, 15, 0.18);
}

.lab-message span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.lab-message p {
  margin: 0;
  line-height: 1.5;
}

.lab-message--bot p {
  color: #e9e5de;
}

.lab-message p + p {
  margin-top: 8px;
}

.lab-message small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.lab-message p strong {
  color: #f5efe7;
}

.process-steps span {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  height: 30px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: #fff3e7;
  background: rgba(255, 121, 15, 0.16);
  font-size: 12px;
  font-weight: 900;
}

.process-steps h3 {
  margin-bottom: 8px;
}

.process-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.section-panel {
  border: 1px solid var(--line-soft);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(4, 8, 10, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.inner-page {
  padding: 54px 24px 28px;
}

.page-hero {
  min-height: 330px;
  display: grid;
  align-content: center;
  margin-bottom: 34px;
  padding: 46px;
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(3, 6, 8, 0.96), rgba(3, 6, 8, 0.6), rgba(3, 6, 8, 0.2)),
    url("assets/monova-main-banner.png") center / cover no-repeat;
}

.services-hero {
  min-height: 0;
  display: grid;
  justify-items: center;
  align-items: center;
  padding: 34px 38px;
  border-radius: 22px;
  text-align: center;
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 121, 15, 0.12), transparent 22rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008)),
    rgba(3, 6, 8, 0.62);
}

.services-hero h1 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -0.04em;
}

.services-hero p:not(.eyebrow) {
  max-width: 640px;
  font-size: 16px;
  line-height: 1.65;
}

.page-hero h1,
.about-page h1,
.contact-page h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font: 900 clamp(40px, 5vw, 70px) / 1.04 var(--font-display);
}

.page-hero p:not(.eyebrow) {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.service-grid-wide,
.project-grid-large {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-grid {
  margin-bottom: 64px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-page,
.contact-page {
  margin-bottom: 54px;
}

.services {
  padding: 42px 28px 54px;
}

.section-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.section-kicker::before,
.section-kicker::after {
  content: "";
  width: 88px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 121, 15, 0.5), transparent);
}

.service-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-card,
.project-grid article {
  position: relative;
  overflow: hidden;
  min-height: 252px;
  padding: 28px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012));
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -36% 18%;
  height: 120px;
  background: linear-gradient(90deg, transparent, rgba(255, 121, 15, 0.18), transparent);
  transform: rotate(-8deg);
  opacity: 0;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.service-card:hover::after {
  opacity: 1;
  transform: rotate(-8deg) translateY(-18px);
}

.service-card h2,
.service-card p,
.service-card .service-more,
.service-card .icon,
.service-micro {
  position: relative;
  z-index: 1;
}

.icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 121, 15, 0.35);
  border-radius: 16px;
  color: var(--orange);
  font: 900 30px/1 var(--font-display);
}

.service-card h2 {
  font-size: 21px;
  margin-bottom: 16px;
}

.service-micro {
  min-height: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: -4px 0 22px;
}

.service-micro i {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  animation: micro-rise 2.8s ease-in-out infinite;
}

.service-micro i:nth-child(2) {
  animation-delay: 0.2s;
}

.service-micro i:nth-child(3) {
  animation-delay: 0.4s;
}

.software-micro i:nth-child(1) { height: 36px; align-self: end; }
.software-micro i:nth-child(2) { height: 58px; align-self: end; }
.software-micro i:nth-child(3) { height: 44px; align-self: end; }

.design-micro i {
  height: 100%;
  background:
    linear-gradient(135deg, rgba(255, 121, 15, 0.22), transparent),
    rgba(255, 255, 255, 0.035);
}

.ai-micro {
  place-items: center;
}

.ai-micro i {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--white-hot);
  box-shadow: 0 0 26px rgba(16, 243, 109, 0.7);
}

.brand-micro i:nth-child(1) { background: #ff790f; }
.brand-micro i:nth-child(2) { background: #10f36d; }
.brand-micro i:nth-child(3) { background: #f8f7f4; }

.process-flow {
  position: relative;
  margin: 56px 24px 28px;
  padding: 74px 28px 50px;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 121, 15, 0.08), transparent 30rem),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #010304;
  background-size: auto, 74px 74px, 74px 74px, auto;
}

.process-heading {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto 12px;
  text-align: center;
}

.process-heading h2 {
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.04;
}

.process-heading h2 span {
  color: var(--orange);
}

.process-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  margin-top: 26px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.process-steps article {
  position: relative;
  min-height: 184px;
  display: grid;
  align-content: start;
  justify-items: center;
  padding: 54px 18px 22px;
  border: 1px solid rgba(255, 121, 15, 0.24);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(6, 10, 12, 0.78);
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 52px rgba(0, 0, 0, 0.28);
  overflow: visible;
}

.process-steps article i {
  position: absolute;
  top: -18px;
  left: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 2px solid var(--orange);
  border-radius: 999px;
  color: #fff3e7;
  background: rgba(3, 6, 8, 0.96);
  font: 900 16px/1 var(--font-display);
  font-style: normal;
  box-shadow: 0 0 0 10px rgba(1, 3, 4, 0.92), 0 0 28px rgba(255, 121, 15, 0.42);
  transform: translateX(-50%);
}

.process-cats-stage {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  height: clamp(230px, 22vw, 300px);
  margin: -8px auto -10px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 96%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 96%, transparent 100%);
}

.process-cats-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  transform: none;
  filter: drop-shadow(0 28px 62px rgba(0, 0, 0, 0.38)) saturate(1.08);
}

.process-steps span {
  color: var(--orange);
  background: transparent;
  font-size: 16px;
}

.process-steps h3 {
  margin-bottom: 16px;
  font-size: clamp(24px, 2vw, 30px);
}

.process-steps p {
  max-width: 220px;
  font-size: 16px;
  line-height: 1.55;
}

.service-card p,
.project-grid p,
.about-copy p,
.contact p,
.not-found-preview p {
  color: var(--muted);
  line-height: 1.75;
}

.service-card a,
.service-card .service-more {
  color: var(--orange);
  font-weight: 900;
}

.service-showcase {
  margin-bottom: 62px;
}

.service-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-visual-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 121, 15, 0.34);
  border-radius: 18px;
  background: #05080a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.service-visual-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.service-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 28%, rgba(3, 6, 8, 0.45) 54%, rgba(3, 6, 8, 0.96) 100%),
    linear-gradient(90deg, rgba(3, 6, 8, 0.35), transparent 55%);
}

.service-visual-card > div {
  position: absolute;
  z-index: 1;
  left: 30px;
  right: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: 64px 1fr;
  column-gap: 18px;
  align-items: center;
}

.service-visual-card .icon {
  grid-row: span 3;
  margin: 0;
}

.service-visual-card h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.service-visual-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.service-visual-card a,
.service-more {
  width: fit-content;
  color: var(--orange);
  font-weight: 900;
}

.service-more {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.service-more:hover,
.service-more:focus-visible {
  color: #ffb253;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s ease;
}

.service-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.service-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.service-modal__panel {
  position: relative;
  width: min(620px, 100%);
  max-height: min(720px, calc(100vh - 48px));
  overflow: auto;
  padding: 34px;
  border: 1px solid rgba(255, 121, 15, 0.38);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 121, 15, 0.16), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    #05080a;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.18s ease;
}

.service-modal.is-open .service-modal__panel {
  transform: translateY(0) scale(1);
}

.service-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 121, 15, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.service-modal h2 {
  max-width: 480px;
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
}

.service-modal__copy {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.service-modal__list {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.service-modal__list li {
  position: relative;
  padding: 12px 14px 12px 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
}

.service-modal__list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 16px rgba(255, 121, 15, 0.8);
}

.service-modal .primary-button {
  display: inline-flex;
}

.service-cta-strip {
  position: relative;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 22px 120px 22px 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 121, 15, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), rgba(255, 121, 15, 0.05)),
    rgba(5, 8, 10, 0.86);
}

.service-cta-strip h2 {
  margin: 0 0 4px;
  font-size: 16px;
}

.service-cta-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.service-cta-strip .outline-button {
  min-height: 38px;
  padding: 0 18px;
  border-radius: 10px;
  color: #ffd0a1;
  font-size: 12px;
}

.service-cta-strip img {
  position: absolute;
  right: 12px;
  bottom: -4px;
  width: 108px;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 0;
  filter: saturate(1.08) contrast(1.04);
}

.about {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  padding: 58px 28px 34px;
}

.about-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  min-height: 330px;
  max-height: 350px;
  background:
    radial-gradient(circle at 42% 42%, rgba(255, 121, 15, 0.12), transparent 18rem),
    #06090b;
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 4, 5, 0.52), transparent 55%);
}

.play-pill {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: rgba(255, 121, 15, 0.84);
}

.about h2,
.section-heading h2,
.contact h2,
.not-found-preview h2 {
  max-width: 650px;
  font: 900 clamp(30px, 3vw, 44px) / 1.08 var(--font-display);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0 28px;
}

.trust-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  row-gap: 5px;
  align-items: start;
}

.trust-list span {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 121, 15, 0.32);
  border-radius: 999px;
  color: var(--orange);
  background: rgba(255, 121, 15, 0.06);
  box-shadow: 0 12px 32px rgba(255, 121, 15, 0.12);
}

.trust-list strong {
  font-size: 14px;
}

.trust-list small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.about .outline-button {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 12px;
  font-size: 13px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 44px 24px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: var(--line-soft);
}

.metrics div {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  column-gap: 22px;
  padding: 30px 34px;
  background: rgba(13, 17, 20, 0.9);
}

.metrics i {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 121, 15, 0.22);
  border-radius: 14px;
  color: var(--orange);
  background: rgba(255, 121, 15, 0.045);
  font-style: normal;
  font-weight: 900;
  box-shadow: 0 14px 38px rgba(255, 121, 15, 0.12);
}

.metrics span {
  display: block;
  margin-bottom: 6px;
  font: 900 38px/1 var(--font-display);
}

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

.tech-stack {
  margin: 34px 24px 28px;
  padding: 8px 0 16px;
}

.tech-track {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.tech-track div {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.86;
}

.tech-track img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: saturate(0.85) brightness(1.08);
}

.tech-track img[alt="AWS"] {
  width: 70px;
}

.tech-track img[alt="Flutter"] {
  width: 58px;
}

.tech-track img[alt="Tailwind CSS"] {
  width: 54px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 121, 15, 0.22);
  border-radius: 999px;
  color: rgba(248, 247, 244, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014)),
    rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 800;
}

.hero-proof strong {
  color: var(--orange-2);
  letter-spacing: 1px;
}

.hero-orbit {
  position: absolute;
  inset: 10% 4% 8% 18%;
  z-index: 2;
  border: 1px solid rgba(255, 121, 15, 0.18);
  border-radius: 44% 56% 48% 52%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 121, 15, 0.1), transparent 36%),
    linear-gradient(135deg, transparent 0 50%, rgba(255, 121, 15, 0.16) 50.2%, transparent 50.6% 100%);
  box-shadow:
    inset 0 0 42px rgba(255, 121, 15, 0.04),
    0 0 62px rgba(255, 121, 15, 0.08);
  animation: premium-orbit-drift 9s ease-in-out infinite alternate;
}

.hero-orbit::before,
.hero-orbit::after,
.hero-orbit span {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.hero-orbit::before {
  inset: 13%;
  border: 1px dashed rgba(255, 121, 15, 0.18);
  animation: soft-spin 24s linear infinite;
}

.hero-orbit::after {
  inset: 29%;
  border: 1px solid rgba(16, 243, 109, 0.12);
  animation: soft-spin 18s linear infinite reverse;
}

.hero-orbit span {
  width: 8px;
  height: 8px;
  background: var(--orange);
  box-shadow: 0 0 20px rgba(255, 121, 15, 0.82);
}

.hero-orbit span:nth-child(1) { left: 12%; top: 28%; }
.hero-orbit span:nth-child(2) { right: 18%; top: 18%; background: #10f36d; box-shadow: 0 0 22px rgba(16, 243, 109, 0.68); }
.hero-orbit span:nth-child(3) { left: 50%; bottom: 13%; }

.hero-command-card {
  position: absolute;
  right: clamp(20px, 4vw, 54px);
  bottom: clamp(30px, 7vw, 80px);
  z-index: 12;
  width: min(390px, 72%);
  overflow: hidden;
  border: 1px solid rgba(255, 121, 15, 0.3);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(3, 6, 8, 0.72);
  box-shadow:
    0 28px 92px rgba(0, 0, 0, 0.46),
    0 0 58px rgba(255, 121, 15, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transform: translateZ(0);
}

.hero-command-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #f5efe6;
  font: 900 12px/1 var(--font-display);
  letter-spacing: 2.6px;
}

.hero-command-head strong {
  color: #10f36d;
  font-size: 10px;
  text-shadow: 0 0 14px rgba(16, 243, 109, 0.46);
}

.hero-command-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-command-grid div {
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 16px;
  background: rgba(3, 6, 8, 0.78);
}

.hero-command-grid small {
  color: rgba(248, 247, 244, 0.5);
  font-size: 11px;
  font-weight: 800;
}

.hero-command-grid b {
  color: #fff3e7;
  font: 900 27px/1 var(--font-display);
}

.hero-signal {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 16px 18px 18px;
}

.hero-signal i {
  height: 32px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, rgba(255, 121, 15, 0.9), rgba(255, 121, 15, 0.1));
  transform-origin: bottom;
  animation: premium-signal 1.8s ease-in-out infinite alternate;
}

.hero-signal i:nth-child(2) { animation-delay: 0.16s; }
.hero-signal i:nth-child(3) { animation-delay: 0.28s; }
.hero-signal i:nth-child(4) { animation-delay: 0.1s; }
.hero-signal i:nth-child(5) { animation-delay: 0.34s; }

.premium-difference {
  position: relative;
  margin: 42px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 121, 15, 0.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 121, 15, 0.14), transparent 22rem),
    radial-gradient(circle at 88% 28%, rgba(16, 243, 109, 0.07), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.044), rgba(255, 255, 255, 0.012)),
    rgba(2, 5, 7, 0.86);
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  isolation: isolate;
}

.premium-difference::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 121, 15, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 121, 15, 0.026) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 20%, black, transparent 72%);
}

.premium-difference::after {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 0;
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 121, 15, 0.72), transparent);
  box-shadow: 0 0 30px rgba(255, 121, 15, 0.44);
}

.premium-difference {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: end;
  padding: 58px;
}

.difference-heading,
.difference-grid {
  position: relative;
  z-index: 1;
}

.difference-heading h2 {
  max-width: 680px;
  margin-bottom: 18px;
  font: 900 clamp(30px, 3.2vw, 48px) / 1.06 var(--font-display);
}

.difference-heading h2 span {
  color: var(--orange);
}

.difference-heading p {
  color: var(--muted);
  line-height: 1.75;
}
.difference-grid {
  display: grid;
  gap: 16px;
}

.difference-grid article {
  position: relative;
  overflow: hidden;
  min-height: 168px;
  padding: 26px;
  border: 1px solid rgba(255, 121, 15, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.01)),
    rgba(0, 0, 0, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.difference-grid article span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 32px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 121, 15, 0.26);
  border-radius: 999px;
  color: #fff3e7;
  background: rgba(255, 121, 15, 0.08);
  font: 900 12px/1 var(--font-display);
}

.difference-grid article h3 {
  display: block;
  margin-bottom: 10px;
  color: #f8f7f4;
  font: 900 21px/1.18 var(--font-display);
}

.difference-grid article p {
  margin: 0;
  font-size: 14px;
}

.projects {
  position: relative;
  padding: 48px 24px;
}

.section-heading {
  margin-bottom: 28px;
}

.project-grid article {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82)),
    linear-gradient(135deg, rgba(255, 121, 15, 0.22), rgba(255, 255, 255, 0.04));
}

.project-grid span {
  width: fit-content;
  margin-bottom: auto;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff3e7;
  background: rgba(255, 121, 15, 0.12);
  font-size: 12px;
  font-weight: 900;
}

.project-grid h3 {
  margin-bottom: 10px;
  font-size: 26px;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  margin: 32px 24px 64px;
  padding: 44px;
}

.contact ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  color: #ffd0a1;
  font-weight: 700;
}

form {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: #e7e5df;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 16px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.26);
  font: inherit;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 1px solid var(--orange);
}

.not-found-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 24px 42px;
  padding: 34px;
  border: 1px solid rgba(255, 121, 15, 0.24);
  border-radius: 18px;
  background: rgba(255, 121, 15, 0.05);
}

footer {
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.1fr;
  gap: 34px;
  padding: 34px 28px 42px;
  border-top: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0));
}

.footer-brand,
.footer-col,
.footer-social {
  min-height: 112px;
}

.footer-brand p,
.footer-social small {
  margin: 12px 0 0;
  color: #b8b8b2;
  font-size: 13px;
}

.footer-col,
.footer-social {
  border-left: 1px solid var(--line-soft);
  padding-left: 34px;
}

.footer-col h3,
.footer-social h3 {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.footer-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  column-gap: 28px;
  row-gap: 10px;
}

.footer-col h3 {
  grid-column: 1 / -1;
}

.footer-col a {
  color: #c9c9c3;
  font-size: 13px;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.social-links a {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 14px;
  font-weight: 900;
}

.error-page {
  display: grid;
  place-items: center;
  padding: 24px;
}

.error-scene {
  width: min(1180px, 100%);
  min-height: calc(100vh - 48px);
  padding: 34px;
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  background: radial-gradient(circle at 70% 45%, rgba(255, 121, 15, 0.2), transparent 24rem), rgba(4, 8, 10, 0.78);
}

.error-scene section {
  min-height: calc(100vh - 170px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 30px;
}

.error-scene h1 {
  margin: 0;
  color: var(--orange);
  font-size: clamp(96px, 20vw, 240px);
}

.error-scene h2 {
  max-width: 520px;
  font: 900 clamp(34px, 5vw, 62px) / 1.08 var(--font-display);
}

.error-scene p {
  max-width: 460px;
  color: var(--muted);
  line-height: 1.7;
}

.error-scene img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  object-position: 88% 22%;
  border-radius: 26px;
  filter: saturate(1.05);
}

@media (max-width: 1000px) {
  .site-shell {
    width: min(100% - 28px, 720px);
  }

  .topbar {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
  }

  .menu-button span {
    width: 18px;
    height: 2px;
    background: var(--text);
  }

  .desktop-nav.open {
    position: absolute;
    inset: calc(100% + 12px) 0 auto 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line-soft);
    border-radius: 16px;
    background: rgba(3, 6, 8, 0.96);
  }

  .desktop-nav.open a {
    padding: 16px;
    border-radius: 10px;
  }

  .desktop-nav.open a:hover {
    background: rgba(255, 121, 15, 0.1);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 52px 18px 32px;
    background:
      linear-gradient(180deg, rgba(3, 6, 8, 0.88) 0%, rgba(3, 6, 8, 0.76) 45%, rgba(3, 6, 8, 0.42) 100%),
      linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
      #030608;
    background-size: auto, 62px 62px, 62px 62px, auto;
  }

  .hero::after {
    inset: 0 -150px 0 96px;
  }

  .hero-command-card {
    right: 22px;
    bottom: 38px;
    width: min(360px, 62%);
  }

  .premium-difference {
    grid-template-columns: 1fr;
    padding: 38px 28px;
  }

  .command-panel {
    right: 4%;
    top: 12%;
  }

  .service-grid,
  .project-grid,
  .service-grid-wide,
  .project-grid-large,
  .blog-grid,
  .service-visual-grid,
  .metrics,
  .tech-track,
  .innovation-lab,
  .process-steps,
  .about,
  .contact,
  .error-scene section {
    grid-template-columns: 1fr 1fr;
  }

  .about {
    gap: 32px;
  }

  .process-flow {
    padding-left: 18px;
    padding-right: 18px;
  }

  .innovation-lab {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 36px 28px;
  }

  .lab-copy {
    min-height: 430px;
    grid-template-columns: minmax(170px, 0.48fr) minmax(260px, 1fr);
  }

  .lab-cat-scene {
    min-height: 400px;
  }

  .lab-cat-scene img {
    width: 300px;
  }

  .lab-console {
    min-height: auto;
  }

  .process-steps {
    gap: 24px;
  }

  .trust-list,
  footer,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-col,
  .footer-social {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--line-soft);
    padding-top: 24px;
  }

  .trust-list div {
    grid-template-columns: 42px 1fr;
  }
}

@media (max-width: 680px) {
  .site-shell {
    width: 100%;
    margin-top: 0;
  }

  .topbar {
    top: 0;
    margin: 0;
    border-radius: 0 0 18px 18px;
    padding: 16px;
  }

  .brand-name {
    font-size: 12px;
    letter-spacing: 4px;
  }

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

  .hero {
    padding-top: 26px;
    background:
      linear-gradient(180deg, rgba(3, 6, 8, 0.88) 0%, rgba(3, 6, 8, 0.78) 48%, rgba(3, 6, 8, 0.38) 100%),
      linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
      linear-gradient(180deg, rgba(3, 6, 8, 0.94), rgba(3, 6, 8, 0.98));
    background-size: auto, 48px 48px, 48px 48px, auto;
  }

  .hero::after {
    inset: 22% -130px 0 34px;
  }

  .orbit-grid {
    inset: 3% 14px 4%;
    border-radius: 20px;
  }

  .command-panel {
    left: 24px;
    right: 24px;
    top: 156px;
    width: auto;
  }

  .signal-map {
    min-height: 104px;
  }

  .code-stream {
    font-size: 11px;
  }

  .floating-chip {
    min-height: 34px;
    padding: 0 12px;
    font-size: 11px;
  }

  .chip-cloud {
    left: 28px;
    top: auto;
    bottom: 48px;
  }

  .chip-ai {
    right: 22px;
    bottom: 68px;
  }

  .chip-ux {
    display: none;
  }

  .hero-copy {
    padding: 0 14px;
  }

  .hero-copy::before {
    left: 4px;
    top: -12px;
    height: 64%;
  }

  .hero-proof {
    margin-top: 22px;
  }

  .hero-proof span {
    width: 100%;
  }

  .hero-orbit {
    inset: 10% -8% 2% 18%;
    opacity: 0.46;
  }

  .hero-command-card {
    left: 22px;
    right: 22px;
    bottom: 20px;
    width: auto;
    border-radius: 18px;
  }

  .hero-command-grid div {
    min-height: 66px;
    padding: 12px;
  }

  .hero-command-grid b {
    font-size: 21px;
  }

  h1 {
    font-size: 34px;
  }

  .hero-text {
    font-size: 14px;
  }

  .hero-actions {
    margin-bottom: 36px;
  }

  .primary-button,
  .ghost-button,
  .outline-button {
    width: 100%;
  }

  .social-proof {
    align-items: flex-start;
  }

  .services,
  .projects,
  .about,
  .contact,
  .innovation-lab,
  .process-flow,
  .premium-difference {
    margin-left: 14px;
    margin-right: 14px;
  }

  .service-grid,
  .project-grid,
  .service-grid-wide,
  .project-grid-large,
  .blog-grid,
  .metrics,
  .innovation-lab,
  .process-steps,
  .about,
  .contact,
  .error-scene section {
    grid-template-columns: 1fr;
  }

  .innovation-lab {
    padding: 26px 16px;
  }

  .lab-copy {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .lab-copy .section-kicker,
  .lab-copy h2,
  .lab-copy > p:not(.section-kicker) {
    grid-column: 1;
  }

  .lab-cat-scene {
    grid-column: 1;
    grid-row: auto;
    min-height: 320px;
    order: -1;
  }

  .lab-cat-scene img {
    width: 270px;
    bottom: 0;
  }

  .lab-console {
    padding: 18px;
  }

  .lab-console-head {
    margin-bottom: 20px;
  }

  .lab-input-row {
    grid-template-columns: 1fr;
  }

  .lab-input-row .primary-button {
    width: 100%;
  }

  .lab-diagnosis {
    padding-left: 0;
  }

  .lab-diagnosis::before {
    display: none;
  }

  .process-flow {
    padding: 58px 14px 44px;
  }

  .premium-difference {
    padding: 30px 18px;
    border-radius: 22px;
  }

  .difference-grid article {
    min-height: auto;
    padding: 22px;
  }

  .process-heading h2 {
    font-size: 26px;
    line-height: 1.08;
  }

  .process-cats-stage {
    width: 900px;
    height: 200px;
    max-width: none;
    margin-left: -260px;
    margin-bottom: -6px;
  }

  .process-steps article {
    min-height: auto;
    padding: 52px 18px 24px;
  }

  .services {
    padding: 34px 14px;
  }

  .service-card,
  .project-grid article {
    min-height: 220px;
    padding: 22px;
  }

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

  .service-visual-card {
    min-height: 390px;
  }

  .service-cta-strip {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 110px 22px 22px;
  }

  .about {
    padding: 34px 14px;
  }

  .about-media,
  .about-media img {
    min-height: 240px;
  }

  .metrics {
    margin: 28px 14px;
  }

  .metrics div {
    padding: 24px;
  }

  .tech-stack {
    margin: 28px 14px 18px;
  }

  .tech-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .tech-track div {
    justify-content: center;
    padding: 10px 14px;
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.025);
  }

  .contact {
    padding: 24px;
  }

  .inner-page {
    padding: 28px 14px;
  }

  .page-hero {
    min-height: 330px;
    padding: 26px;
    background-position: 68% center;
  }

  .services-hero {
    min-height: 0;
    align-content: start;
    padding: 28px 24px;
  }

  .services-hero h1 {
    font-size: 38px;
  }

  .not-found-preview {
    flex-direction: column;
    align-items: stretch;
    margin: 0 14px 34px;
  }

  footer {
    padding: 28px 18px 40px;
  }

  .error-page {
    padding: 0;
  }

  .error-scene {
    min-height: 100vh;
    border: 0;
    border-radius: 0;
    padding: 22px;
  }

  .error-scene section {
    min-height: auto;
    padding-top: 46px;
  }
}

/* =============================================
   MONOVA — Animation Styles
   ============================================= */

/* Custom cursor */
body.cursor-ready { cursor: none; }
.cur-dot, .cur-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  border-radius: 50%;
  will-change: transform;
  opacity: 0;
  transition: opacity 0.3s ease, width 0.2s, height 0.2s, background 0.2s, border-color 0.2s;
}
.cur-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  margin: -4px 0 0 -4px;
  box-shadow: 0 0 12px rgba(255,121,15,0.9), 0 0 28px rgba(255,121,15,0.5);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
.cur-ring {
  width: 24px; height: 24px;
  border: 1.5px solid rgba(255,121,15,0.55);
  margin: -12px 0 0 -12px;
  transition: width 0.25s, height 0.25s, border-color 0.25s, opacity 0.25s;
}
.cur-dot.cur-hover { width: 14px; height: 14px; margin: -7px 0 0 -7px; background: #fff; }
.cur-ring.cur-hover { width: 38px; height: 38px; margin: -19px 0 0 -19px; border-color: rgba(255,121,15,0.9); }

/* Spark trail */
.spark {
  position: fixed;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  animation: spark-out 0.65s ease-out forwards;
}
@keyframes spark-out {
  0%   { opacity: 1; transform: translate(-50%,-50%) translate(0,0) scale(1); }
  100% { opacity: 0; transform: translate(-50%,-50%) translate(var(--dx),var(--dy)) scale(0); }
}

/* Scroll reveal */
.will-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.will-reveal.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Site shell above orbs */
.site-shell {
  position: relative;
  z-index: 2;
}

/* Premium interactive atmosphere */
.premium-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.74;
  mix-blend-mode: screen;
}

.premium-reactive {
  --mx: 50%;
  --my: 50%;
}

.premium-reactive::after,
.lab-console::after,
.process-steps article::after,
.metrics div::after,
.tech-track div::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 158, 51, 0.18), transparent 11rem),
    linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.035), transparent);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.premium-reactive:hover::after,
.lab-console:hover::after,
.process-steps article:hover::after,
.metrics div:hover::after,
.tech-track div:hover::after {
  opacity: 1;
}

.premium-reactive > *,
.lab-console > *,
.process-steps article > *,
.metrics div > *,
.tech-track div > * {
  position: relative;
  z-index: 1;
}

.hero {
  box-shadow:
    inset 0 -1px 0 rgba(255, 121, 15, 0.16),
    0 30px 110px rgba(0, 0, 0, 0.24);
}

.hero::before {
  animation: hero-breath 8s ease-in-out infinite alternate;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: -28px;
  top: -40px;
  width: 2px;
  height: 78%;
  background: linear-gradient(180deg, transparent, rgba(255, 121, 15, 0.9), transparent);
  box-shadow: 0 0 26px rgba(255, 121, 15, 0.72);
  opacity: 0.72;
  animation: premium-line-float 3.8s ease-in-out infinite alternate;
}

.hero h1 {
  text-shadow:
    0 0 34px rgba(255, 121, 15, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.42);
}

.primary-button,
.ghost-button,
.outline-button,
.nav-cta {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    filter 0.28s ease;
}

.primary-button::before,
.ghost-button::before,
.outline-button::before,
.nav-cta::before {
  content: "";
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -65%;
  width: 42%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-18deg);
  opacity: 0;
}

.primary-button:hover,
.ghost-button:hover,
.outline-button:hover,
.nav-cta:hover {
  filter: brightness(1.08) saturate(1.08);
  box-shadow:
    0 18px 48px rgba(255, 121, 15, 0.26),
    0 0 0 1px rgba(255, 175, 88, 0.18);
}

.primary-button:hover::before,
.ghost-button:hover::before,
.outline-button:hover::before,
.nav-cta:hover::before {
  opacity: 1;
  animation: premium-sheen 0.72s ease forwards;
}

.section-panel,
.process-flow,
.about,
.metrics,
.tech-stack {
  position: relative;
  isolation: isolate;
}

.section-panel::after,
.process-flow::after,
.about::before,
.metrics::before,
.tech-stack::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(90deg, transparent, rgba(255, 121, 15, 0.18), transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 24%);
  opacity: 0.12;
  mask-image: linear-gradient(90deg, transparent 0%, black 20%, black 80%, transparent 100%);
}

.innovation-lab {
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.lab-cat-scene img,
.process-cats-stage img,
.about-media img {
  transition: transform 0.5s ease, filter 0.5s ease;
}

.innovation-lab:hover .lab-cat-scene img {
  transform: translateX(-50%) translateY(-8px) scale(1.02);
  filter: drop-shadow(0 42px 68px rgba(0, 0, 0, 0.6)) saturate(1.1);
}

.lab-console {
  overflow: hidden;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.lab-console::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.032) 0 1px, transparent 1px 7px),
    linear-gradient(90deg, transparent, rgba(16, 243, 109, 0.05), transparent);
  opacity: 0.18;
  pointer-events: none;
}

.lab-console:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 151, 38, 0.68);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.42),
    0 0 54px rgba(255, 121, 15, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lab-console-head i {
  animation: premium-status-dots 1.7s ease-in-out infinite;
}

.lab-message--bot {
  animation: premium-message-float 4s ease-in-out infinite alternate;
}

.process-flow::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 50%;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 121, 15, 0.36), rgba(16, 243, 109, 0.18), transparent);
  box-shadow: 0 0 28px rgba(255, 121, 15, 0.2);
  opacity: 0.62;
}

.process-steps article,
.metrics div,
.tech-track div {
  position: relative;
  transition:
    transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.32s ease,
    box-shadow 0.32s ease,
    background 0.32s ease;
}

.metrics div,
.tech-track div {
  overflow: hidden;
}

.process-steps article:hover,
.metrics div:hover,
.tech-track div:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 151, 38, 0.48);
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.34),
    0 0 42px rgba(255, 121, 15, 0.1);
}

.process-steps article i,
.metrics i {
  animation: premium-node-pulse 2.7s ease-in-out infinite alternate;
}

.about-media {
  box-shadow:
    0 24px 78px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.about-media::before {
  content: "";
  position: absolute;
  inset: -40% -24%;
  z-index: 1;
  background: linear-gradient(110deg, transparent 36%, rgba(255, 216, 142, 0.2), transparent 58%);
  transform: translateX(-72%) skewX(-16deg);
  animation: premium-media-sheen 4.8s ease-in-out infinite;
  pointer-events: none;
}

.about-media:hover img {
  transform: scale(1.035);
  filter: saturate(1.12) contrast(1.03);
}

.trust-list div {
  position: relative;
  border-radius: 14px;
  transition: transform 0.28s ease, background 0.28s ease;
}

.trust-list div:hover {
  transform: translateX(4px);
  background: rgba(255, 121, 15, 0.035);
}

.metrics {
  box-shadow: 0 20px 68px rgba(0, 0, 0, 0.24);
}

.tech-track div {
  position: relative;
  border: 1px solid transparent;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.018);
}

.tech-track div:hover img {
  filter: saturate(1.1) brightness(1.24) drop-shadow(0 0 14px rgba(255, 121, 15, 0.28));
}

@keyframes hero-breath {
  from { opacity: 0.86; filter: brightness(0.98); }
  to { opacity: 1; filter: brightness(1.08); }
}

@keyframes premium-line-float {
  from { transform: translateY(0); opacity: 0.42; }
  to { transform: translateY(18px); opacity: 0.88; }
}

@keyframes premium-sheen {
  to { transform: translateX(410%) skewX(-18deg); }
}

@keyframes premium-status-dots {
  50% { opacity: 1; filter: drop-shadow(0 0 12px rgba(16, 243, 109, 0.6)); }
}

@keyframes premium-message-float {
  from { transform: translateY(0); }
  to { transform: translateY(-4px); }
}

@keyframes premium-node-pulse {
  from { box-shadow: 0 0 0 8px rgba(1, 3, 4, 0.92), 0 0 22px rgba(255, 121, 15, 0.28); }
  to { box-shadow: 0 0 0 10px rgba(1, 3, 4, 0.94), 0 0 38px rgba(255, 121, 15, 0.58); }
}

@keyframes premium-media-sheen {
  0%, 46% { transform: translateX(-72%) skewX(-16deg); opacity: 0; }
  58% { opacity: 0.8; }
  76%, 100% { transform: translateX(82%) skewX(-16deg); opacity: 0; }
}

@keyframes premium-orbit-drift {
  from { transform: translate3d(0, 0, 0) rotate(-1deg); opacity: 0.52; }
  to { transform: translate3d(-18px, -10px, 0) rotate(1deg); opacity: 0.88; }
}

@keyframes premium-signal {
  from { transform: scaleY(0.34); opacity: 0.44; filter: brightness(0.9); }
  to { transform: scaleY(1); opacity: 1; filter: brightness(1.26) drop-shadow(0 0 10px rgba(255, 121, 15, 0.54)); }
}

/* Ripple */
.ripple-wave {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: translate(-50%,-50%) scale(0);
  animation: ripple-expand 0.65s ease-out forwards;
  pointer-events: none;
}
@keyframes ripple-expand {
  to { transform: translate(-50%,-50%) scale(28); opacity: 0; }
}

/* Ambient neural backdrop */
.neural-backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
  background:
    linear-gradient(120deg, transparent 0 40%, rgba(255, 121, 15, 0.05) 40% 40.25%, transparent 40.25% 100%),
    linear-gradient(60deg, transparent 0 58%, rgba(16, 243, 109, 0.035) 58% 58.25%, transparent 58.25% 100%);
  opacity: 0.75;
}

.neural-line {
  position: absolute;
  width: 42vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 121, 15, 0.22), transparent);
  transform: rotate(var(--r));
  left: var(--x);
  top: var(--y);
  animation: neural-scan var(--d) ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes neural-scan {
  from { opacity: 0.2; transform: rotate(var(--r)) translateX(-18px); }
  to { opacity: 0.75; transform: rotate(var(--r)) translateX(18px); }
}

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

@keyframes node-pulse {
  50% { transform: scale(1.34); opacity: 0.74; }
}

@keyframes micro-rise {
  50% { transform: translateY(-6px); filter: brightness(1.25); }
}

/* Topbar scrolled */
.topbar.scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(3, 6, 8, 0.96);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,121,15,0.12);
}

/* Brand pulse */
.brand-pulse::before {
  animation: brand-glow 3s ease-in-out infinite;
}
@keyframes brand-glow {
  0%, 100% { filter: brightness(1) drop-shadow(0 0 0px rgba(255,121,15,0)); }
  50%       { filter: brightness(1.2) drop-shadow(0 0 10px rgba(255,121,15,0.7)); }
}

/* Floating badge */
@keyframes float-badge {
  from { transform: translateY(0px) rotate(-0.5deg); }
  to   { transform: translateY(-10px) rotate(0.5deg); }
}

/* CSS Glitch on h1 hover */
.glitch-active {
  animation: css-glitch 0.38s steps(2) forwards;
}
@keyframes css-glitch {
  0%   { transform: translate(0); filter: none; }
  20%  { transform: translate(-2px, 1px); filter: hue-rotate(90deg) brightness(1.3); clip-path: inset(10% 0 80% 0); }
  40%  { transform: translate(2px, -1px); filter: hue-rotate(-90deg); clip-path: inset(60% 0 20% 0); }
  60%  { transform: translate(-1px, 2px); filter: brightness(1.5); clip-path: inset(30% 0 50% 0); }
  80%  { transform: translate(1px, -1px); filter: none; clip-path: none; }
  100% { transform: translate(0); filter: none; clip-path: none; }
}

/* Neon active nav link */
.nav-neon {
  position: relative;
  color: var(--orange) !important;
  text-shadow: 0 0 12px rgba(255,121,15,0.7), 0 0 28px rgba(255,121,15,0.35);
}
.nav-neon::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--orange), 0 0 20px rgba(255,121,15,0.5);
  animation: neon-flicker 4s ease-in-out infinite;
}
@keyframes neon-flicker {
  0%,100% { opacity: 1; }
  92%     { opacity: 1; }
  93%     { opacity: 0.4; }
  94%     { opacity: 1; }
  96%     { opacity: 0.6; }
  97%     { opacity: 1; }
}

/* Card tilt reset on mobile */
@media (max-width: 680px) {
  body { cursor: auto; }
  .cur-dot, .cur-ring { display: none; }
}

/* =============================================
   HERO CANVAS — M PARTICLES
   ============================================= */

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

/* =============================================
   BOOT SEQUENCE OVERLAY
   ============================================= */

.boot-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background:
    radial-gradient(circle at 50% 43%, rgba(255, 121, 15, 0.15), transparent 20rem),
    radial-gradient(circle at 38% 18%, rgba(16, 243, 109, 0.055), transparent 22rem),
    radial-gradient(circle at 66% 78%, rgba(255, 92, 0, 0.08), transparent 26rem),
    linear-gradient(180deg, rgba(1, 4, 6, 0.99), rgba(2, 4, 6, 0.97));
  min-height: 100vh;
  min-height: 100dvh;
  border-radius: 0;
  overflow: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.boot-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 121, 15, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 121, 15, 0.038) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, transparent 0, rgba(0, 0, 0, 0.38) 72%);
  background-size: 52px 52px, 52px 52px, auto;
  pointer-events: none;
}

/* Horizontal scan beam */
.boot-overlay::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 121, 15, 0.6), transparent);
  animation: boot-scan 2.4s linear infinite;
}

.boot-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.9;
}

@keyframes boot-scan {
  from { top: 0; opacity: 0.6; }
  to   { top: 100%; opacity: 0.1; }
}

.boot-overlay.boot-done {
  opacity: 0;
  pointer-events: none;
}

.boot-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.boot-brand::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: min(460px, 64vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 121, 15, 0.58), transparent);
  transform: translateX(-50%);
  filter: drop-shadow(0 0 16px rgba(255, 121, 15, 0.68));
  opacity: 0.72;
  z-index: -1;
}

.boot-m {
  display: block;
  position: relative;
  width: clamp(230px, 28vw, 390px);
  aspect-ratio: 120 / 86;
  filter:
    drop-shadow(0 0 14px rgba(255, 121, 15, 0.76))
    drop-shadow(0 0 42px rgba(255, 92, 0, 0.42));
  overflow: visible;
  isolation: isolate;
  animation: boot-m-pulse 1.9s ease-in-out infinite alternate;
}

.boot-m canvas {
  position: absolute;
  inset: -20% -16%;
  width: 132%;
  height: 140%;
}

.boot-m::before {
  content: "";
  position: absolute;
  inset: -42% -28%;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 151, 40, 0.18), rgba(255, 92, 0, 0.055) 42%, transparent 70%);
  filter: blur(18px);
  opacity: 0.5;
  animation: boot-halo-pulse 2.6s ease-in-out infinite alternate;
}

.boot-m::after {
  content: "";
  position: absolute;
  top: -8%;
  bottom: -8%;
  left: -58%;
  width: 22%;
  z-index: 1;
  background: linear-gradient(105deg, transparent, rgba(255, 242, 210, 0.04) 26%, rgba(255, 205, 118, 0.32) 48%, rgba(255, 255, 255, 0.1) 58%, transparent 78%);
  transform: skewX(-18deg);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: boot-m-scan 2.8s cubic-bezier(0.55, 0, 0.18, 1) infinite;
}

@keyframes boot-m-pulse {
  from {
    opacity: 0.9;
    transform: translateY(2px) scale(0.99);
    filter:
      drop-shadow(0 0 10px rgba(255, 121, 15, 0.72))
      drop-shadow(0 0 30px rgba(255, 92, 0, 0.4));
  }
  to {
    opacity: 1;
    transform: translateY(-2px) scale(1.018);
    filter:
      drop-shadow(0 0 16px rgba(255, 121, 15, 0.95))
      drop-shadow(0 0 48px rgba(255, 92, 0, 0.62))
      drop-shadow(0 0 92px rgba(255, 121, 15, 0.24));
  }
}

@keyframes boot-halo-pulse {
  from { opacity: 0.56; transform: scale(0.92); }
  to { opacity: 0.94; transform: scale(1.06); }
}

@keyframes boot-m-scan {
  0% { transform: translateX(0) skewX(-18deg); opacity: 0; }
  14% { opacity: 0.72; }
  48% { transform: translateX(620%) skewX(-18deg); opacity: 0.44; }
  100% { transform: translateX(620%) skewX(-18deg); opacity: 0; }
}

.boot-title {
  font: 900 11px/1 var(--font-display);
  letter-spacing: 8px;
  color: rgba(255, 232, 210, 0.58);
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255, 121, 15, 0.22);
}

.boot-lines {
  position: relative;
  z-index: 1;
  width: min(520px, 86vw);
  display: grid;
  gap: 3px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 121, 15, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 121, 15, 0.055), transparent 34%),
    rgba(0, 0, 0, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 18px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(10px);
  font: 600 11px/1.82 'Courier New', monospace;
  color: rgba(255, 255, 255, 0.55);
}

.boot-line {
  opacity: 0;
  transform: translateX(-6px);
  animation: boot-line-in 0.28s ease forwards;
}

.boot-line--ok   { color: #10f36d; }
.boot-line--ready {
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 1px;
}

@keyframes boot-line-in {
  to { opacity: 1; transform: translateX(0); }
}

/* =============================================
   COMMAND CENTER
   ============================================= */

.command-center {
  position: relative;
  overflow: hidden;
  margin: 28px 0 0;
  padding: 70px 28px 80px;
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% -4%, rgba(255, 121, 15, 0.12), transparent 26rem),
    linear-gradient(rgba(255, 255, 255, 0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px),
    #010304;
  background-size: auto, 68px 68px, 68px 68px, auto;
}

/* Orange top-edge line */
.command-center::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 121, 15, 0.8), transparent);
  box-shadow: 0 0 28px rgba(255, 121, 15, 0.5);
}

/* Corner HUD decorations */
.command-center::after {
  content: '';
  position: absolute;
  top: 22px; right: 28px;
  width: 54px; height: 54px;
  border-top: 1px solid rgba(255, 121, 15, 0.3);
  border-right: 1px solid rgba(255, 121, 15, 0.3);
}

.cmd-header {
  text-align: center;
  margin-bottom: 54px;
  position: relative;
  z-index: 1;
}

.cmd-header h2 {
  font: 900 clamp(30px, 4vw, 52px)/1.08 var(--font-display);
  margin-bottom: 14px;
}

.cmd-header h2 span { color: var(--orange); }

.cmd-subtitle {
  color: var(--muted);
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

.cmd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}

.cmd-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 30px 26px 28px;
  border: 1px solid rgba(255, 121, 15, 0.2);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.008));
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition:
    border-color 0.3s ease,
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
}

.cmd-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 50% -10%, rgba(255, 121, 15, 0.14), transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.cmd-card:hover {
  border-color: rgba(255, 121, 15, 0.65);
  transform: translateY(-5px) scale(1.012);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 121, 15, 0.12);
}

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

.cmd-card:hover .cmd-card-glow { opacity: 1; }

.cmd-card:hover .cmd-card-icon {
  box-shadow: 0 0 22px rgba(255, 121, 15, 0.45), 0 0 50px rgba(255, 121, 15, 0.15);
  background: rgba(255, 121, 15, 0.15);
  border-color: rgba(255, 121, 15, 0.7);
}

.cmd-card:hover .cmd-scanline {
  animation: cmd-scanline-sweep 0.55s linear;
}

.cmd-card--special {
  border-color: rgba(255, 121, 15, 0.35);
  background: linear-gradient(145deg, rgba(255, 121, 15, 0.06), rgba(255, 255, 255, 0.01));
}

.cmd-card-tag {
  font: 900 10px/1 var(--font-display);
  letter-spacing: 2.5px;
  color: rgba(255, 121, 15, 0.6);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cmd-card-icon {
  width: 50px; height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 121, 15, 0.35);
  border-radius: 14px;
  color: var(--orange);
  font-size: 20px;
  font-weight: 900;
  background: rgba(255, 121, 15, 0.07);
  margin-bottom: 4px;
  transition: box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.cmd-card h3 {
  font: 800 19px/1.22 var(--font-display);
  margin: 0;
  color: var(--text);
}

.cmd-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

/* Neon border glow layer */
.cmd-card-glow {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 121, 15, 0.55);
  box-shadow:
    0 0 18px rgba(255, 121, 15, 0.18),
    inset 0 0 18px rgba(255, 121, 15, 0.04);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* Scanline sweep effect */
.cmd-scanline {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 121, 15, 0.07) 45%,
    rgba(255, 121, 15, 0.12) 50%,
    rgba(255, 121, 15, 0.07) 55%,
    transparent 100%
  );
  transform: translateY(-110%);
  pointer-events: none;
}

@keyframes cmd-scanline-sweep {
  from { transform: translateY(-110%); }
  to   { transform: translateY(110%); }
}

@media (max-width: 1000px) {
  .cmd-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .command-center {
    margin-left: 14px;
    margin-right: 14px;
    padding: 48px 16px 56px;
  }

  .cmd-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cmd-header {
    margin-bottom: 36px;
  }

  .boot-m {
    width: min(72vw, 260px);
  }

  .boot-lines {
    width: min(88vw, 420px);
    font-size: 10px;
  }
}

@media (max-width: 1000px) {
  .hero-media {
    inset: 30% -90px 0 18%;
  }

  .hero-media video {
    opacity: 0.62;
  }
}

@media (max-width: 680px) {
  .hero-media {
    inset: 22% -130px 0 0;
  }

  .hero-media video {
    opacity: 0.62;
    object-position: 58% center;
    filter: brightness(1.08) saturate(1.12);
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, #030303 0%, rgba(3, 3, 3, 0.52) 16%, rgba(3, 3, 3, 0.08) 52%, rgba(3, 3, 3, 0.72) 100%),
      linear-gradient(180deg, rgba(3, 3, 3, 0.68) 0%, rgba(3, 3, 3, 0.04) 30%, rgba(3, 3, 3, 0.06) 64%, rgba(3, 3, 3, 0.76) 100%);
  }
}

/* Mobile hero guardrails */
@media (max-width: 680px) {
  .hero {
    display: block;
    min-height: 690px;
    padding: 34px 20px 260px;
  }

  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 40px);
    padding: 0;
  }

  .hero-copy .eyebrow {
    max-width: 100%;
    overflow-wrap: anywhere;
    letter-spacing: 1.6px;
    line-height: 1.35;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 12vw, 48px);
    line-height: 1.08;
    overflow-wrap: normal;
  }

  .hero-text {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 100%;
  }

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

  .hero-proof {
    flex-wrap: nowrap;
    max-width: calc(100vw - 40px);
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .hero-proof::-webkit-scrollbar {
    display: none;
  }

  .hero-proof span {
    width: auto;
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

/* Home lower-section spacing */
.process-flow {
  margin-top: 72px;
  margin-bottom: 54px;
  padding-bottom: 68px;
}

.process-cats-stage {
  margin-bottom: 14px;
}

.process-steps {
  align-items: stretch;
}

.process-steps article {
  min-height: 220px;
  padding: 62px 24px 30px;
}

.metrics {
  gap: 18px;
  margin: 56px 24px 42px;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.metrics div {
  min-height: 136px;
  padding: 30px 28px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(13, 17, 20, 0.9);
}

.tech-stack {
  margin: 48px 24px 54px;
  padding: 0 0 24px;
}

.tech-stack .section-kicker {
  text-align: center;
  margin-bottom: 20px;
}

.tech-track {
  gap: 16px;
}

.tech-track div {
  min-height: 68px;
  border-color: rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.026);
}

@media (max-width: 1000px) {
  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .process-flow {
    padding-bottom: 42px;
  }

  .metrics {
    grid-template-columns: 1fr;
    margin: 34px 14px;
    gap: 12px;
  }

  .tech-track div {
    min-height: 64px;
  }
}
