:root {
  --blue: #1468ed;
  --blue-dark: #0750c9;
  --blue-soft: #eaf3ff;
  --cyan: #24c7e8;
  --ink: #0b1831;
  --muted: #66738a;
  --line: #dfe7f2;
  --surface: #f5f8fc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(20, 68, 130, 0.12);
  --font-display: "Manrope", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.page-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.page-glow--one {
  width: 720px;
  height: 720px;
  right: -280px;
  top: 40px;
  background: radial-gradient(circle, rgba(28, 123, 255, 0.11), transparent 68%);
}

.page-glow--two {
  width: 500px;
  height: 500px;
  left: -280px;
  top: 640px;
  background: radial-gradient(circle, rgba(52, 207, 237, 0.08), transparent 70%);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 78px;
  background: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: height 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  height: 68px;
  border-color: rgba(213, 224, 239, 0.9);
  box-shadow: 0 8px 30px rgba(17, 55, 105, 0.06);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font: 800 21px/1 var(--font-display);
  letter-spacing: -0.7px;
}

.brand-mark,
.core-logo {
  position: relative;
  width: 29px;
  height: 29px;
  display: inline-block;
}

.brand-mark span,
.core-logo span {
  position: absolute;
  width: 8px;
  border-radius: 5px;
  transform: skewY(-34deg);
  background: var(--blue);
}

.brand-mark span:nth-child(1),
.core-logo span:nth-child(1) {
  height: 15px;
  left: 2px;
  top: 8px;
}

.brand-mark span:nth-child(2),
.core-logo span:nth-child(2) {
  height: 23px;
  left: 11px;
  top: 3px;
}

.brand-mark span:nth-child(3),
.core-logo span:nth-child(3) {
  height: 13px;
  left: 20px;
  top: 5px;
  background: var(--cyan);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  margin-right: 36px;
}

.nav-links a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: #44516a;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  min-height: 51px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid var(--blue);
  border-radius: 7px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 10px 26px rgba(20, 104, 237, 0.2);
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.button:hover {
  transform: translateY(-3px);
  background: var(--blue-dark);
  box-shadow: 0 14px 32px rgba(20, 104, 237, 0.28);
}

.button--small {
  min-height: 42px;
  padding: 0 17px;
  gap: 15px;
  font-size: 13px;
}

.button--white {
  color: var(--blue);
  border-color: var(--white);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(2, 20, 63, 0.2);
}

.button--white:hover {
  color: var(--blue-dark);
  background: #f7faff;
}

.menu-toggle {
  display: none;
}

.hero {
  padding: 162px 0 0;
  min-height: 780px;
  background:
    linear-gradient(90deg, rgba(216, 229, 245, 0.36) 1px, transparent 1px) center/80px 80px,
    linear-gradient(rgba(216, 229, 245, 0.27) 1px, transparent 1px) center/80px 80px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 75%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 75%, transparent 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid #d4e5fb;
  border-radius: 30px;
  color: var(--blue-dark);
  background: rgba(244, 249, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}

.pulse-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  animation: pulse 1.8s ease-out infinite;
}

.hero h1 {
  margin: 28px 0 24px;
  font: 800 clamp(50px, 5vw, 77px)/1.03 var(--font-display);
  letter-spacing: -4px;
}

.hero h1 span {
  color: var(--blue);
}

.hero-text {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 36px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  color: var(--blue);
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateY(4px);
}

.hero-tags {
  display: flex;
  gap: 20px;
  margin-top: 45px;
}

.hero-tags span {
  position: relative;
  padding-left: 14px;
  color: #8792a5;
  font-size: 11px;
  font-weight: 600;
}

.hero-tags span::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  left: 0;
  top: 4px;
  border-radius: 50%;
  background: #6f9ee7;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.visual-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid #d5e2f3;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 35px 90px rgba(31, 82, 145, 0.17);
}

.visual-topbar,
.code-topbar {
  height: 47px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 17px;
  color: #8490a2;
  border-bottom: 1px solid #e5ebf3;
  background: #f9fbfd;
  font: 500 10px var(--font-body);
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d2dae6;
}

