:root {
  --ink: #080a08;
  --ink-soft: #0d100e;
  --panel: #111411;
  --panel-2: #151815;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --paper: #f2f4ed;
  --muted: #a6aaa1;
  --accent: #d4ff3f;
  --accent-soft: rgba(212, 255, 63, 0.15);
  --violet: #8f86ff;
  --glass: rgba(17, 21, 19, 0.62);
  --glass-strong: rgba(21, 26, 23, 0.82);
  --glass-line: rgba(255, 255, 255, 0.16);
  --elevation-3: 0 30px 90px rgba(0, 0, 0, 0.34);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1240px;
  --pad: clamp(20px, 4vw, 64px);
  --radius: 24px;
  --header-h: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--accent) var(--ink);
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  max-width: 100%;
  overflow-x: clip;
  cursor: none;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--accent);
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

button,
input,
textarea {
  font: inherit;
}

img,
svg {
  display: block;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--accent);
  transform: translateY(-150%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

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

#ambient-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  box-shadow: 0 0 16px var(--accent);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 0 var(--pad);
  border-bottom: 1px solid transparent;
  transition: height 0.35s ease, background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.scrolled {
  height: 72px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 38%),
    rgba(8, 10, 8, 0.68);
  border-color: var(--glass-line);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.brand {
  justify-self: start;
  display: grid;
  grid-template-columns: 40px auto;
  grid-template-rows: 23px 12px;
  column-gap: 10px;
  align-items: center;
}

.brand-mark {
  grid-row: 1 / 3;
  width: 40px;
  height: 40px;
  fill: var(--paper);
}

.brand-mark .brand-cut {
  fill: var(--accent);
}

.brand-word {
  align-self: end;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.brand-sub {
  align-self: start;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 7px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.22em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
}

.desktop-nav a {
  position: relative;
  color: #c9ccc4;
  font-size: 13px;
  font-weight: 500;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 17px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.header-cta:hover {
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
}

.header-cta svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 60px) var(--pad) 140px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(calc(1.04 + var(--hero-scroll, 0) * 0.00008)) translateY(calc(var(--hero-scroll, 0) * 0.08px));
  will-change: transform;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 8, 0.98) 0%, rgba(8, 10, 8, 0.86) 32%, rgba(8, 10, 8, 0.2) 72%, rgba(8, 10, 8, 0.36) 100%),
    linear-gradient(0deg, var(--ink) 0%, transparent 30%, rgba(0, 0, 0, 0.12) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, black, transparent 72%);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(212, 255, 63, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: min(56vw, 820px);
  aspect-ratio: 1;
  right: -10vw;
  top: 7vh;
  transform: rotateX(68deg) rotateZ(8deg);
  box-shadow: inset 0 0 70px rgba(212, 255, 63, 0.03);
}

.orbit-two {
  width: min(39vw, 580px);
  aspect-ratio: 1;
  right: 2vw;
  top: 20vh;
  border-style: dashed;
  transform: rotateX(72deg) rotateZ(-12deg);
  animation: orbit-spin 28s linear infinite;
}

@keyframes orbit-spin {
  to { transform: rotateX(72deg) rotateZ(348deg); }
}

.hero-content {
  width: min(780px, 64vw);
  margin-left: max(0px, calc((100vw - var(--max)) / 2));
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c8ccc2;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.pulse-dot {
  position: relative;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--accent);
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid var(--accent);
  border-radius: inherit;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% { opacity: 0.8; transform: scale(0.45); }
  100% { opacity: 0; transform: scale(1.4); }
}