.live-pill {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  color: #4e8b78;
  border: 1px solid #cee9e0;
  border-radius: 20px;
  font-size: 8px;
  font-weight: 700;
}

.live-pill i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #35bd8e;
}

.architecture {
  position: relative;
  height: 391px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, #f1f7ff 0, #fff 55%);
}

.grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background:
    linear-gradient(90deg, #eaf0f8 1px, transparent 1px) 0 0/35px 35px,
    linear-gradient(#eaf0f8 1px, transparent 1px) 0 0/35px 35px;
  -webkit-mask-image: radial-gradient(circle, black, transparent 72%);
  mask-image: radial-gradient(circle, black, transparent 72%);
}

.core-node {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  width: 125px;
  height: 125px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #c7ddfb;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 15px 45px rgba(20, 104, 237, 0.18), inset 0 0 0 9px #f6faff;
  transform: translate(-50%, -50%);
}

.core-node::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(20, 104, 237, 0.15);
  border-radius: 50%;
  animation: pulse 2.6s ease-out infinite;
}

.core-logo {
  transform: scale(0.78);
  margin-bottom: 4px;
}

.core-node strong,
.system-node strong {
  font: 700 11px var(--font-display);
}

.core-node small,
.system-node small {
  display: block;
  margin-top: 3px;
  color: #9aa4b5;
  font-size: 8px;
}

.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px dashed #c7dbf4;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 45s linear infinite;
}

.orbit--one {
  width: 280px;
  height: 280px;
}

.orbit--two {
  width: 410px;
  height: 410px;
  animation-direction: reverse;
}

.system-node {
  position: absolute;
  z-index: 3;
  min-width: 118px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px;
  border: 1px solid #dce6f2;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 20px rgba(25, 66, 118, 0.09);
  animation: float 5s ease-in-out infinite;
}

.node-icon {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--blue);
  background: var(--blue-soft);
  font: 700 11px monospace;
}

.node-cloud { left: 7%; top: 14%; }
.node-data { right: 6%; top: 17%; animation-delay: -1.2s; }
.node-api { left: 6%; bottom: 14%; animation-delay: -2.3s; }
.node-sec { right: 5%; bottom: 12%; animation-delay: -3.5s; }

.packet {
  position: absolute;
  z-index: 2;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(36, 199, 232, 0.13);
  animation: packet 4s ease-in-out infinite;
}

.packet--one { left: 31%; top: 36%; }
.packet--two { right: 31%; top: 60%; animation-delay: -1.3s; }
.packet--three { left: 38%; bottom: 18%; animation-delay: -2.8s; }

.visual-status {
  height: 67px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #e6ecf4;
  background: #fbfcfe;
}

.visual-status > div {
  display: grid;
  grid-template-columns: 7px 1fr;
  align-content: center;
  gap: 2px 8px;
  padding-left: 18px;
  border-right: 1px solid #e6ecf4;
}

.visual-status > div:last-child {
  border: 0;
}

.visual-status i {
  width: 6px;
  height: 6px;
  margin-top: 4px;
  border-radius: 50%;
  grid-row: span 2;
}

.status-blue { background: var(--blue); }
.status-cyan { background: var(--cyan); }
.status-purple { background: #8d68df; }
.visual-status span { color: #8994a6; font-size: 8px; }
.visual-status strong { font-size: 11px; }

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid #d8e6f5;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(21, 66, 122, 0.14);
  backdrop-filter: blur(10px);
  animation: float 5s ease-in-out infinite;
}

.floating-card > span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 12px;
  font-weight: 800;
}

.floating-card small,
.floating-card strong {
  display: block;
  font-size: 9px;
}