.hero-title {
  max-width: 860px;
  margin: 28px 0 26px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(50px, 6.65vw, 104px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.title-line {
  display: block;
  overflow: hidden;
}

.title-line > span {
  display: block;
  transform: translateY(110%);
  animation: title-in 1.1s cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
}

.title-line:nth-child(2) > span {
  animation-delay: 0.12s;
}

@keyframes title-in {
  to { transform: translateY(0); }
}

.title-accent {
  color: var(--accent);
}

.hero-copy {
  max-width: 620px;
  margin: 0 0 34px;
  color: #b5b9b0;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
}

.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 58px;
  padding: 0 24px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  isolation: isolate;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--paper);
  transform: translateY(105%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.button:hover::before {
  transform: translateY(0);
}

.button:hover {
  box-shadow: 0 18px 60px rgba(212, 255, 63, 0.18);
}

.button-primary {
  color: var(--ink);
  background: var(--accent);
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.text-link,
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #daddd5;
  font-size: 14px;
  font-weight: 500;
}

.text-link span,
.inline-link span {
  transition: transform 0.25s ease;
}

.text-link:hover span,
.inline-link:hover span {
  transform: translate(3px, -3px);
}

.hero-proof {
  position: absolute;
  right: var(--pad);
  bottom: 65px;
  display: flex;
  border-top: 1px solid var(--line);
}

.hero-proof > div {
  min-width: 150px;
  padding: 16px 18px 0;
  border-left: 1px solid var(--line);
}

.proof-label,
.mini-label {
  display: block;
  margin-bottom: 5px;
  color: #858a81;
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-proof strong {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.scroll-cue {
  position: absolute;
  left: var(--pad);
  bottom: 48px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #7e827a;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateY(100%);
  transform-origin: left bottom;
}

.scroll-cue i {
  width: 55px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
}

.scroll-cue i::after {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  background: var(--accent);
  animation: scan 2s ease-in-out infinite;
}

@keyframes scan {
  from { transform: translateX(-110%); }
  to { transform: translateX(220%); }
}

.signal-strip {
  overflow: hidden;
  padding: 18px 0;
  color: #acb0a8;
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 26px;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: marquee 30s linear infinite;
}

.signal-track i {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

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

.section {
  width: min(100%, calc(var(--max) + var(--pad) * 2));
  margin-inline: auto;
  padding: clamp(100px, 13vw, 190px) var(--pad);
}

.section-kicker span {
  color: var(--accent);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(60px, 10vw, 140px);
  margin-top: 48px;
  align-items: end;
}

.display-heading {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(42px, 5.5vw, 78px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.display-heading em {
  color: var(--accent);
  font-style: normal;
}

.intro-copy {
  color: var(--muted);
  font-size: 16px;
}

.intro-copy p + p {
  margin-top: 20px;
}

.inline-link {
  margin-top: 18px;
  color: var(--paper);
}

.world-card {
  position: relative;
  min-height: 470px;
  margin-top: 100px;
  padding: clamp(30px, 5vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 52%, rgba(143, 134, 255, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.018)),
    rgba(15, 19, 16, 0.55);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius);
  box-shadow: var(--elevation-3), inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(26px) saturate(135%);
  -webkit-backdrop-filter: blur(26px) saturate(135%);
  transform-style: preserve-3d;
}

.world-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 12%, rgba(255, 255, 255, 0.1) 31%, transparent 48%);
  transform: translateX(-120%);
  transition: transform 900ms var(--ease-out-expo);
}

.world-card:hover::after {
  transform: translateX(120%);
}

.world-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 70% 50%, black, transparent 70%);
}

.world-copy {
  position: relative;
  z-index: 2;
  width: 48%;
  transform: translateZ(45px);
}

.world-copy h3 {
  margin: 40px 0 20px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(30px, 3.5vw, 52px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.world-copy p {
  max-width: 430px;
  color: var(--muted);
}

.system-map {
  position: absolute;
  top: 50%;
  right: 10%;
  width: min(36vw, 390px);
  aspect-ratio: 1;
  transform: translateY(-50%) translateZ(20px);
}

.map-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 255, 63, 0.28);
  border-radius: 50%;
  box-shadow: inset 0 0 65px rgba(212, 255, 63, 0.04);
}

.ring-a {
  animation: ring-pulse 4s ease-in-out infinite;
}

.ring-b {
  inset: 18%;
  border-color: rgba(143, 134, 255, 0.35);
  animation: ring-pulse 4s 1s ease-in-out infinite reverse;
}

@keyframes ring-pulse {
  50% { opacity: 0.45; transform: scale(0.96); }
}

.map-core {
  position: absolute;
  inset: 35%;
  display: grid;
  place-items: center;
  background: rgba(212, 255, 63, 0.08);
  border: 1px solid var(--accent);
  border-radius: 30%;
  box-shadow: 0 0 55px rgba(212, 255, 63, 0.17), inset 0 0 30px rgba(212, 255, 63, 0.08);
  transform: rotate(45deg);
}

.map-core span {
  color: var(--accent);
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 800;
  transform: rotate(-45deg);
}

.map-node {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--accent);
}

.node-a { top: 10%; left: 45%; }
.node-b { top: 49%; right: -1%; }
.node-c { bottom: 9%; left: 38%; }
.node-d { top: 42%; left: -1%; }

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

.section-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.expertise-title {
  max-width: 900px;
}

.expertise {
  position: relative;
  isolation: isolate;
  perspective: 1500px;
  overflow: clip;
}

.expertise-depth-field {
  position: absolute;
  inset: 8% -12vw;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.expertise-depth-field::before {
  content: "";
  position: sticky;
  top: 18vh;
  display: block;
  width: 56vw;
  height: 56vw;
  margin-left: 48%;
  border: 1px solid rgba(143, 134, 255, 0.13);
  border-radius: 42% 58% 61% 39% / 41% 38% 62% 59%;
  background:
    radial-gradient(circle at 38% 40%, rgba(143, 134, 255, 0.12), transparent 44%),
    radial-gradient(circle at 68% 70%, rgba(212, 255, 63, 0.09), transparent 38%);
  filter: blur(1px);
  transform: rotate(18deg);
}

.expertise-depth-field i {
  position: absolute;
  width: clamp(120px, 18vw, 280px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34%;
  background: rgba(255, 255, 255, 0.018);
  box-shadow: inset 0 0 45px rgba(143, 134, 255, 0.04);
  backdrop-filter: blur(8px);
  transform: translate3d(0, var(--depth-y, 0px), 0) rotate(35deg);
  will-change: transform;
}

.expertise-depth-field i:nth-child(1) { top: 16%; left: 3%; }
.expertise-depth-field i:nth-child(2) { top: 49%; right: 2%; width: clamp(90px, 13vw, 210px); }
.expertise-depth-field i:nth-child(3) { bottom: 5%; left: 30%; width: clamp(70px, 10vw, 160px); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 20px;
  margin-top: 80px;
  perspective: 1600px;
}

.service-card {
  position: relative;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 22px;
  padding: 18px 18px clamp(28px, 3vw, 40px);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), transparent 34%),
    var(--glass);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 380ms var(--ease-out-expo), background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.services-grid .service-card:nth-child(even) {
  margin-top: 88px;
}

.service-card:hover {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 36%),
    var(--glass-strong);
  border-color: rgba(212, 255, 63, 0.35);
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.46), 0 0 50px rgba(212, 255, 63, 0.045), inset 0 1px rgba(255, 255, 255, 0.1);
}