.floating-card small { margin-bottom: 2px; color: #929eaf; }
.floating-card--top { right: -27px; top: 75px; }
.floating-card--bottom { left: -29px; bottom: 84px; animation-delay: -2.5s; }
.floating-card--bottom > span { color: #21a876; background: #e9f9f3; }

.service-strip {
  margin-top: 92px;
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #dfe8f3;
}

.service-strip > span {
  color: #96a2b3;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.strip-items {
  display: flex;
  gap: 43px;
  font: 700 13px var(--font-display);
}

.strip-items span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.strip-items i {
  color: #a5b0c0;
  font: 500 8px var(--font-body);
}

.section {
  padding: 115px 0;
}

.services {
  background: var(--surface);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 52px;
}

.section-heading h2,
.capability-copy h2,
.contact h2 {
  margin: 12px 0 0;
  font: 750 clamp(34px, 4vw, 53px)/1.13 var(--font-display);
  letter-spacing: -2.2px;
}

.section-heading > p {
  max-width: 440px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.kicker {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 405px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 34px;
  border: 1px solid #e0e7f0;
  border-radius: 10px;
  background: var(--white);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #bed6f8;
  box-shadow: 0 22px 50px rgba(25, 68, 124, 0.11);
}

.service-card--featured {
  border-color: #c1d9fb;
  box-shadow: 0 14px 35px rgba(20, 104, 237, 0.08);
}

.card-number {
  position: absolute;
  right: 25px;
  top: 22px;
  color: #a7b2c1;
  font-size: 9px;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 10px;
  color: var(--blue);
  background: var(--blue-soft);
}

.service-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  max-width: 260px;
  margin: 0 0 14px;
  font: 700 20px/1.3 var(--font-display);
  letter-spacing: -0.5px;
}

.service-card p {
  margin: 0 0 19px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.service-card ul {
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  margin: 8px 0;
  padding-left: 16px;
  color: #536177;
  font-size: 11px;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 5px;
  height: 5px;
  border: 1.5px solid var(--blue);
  border-radius: 50%;
}

.service-card > a:not(.button) {
  width: fit-content;
  margin-top: auto;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}

.service-card > a span {
  display: inline-block;
  margin-left: 10px;
  transition: transform 0.2s ease;
}

.service-card > a:hover span {
  transform: translateX(5px);
}

.service-card--dark {
  justify-content: center;
  color: var(--white);
  border-color: #0b55c6;
  background: linear-gradient(135deg, #0d64e9, #073b9a);
  box-shadow: 0 18px 50px rgba(12, 84, 200, 0.2);
}

.service-card--dark:hover {
  border-color: #0b55c6;
}

.service-card--dark .kicker {
  color: #a9ccff;
}

.service-card--dark h3 {
  max-width: 290px;
  margin-top: 18px;
  font-size: 29px;
}

.service-card--dark p {
  max-width: 300px;
  color: #d5e6ff;
}

.service-card--dark .button {
  width: fit-content;
  margin-top: 8px;
}

.card-circuit {
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  bottom: -95px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
}

.card-circuit::before,
.card-circuit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.card-circuit::before { inset: 25px; }
.card-circuit::after { inset: 52px; }

.capabilities {
  background: var(--white);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 95px;
}

.capability-copy > p {
  max-width: 500px;
  margin: 25px 0 35px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.capability-list > div {
  display: flex;
  gap: 17px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.capability-list > div:last-child {
  border-bottom: 1px solid var(--line);
}

.capability-list > div > span {
  width: 32px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
}

.capability-list strong,
.capability-list small {
  display: block;
}

.capability-list strong {
  margin-bottom: 5px;
  font: 700 14px var(--font-display);
}

.capability-list small {
  color: var(--muted);
  font-size: 12px;
}

.code-window {
  overflow: hidden;
  border: 1px solid #cbd9ea;
  border-radius: 14px;
  background: #07142b;
  box-shadow: 0 32px 70px rgba(10, 36, 77, 0.19);
}

.code-window .code-topbar {
  color: #8998ad;
  border-color: #1c2e49;
  background: #0c1b34;
}

.code-topbar i {
  margin-left: auto;
  color: #44cd9b;
  font-size: 8px;
}

.code-window pre {
  min-height: 370px;
  margin: 0;
  padding: 34px 40px;
  color: #b9c9df;
  font: 500 13px/1.75 Consolas, monospace;
}

.c-purple { color: #c790ff; }
.c-blue { color: #6fb7ff; }

.deploy-result {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 24px 24px;
  padding: 15px;
  border: 1px solid #244163;
  border-radius: 8px;
  color: #e8f0fc;
  background: #10233e;
}

.checkmark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #5ae5ad;
  background: rgba(62, 213, 156, 0.13);
  font-size: 12px;
}

.deploy-result strong,
.deploy-result small {
  display: block;
  font-size: 10px;
}

.deploy-result small {
  margin-top: 4px;
  color: #8192a9;
}

.branch {
  margin-left: auto;
  padding: 5px 8px;
  color: #75aefa;
  border-radius: 4px;
  background: rgba(77, 145, 240, 0.1);
  font: 600 8px monospace;
}

.process {
  padding-top: 105px;
  background: var(--surface);
}

.section-heading--center {
  justify-content: center;
  text-align: center;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 70px;
}

.process-line::before {
  content: "";
  position: absolute;
  height: 1px;
  left: 8px;
  right: 8px;
  top: 44px;
  background: linear-gradient(90deg, var(--blue), #b6cff2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.3s ease 0.2s;
}

.process-line.visible::before {
  transform: scaleX(1);
}

.process-line article {
  position: relative;
}

.process-number {
  color: #9aa7b9;
  font-size: 9px;
}

.process-dot {
  position: relative;
  z-index: 2;
  width: 14px;
  height: 14px;
  margin: 26px 0 28px;
  border: 4px solid var(--surface);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px #85b5f7;
}

.process-line article:first-child .process-dot {
  box-shadow: 0 0 0 5px rgba(20, 104, 237, 0.12), 0 0 0 6px #85b5f7;
}

.process-line h3 {
  margin: 0 0 12px;
  font: 700 18px var(--font-display);
}

.process-line p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.stack {
  background: var(--white);
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(27, 65, 112, 0.06);
}

.stack-category {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.stack-category:last-child {
  border: 0;
}

.stack-category > span {
  display: block;
  margin-bottom: 26px;
  color: #9aa6b7;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
}

.tech-list {
  display: grid;
  gap: 19px;
}

.tech-list > div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #344157;
  font-size: 12px;
  font-weight: 600;
}

.tech-icon {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  font: 700 9px var(--font-display);
}

.react, .docker { color: #1687ba; background: #e5f7ff; }
.next { color: white; background: #10141a; }
.ts, .azure { color: white; background: #2e78cf; }
.vue, .node { color: #208766; background: #e4f8f1; }
.python { color: #2b6a98; background: #e5f1fa; }
.dotnet { color: #7651c8; background: #efe8ff; }
.java, .spark { color: #df603d; background: #fff0eb; }
.aws { color: #ec941f; background: #fff3df; }
.kube, .postgres { color: #3779d1; background: #e7f1ff; }
.mongo { color: #2b9958; background: #e7f7ed; }
.tensor { color: #ed8a20; background: #fff0df; }

.contact {
  padding: 25px 0 0;
  background: var(--white);
}

.contact-inner {
  position: relative;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(7, 77, 192, 0.95), rgba(10, 105, 235, 0.96)),
    linear-gradient(90deg, transparent 49%, rgba(255,255,255,.1) 50%, transparent 51%);
  text-align: center;
}

.contact-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background:
    linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px) 0 0/65px 65px,
    linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px) 0 0/65px 65px;
  -webkit-mask-image: radial-gradient(circle, black, transparent 75%);
  mask-image: radial-gradient(circle, black, transparent 75%);
}

.contact-inner > *:not(.contact-orbit) {
  position: relative;
  z-index: 2;
}

.contact-orbit {
  position: absolute;
  width: 660px;
  height: 660px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.contact-orbit::before,
.contact-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.contact-orbit::before { inset: 80px; }
.contact-orbit::after { inset: 160px; }

.kicker--light {
  color: #bcd8ff;
}

.contact h2 {
  margin-top: 18px;
  font-size: clamp(35px, 4vw, 51px);
}

.contact h2 span {
  color: #b9d8ff;
}

.contact p {
  margin: 18px 0 28px;
  color: #d9e9ff;
  font-size: 15px;
}

footer {
  padding: 80px 0 30px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  padding-bottom: 52px;
}

.brand--footer {
  margin-bottom: 20px;
}

.footer-grid > div:first-child p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 100px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links strong {
  margin-bottom: 6px;
  font: 700 12px var(--font-display);
}

.footer-links a {
  color: var(--muted);
  font-size: 12px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  color: #919caf;
  border-top: 1px solid var(--line);
  font-size: 10px;
}

.footer-bottom a {
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@keyframes pulse {
  0% { opacity: 0.8; transform: scale(0.7); }
  75%, 100% { opacity: 0; transform: scale(1.45); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes rotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes packet {
  0%, 100% { opacity: 0; transform: translate(0, 0); }
  20%, 80% { opacity: 1; }
  50% { transform: translate(40px, 25px); }
}

@media (max-width: 1050px) {
  .nav-links { gap: 20px; margin-right: 20px; }
  .hero-grid { grid-template-columns: 1fr 1.15fr; gap: 30px; }
  .hero h1 { font-size: 56px; }
  .hero-visual { transform: scale(0.92); transform-origin: right center; }
  .floating-card { display: none; }
  .capabilities-grid { gap: 50px; }
}

@media (max-width: 860px) {
  .container { width: min(100% - 36px, 680px); }
  .nav-cta { display: none; }
  .menu-toggle {
    position: relative;
    z-index: 102;
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 0;
    border-radius: 7px;
    background: var(--blue-soft);
    cursor: pointer;
  }
  .menu-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    background: var(--blue);
    transition: transform 0.25s ease;
  }
  .menu-toggle.active span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle.active span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    margin: 0;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links a { font: 700 23px var(--font-display); }
  .hero { padding-top: 135px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero h1 { font-size: clamp(50px, 10vw, 68px); }
  .hero-text { margin-inline: auto; }
  .hero-actions, .hero-tags { justify-content: center; }
  .hero-visual { max-width: 620px; margin: 30px auto 0; transform: none; }
  .service-strip { flex-direction: column; justify-content: center; gap: 20px; }
  .strip-items { flex-wrap: wrap; justify-content: center; }
  .section-heading { align-items: start; flex-direction: column; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .capabilities-grid { grid-template-columns: 1fr; }
  .process-line { grid-template-columns: repeat(2, 1fr); row-gap: 50px; }
  .process-line::before { display: none; }
  .stack-grid { grid-template-columns: repeat(2, 1fr); }
  .stack-category:nth-child(2) { border-right: 0; }
  .stack-category:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 28px); }
  .site-header { height: 68px; }
  .hero { padding-top: 115px; }
  .hero h1 { margin-top: 22px; font-size: clamp(42px, 14vw, 58px); letter-spacing: -3px; }
  .hero-text { font-size: 16px; }
  .hero-actions { flex-direction: column; gap: 22px; }
  .hero-tags { flex-wrap: wrap; margin-top: 35px; }
  .architecture { height: 320px; }
  .system-node { min-width: 102px; padding: 8px; }
  .node-cloud, .node-api { left: 2%; }
  .node-data, .node-sec { right: 2%; }
  .core-node { width: 105px; height: 105px; }
  .visual-status > div { padding-left: 8px; }
  .service-strip { margin-top: 55px; }
  .strip-items { gap: 17px; }
  .section { padding: 85px 0; }
  .section-heading h2, .capability-copy h2 { font-size: 36px; letter-spacing: -1.5px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 390px; }
  .code-window pre { padding: 25px 20px; font-size: 10px; }
  .process-line { grid-template-columns: 1fr; }
  .process-line article { padding-left: 40px; }
  .process-number { position: absolute; left: 0; top: 2px; }
  .process-dot { position: absolute; left: 1px; top: 26px; margin: 0; }
  .stack-grid { grid-template-columns: 1fr; }
  .stack-category { border-right: 0; border-bottom: 1px solid var(--line); }
  .stack-category:nth-child(3) { border-bottom: 1px solid var(--line); }
  .contact-inner { width: calc(100% - 20px); min-height: 450px; padding: 35px 20px; }
  .contact h2 { font-size: 34px; }
  .footer-grid { flex-direction: column; gap: 50px; }
  .footer-links { gap: 65px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