.service-featured {
  color: var(--paper);
  background:
    linear-gradient(145deg, rgba(212, 255, 63, 0.12), transparent 40%),
    var(--glass);
  border-color: rgba(212, 255, 63, 0.48);
}

.service-featured:hover {
  color: var(--paper);
  background:
    linear-gradient(145deg, rgba(212, 255, 63, 0.15), transparent 44%),
    var(--glass-strong);
}

.card-glow {
  position: absolute !important;
  z-index: 0 !important;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(212, 255, 63, 0.15), transparent 68%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.service-top,
.service-card > div,
.service-card > ul,
.service-card > a {
  position: relative;
  z-index: 1;
  transform: translateZ(18px);
}

.service-top {
  position: absolute !important;
  top: 38px;
  left: 38px;
  right: 38px;
  z-index: 5 !important;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--paper);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.service-visual {
  position: relative !important;
  z-index: 1 !important;
  height: 330px;
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  background: #080a08;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 24px 60px rgba(0, 0, 0, 0.34);
  transform: translate3d(0, var(--depth-y, 0px), 42px) scale(1.025) !important;
  transform-style: preserve-3d;
  transition: transform 420ms var(--ease-out-expo);
  will-change: transform;
}

.service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4, 6, 5, 0.02), transparent 54%, rgba(4, 6, 5, 0.7)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 24%);
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.055);
  filter: saturate(0.92) contrast(1.05);
  transition: transform 700ms var(--ease-out-expo), filter 400ms ease;
}

.service-card:hover .service-visual img {
  transform: scale(1.105);
  filter: saturate(1.08) contrast(1.06);
}

.glass-plane {
  position: absolute;
  z-index: 2;
  display: block;
  width: 28%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(143, 134, 255, 0.025));
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.26), inset 0 1px rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  transform: rotate(42deg) translateZ(60px);
}

.plane-one {
  right: -9%;
  bottom: -12%;
}

.plane-two {
  left: -8%;
  top: 38%;
  width: 18%;
  opacity: 0.6;
}

.service-card > div:not(.card-glow):not(.service-visual):not(.service-top),
.service-card > ul,
.service-card > a {
  margin-inline: clamp(10px, 2vw, 24px);
}

.service-number {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-icon {
  width: 50px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
}

.service-card h3 {
  max-width: 500px;
  margin: 0 0 13px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.service-card p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.service-featured p {
  color: var(--muted);
}

.service-featured:hover p {
  color: var(--muted);
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 7px 11px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 10px;
  opacity: 0.65;
}

.service-card > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  font-size: 12px;
  font-weight: 600;
}

.difference {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(60px, 10vw, 160px);
  align-items: start;
}

.difference-sticky {
  position: sticky;
  top: 130px;
}

.difference-sticky .display-heading {
  margin: 42px 0 28px;
}

.difference-sticky > p {
  max-width: 440px;
  color: var(--muted);
}

.difference-list {
  border-top: 1px solid var(--line);
}

.difference-item {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 24px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.difference-item > span {
  color: var(--accent);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.difference-item h3 {
  margin: 0 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.difference-item p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.process {
  overflow: hidden;
}

.process > .display-heading {
  max-width: 900px;
}

.process-stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 35px;
  margin-top: 100px;
}

.process-line {
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}

.process-line span {
  display: block;
  width: var(--process-progress, 0%);
  height: 100%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.process-step {
  position: relative;
}

.step-index {
  display: block;
  margin-bottom: 40px;
  color: #787d74;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.step-node {
  position: absolute;
  top: 63px;
  left: 0;
  width: 11px;
  height: 11px;
  background: var(--ink);
  border: 2px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(212, 255, 63, 0.45);
}

.process-step > div:last-child {
  padding-top: 53px;
}

.process-step h3 {
  margin: 14px 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.industries-panel {
  position: relative;
  min-height: 630px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 50px;
  padding: clamp(36px, 6vw, 85px);
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 45%, rgba(212, 255, 63, 0.11), transparent 32%),
    #e7e9e1;
  color: var(--ink);
  border-radius: var(--radius);
}

.industries-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8, 10, 8, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 10, 8, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to right, transparent, black);
}

.industry-copy {
  position: relative;
  z-index: 2;
}

.industry-copy .section-kicker {
  color: #555a52;
}

.industry-copy .display-heading {
  margin: 42px 0 26px;
  font-size: clamp(42px, 4.6vw, 66px);
}

.industry-copy .display-heading em {
  color: #667d13;
}

.industry-copy > p {
  max-width: 500px;
  color: #5d625a;
}

.industry-cloud {
  position: relative;
  z-index: 2;
  min-height: 420px;
  perspective: 900px;
}

.industry-cloud span {
  position: absolute;
  top: var(--y);
  left: var(--x);
  padding: 15px 19px;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(8, 10, 8, 0.12);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(8, 10, 8, 0.08);
  backdrop-filter: blur(12px);
  font-family: "Manrope", sans-serif;
  font-size: clamp(12px, 1.4vw, 17px);
  font-weight: 700;
  transform: rotate(var(--r)) translateZ(0);
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.industry-cloud span:hover {
  color: var(--paper);
  background: var(--ink);
  transform: rotate(0) translateY(-6px) translateZ(25px);
}

.faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(60px, 10vw, 150px);
}

.faq-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-heading .display-heading {
  margin-top: 42px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 30px 54px 30px 0;
  cursor: pointer;
  list-style: none;
  font-family: "Manrope", sans-serif;
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 18px;
  height: 1px;
  background: var(--accent);
  content: "";
  transition: transform 0.3s ease;
}

.faq-list summary span::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list p {
  max-width: 690px;
  margin: -5px 0 32px;
  color: var(--muted);
}

.contact {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 10% var(--pad);
  z-index: -1;
  border: 1px solid var(--line);
  border-radius: 50%;
  transform: rotateX(65deg);
}

.contact-aura {
  position: absolute;
  z-index: -2;
  width: 65vw;
  height: 65vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle, rgba(212, 255, 63, 0.13), transparent 60%);
  border-radius: 50%;
  animation: aura 7s ease-in-out infinite;
}

@keyframes aura {
  50% { transform: scale(1.1); opacity: 0.65; }
}

.contact-inner {
  max-width: 1000px;
}

.contact-inner .section-kicker {
  justify-content: center;
}

.contact-title {
  margin: 42px 0 28px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(52px, 8vw, 120px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.contact-inner > p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.contact-actions {
  justify-content: center;
  margin-top: 42px;
}

.button-large {
  min-height: 68px;
  padding-inline: 30px;
}

.site-footer {
  width: min(100%, calc(var(--max) + var(--pad) * 2));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  margin-inline: auto;
  padding: 55px var(--pad) 35px;
  border-top: 1px solid var(--line);
}

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

.footer-brand p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 32px;
  align-items: start;
  font-size: 13px;
}

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

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  color: #70756d;
  border-top: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.motion-ready .reveal.visible.tilt-card {
  transform:
    perspective(1300px)
    rotateX(calc(var(--tilt-x, 0deg) + var(--scroll-tilt, 0deg)))
    rotateY(var(--tilt-y, 0deg))
    translate3d(0, var(--card-lift, 0px), 0);
}

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

.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--accent);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(212, 255, 63, 0.6);
  transition: width 0.25s ease, height 0.25s ease, background 0.25s ease;
}

body.cursor-hover .cursor-ring {
  width: 54px;
  height: 54px;
  background: rgba(212, 255, 63, 0.09);
}

@media (max-width: 1050px) {
  :root { --header-h: 78px; }
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .header-cta { display: none; }
  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 7px;
    color: var(--paper);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
  }
  .menu-toggle span {
    width: 17px;
    height: 1px;
    background: currentColor;
    transition: transform 0.3s ease;
  }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: var(--pad);
    visibility: hidden;
    opacity: 0;
    background: rgba(8, 10, 8, 0.97);
    backdrop-filter: blur(20px);
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }
  .mobile-menu.open { visibility: visible; opacity: 1; }
  .mobile-menu a {
    font-family: "Manrope", sans-serif;
    font-size: clamp(34px, 7vw, 60px);
    font-weight: 600;
    letter-spacing: -0.05em;
  }
  .hero-content { width: min(740px, 78vw); }
  .hero-proof { display: none; }
  .hero-media img { object-position: 63% center; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-copy { max-width: 700px; }
  .difference { grid-template-columns: 1fr; }
  .difference-sticky { position: static; }
  .process-stage {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    row-gap: 60px;
  }
  .process-line { display: none; }
  .step-node { display: none; }
  .process-step > div:last-child { padding-top: 0; }
  .industries-panel { grid-template-columns: 1fr; }
  .industry-cloud { min-height: 330px; }
  .faq { grid-template-columns: 1fr; }
  .faq-heading { position: static; }
}

@media (max-width: 720px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  .hero {
    min-height: 900px;
    align-items: flex-start;
    padding-top: 150px;
    padding-bottom: 100px;
  }
  .hero-media img {
    object-position: 66% center;
    opacity: 0.78;
  }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(8, 10, 8, 0.78), rgba(8, 10, 8, 0.3) 45%, var(--ink) 90%),
      linear-gradient(90deg, rgba(8, 10, 8, 0.85), transparent);
  }
  .hero-content { width: 100%; margin: 0; }
  .hero-title { margin-top: 24px; }
  .hero-copy { margin-top: 310px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .scroll-cue { display: none; }
  .section { padding-top: 100px; padding-bottom: 100px; }
  .world-card {
    min-height: 680px;
    margin-top: 65px;
  }
  .world-copy { width: 100%; }
  .system-map {
    top: auto;
    right: 50%;
    bottom: 20px;
    width: 310px;
    transform: translateX(50%);
  }
  .section-heading-row { align-items: flex-start; flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; margin-top: 55px; }
  .services-grid .service-card:nth-child(even) { margin-top: 0; }
  .service-card { min-height: 680px; }
  .service-visual { height: 300px; }
  .process-stage { grid-template-columns: 1fr; margin-top: 65px; }
  .process-step {
    padding-left: 30px;
    border-left: 1px solid var(--line);
  }
  .industries-panel { min-height: 850px; padding-inline: 24px; }
  .industry-cloud { min-height: 430px; }
  .industry-cloud span { padding: 12px 14px; }
  .contact { min-height: 680px; }
  .contact-actions { flex-direction: column; }
  .button-large { font-size: 14px; }
  .site-footer { grid-template-columns: 1fr; gap: 45px; }
  .footer-links { flex-wrap: wrap; }
  .footer-meta { flex-direction: column; gap: 12px; }
}

@media (max-width: 430px) {
  .hero { min-height: 850px; }
  .hero-copy { margin-top: 250px; }
  .brand { grid-template-columns: 34px auto; }
  .brand-mark { width: 34px; height: 34px; }
  .brand-word { font-size: 18px; }
  .world-card { padding: 28px; }
  .system-map { width: 260px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .title-line > span { transform: none; }
  .motion-ready .reveal { opacity: 1; transform: none; }
}
