:root {
  --bg: #070b14;
  --bg-alt: #0d1420;
  --card: rgba(14, 24, 38, 0.58);
  --card-strong: rgba(12, 21, 34, 0.82);
  --text: #edf3ff;
  --muted: #9ca9c0;
  --line: rgba(167, 198, 255, 0.14);
  --accent: #72b7ff;
  --accent-2: #8a7dff;
  --accent-3: #65ffd1;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --container: min(1220px, calc(100vw - 48px));
  --header-h: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 20%, rgba(114, 183, 255, 0.12), transparent 32%),
    radial-gradient(circle at 80% 0%, rgba(138, 125, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #05070d 0%, #07111c 35%, #08111d 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

body.nav-scrolled .site-header {
  background: rgba(6, 11, 19, 0.76);
  border-color: rgba(148, 190, 255, 0.14);
  backdrop-filter: blur(18px);
}

body.preload-lock {
  overflow: hidden;
}

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

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

button,
a,
.tilt-card,
.magnetic {
  cursor: none;
}

.section-shell {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 112px 0;
}

.page-noise,
.page-glow,
.scroll-progress,
.cursor {
  pointer-events: none;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 2;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.45) 0.6px, transparent 0.7px),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.22) 0.6px, transparent 0.7px);
  background-size: 18px 18px;
  mix-blend-mode: soft-light;
}

.page-glow {
  position: fixed;
  inset: auto;
  z-index: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
}

.page-glow--one {
  top: -180px;
  left: -120px;
  background: rgba(114, 183, 255, 0.65);
}

.page-glow--two {
  right: -160px;
  top: 20vh;
  background: rgba(138, 125, 255, 0.5);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform-origin: left;
  transform: scaleX(0);
  z-index: 50;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  box-shadow: 0 0 20px rgba(114, 183, 255, 0.6);
}

.cursor {
  position: fixed;
  z-index: 60;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
}

.cursor--dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 18px rgba(114, 183, 255, 0.65);
}

.cursor--ring {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(185, 214, 255, 0.35);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(6px);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  gap: 18px;
  text-align: center;
  background: radial-gradient(circle at center, rgba(10, 21, 37, 0.96), #030509 70%);
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 25%, transparent 75%);
}

.preloader__brand {
  position: relative;
  display: flex;
  gap: 12px;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.preloader__brand span {
  opacity: 0;
  animation: preload-letter 1.2s ease forwards;
}

.preloader__brand span:nth-child(2) { animation-delay: 0.08s; }
.preloader__brand span:nth-child(3) { animation-delay: 0.16s; }
.preloader__brand span:nth-child(4) { animation-delay: 0.24s; }
.preloader__brand span:nth-child(5) { animation-delay: 0.32s; }

.preloader p {
  position: relative;
  margin: 0;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: min(calc(100vw - 32px), 1260px);
  margin: 16px auto 0;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: 0.35s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(145, 194, 255, 0.22);
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(20, 37, 61, 0.9), rgba(6, 11, 19, 0.8));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 12px 26px rgba(0, 0, 0, 0.35);
}

.brand__mark span {
  display: block;
  position: absolute;
  width: 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-3), var(--accent));
  border-radius: 999px;
}

.brand__mark span:nth-child(1) {
  transform: rotate(60deg) translateX(-6px);
}

.brand__mark span:nth-child(2) {
  transform: rotate(-60deg) translateX(-6px);
}

.brand__mark span:nth-child(3) {
  width: 18px;
  transform: translateY(7px);
}

.brand__text {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand__text strong {
  font-size: 1rem;
  letter-spacing: 0.18em;
}

.brand__text small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav a {
  transition: color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.button {
  --button-bg: linear-gradient(135deg, rgba(114, 183, 255, 0.92), rgba(138, 125, 255, 0.92));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(130, 191, 255, 0.15);
  background: var(--button-bg);
  box-shadow: 0 12px 30px rgba(87, 126, 255, 0.3);
  color: white;
  font-weight: 600;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(87, 126, 255, 0.36);
}

.button--ghost {
  --button-bg: rgba(255, 255, 255, 0.02);
  color: var(--text);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.glass-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(15, 23, 35, 0.65), rgba(10, 17, 29, 0.9));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.glass-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(158, 198, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(114, 183, 255, 0.78), transparent);
}

.hero {
  position: relative;
  padding-top: 80px;
  min-height: calc(100vh - 32px);
}

.hero__grid,
.hero__beam {
  position: absolute;
  pointer-events: none;
}

.hero__grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(circle at 50% 30%, black 25%, transparent 85%);
}

.hero__beam {
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
}

.hero__beam--one {
  top: 10%;
  left: -80px;
  background: rgba(114, 183, 255, 0.6);
}

.hero__beam--two {
  right: -120px;
  top: 18%;
  background: rgba(138, 125, 255, 0.5);
}

.hero__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 42px;
  align-items: center;
}

.hero__content,
.hero__visual {
  position: relative;
  z-index: 1;
}

.hero__title {
  margin: 18px 0 20px;
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero__title span {
  display: block;
  color: transparent;
  background: linear-gradient(135deg, #ffffff 20%, #b2d6ff 55%, #8d87ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero__copy {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.75;
}

.hero__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__mini-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-stat {
  padding: 22px 20px;
}

.hero-stat strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1;
}

.hero-stat span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.hero__visual {
  display: grid;
  gap: 18px;
  justify-items: end;
}

.robot-stage {
  --rx: 0deg;
  --ry: 0deg;
  --tx: 0px;
  --ty: 0px;
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 0.84;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(166, 205, 255, 0.16);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.18), transparent 26%),
    radial-gradient(circle at 20% 20%, rgba(114, 183, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(11, 16, 26, 0.9), rgba(5, 8, 14, 1));
  box-shadow:
    0 38px 120px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform-style: preserve-3d;
  transform: perspective(1400px) rotateX(var(--rx)) rotateY(var(--ry)) translate3d(var(--tx), var(--ty), 0);
  transition: transform 0.22s ease-out, box-shadow 0.35s ease;
}

.robot-stage:hover {
  box-shadow:
    0 46px 140px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(114, 183, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.robot-stage__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  transform: scale(1.03) translateZ(34px);
  filter: contrast(1.08) saturate(0.76) brightness(0.9);
}

.robot-stage__halo,
.robot-stage__ring,
.robot-stage__scan,
.robot-stage__chrome,
.robot-stage__mask,
.robot-stage__spec {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.robot-stage__halo {
  inset: 10% 8% 10% 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 188, 255, 0.26) 0%, rgba(109, 188, 255, 0.14) 35%, transparent 70%);
  filter: blur(20px);
  transform: translateZ(18px);
}

.robot-stage__ring {
  inset: auto;
  border-radius: 50%;
  border: 1px solid rgba(131, 200, 255, 0.16);
}

.robot-stage__ring--one {
  width: 360px;
  height: 360px;
  left: 50%;
  top: 19%;
  transform: translateX(-50%) translateZ(20px);
}

.robot-stage__ring--two {
  width: 520px;
  height: 520px;
  left: 50%;
  top: 6%;
  transform: translateX(-50%) translateZ(8px);
  border-color: rgba(138, 125, 255, 0.12);
}

.robot-stage__scan {
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 22%,
    rgba(255, 255, 255, 0.06) 33%,
    rgba(114, 183, 255, 0.12) 50%,
    rgba(255, 255, 255, 0.02) 64%,
    transparent 78%
  );
  mix-blend-mode: screen;
  animation: scan-shift 8s linear infinite;
  transform: translateZ(44px);
}

.robot-stage__chrome {
  background:
    linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.18) 38%, transparent 52%),
    linear-gradient(65deg, transparent 22%, rgba(255, 255, 255, 0.11) 40%, transparent 58%),
    radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.18), transparent 24%);
  mix-blend-mode: screen;
  opacity: 0.75;
  transform: translateZ(50px);
}

.robot-stage__spec {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  width: 18%;
  height: 78%;
  top: 8%;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.5;
  transform: translateZ(54px) rotate(8deg);
}

.robot-stage__spec--one {
  left: 18%;
}

.robot-stage__spec--two {
  right: 18%;
  opacity: 0.3;
}

.robot-stage__mask {
  background:
    radial-gradient(circle at 50% 68%, transparent 0 22%, rgba(6, 9, 16, 0.15) 36%, rgba(6, 9, 16, 0.88) 82%),
    linear-gradient(90deg, rgba(5, 8, 14, 0.84), transparent 22%, transparent 78%, rgba(5, 8, 14, 0.84));
  transform: translateZ(60px);
}

.robot-stage__data {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 16px 18px;
  max-width: 260px;
  transform: translateZ(74px);
}

.robot-stage__data span {
  display: inline-block;
  margin-bottom: 6px;
  color: rgba(180, 214, 255, 0.86);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.robot-stage__data strong {
  font-size: 1rem;
}

.hero__floating-card {
  max-width: 360px;
  padding: 20px 22px;
}

.hero__floating-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: rgba(176, 211, 255, 0.84);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
}

.hero__floating-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.45;
}

.hero__floating-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.hero__marquee {
  position: relative;
  margin-top: 48px;
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(165, 196, 255, 0.1);
  border-bottom: 1px solid rgba(165, 196, 255, 0.1);
  background: rgba(7, 11, 18, 0.55);
}

.hero__marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 38px;
  min-width: max-content;
  padding-left: 38px;
  color: rgba(235, 243, 255, 0.76);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.88rem;
  animation: marquee 26s linear infinite;
}

.hero__marquee-track span::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  box-shadow: 0 0 16px rgba(114, 183, 255, 0.55);
}

.intro-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: 54px 0 28px;
}

.intro-block__copy h2,
.section-heading h2,
.showcase__content h2,
.contact__intro h2 {
  margin: 14px 0 14px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.intro-block__copy p,
.section-heading p,
.showcase__content p,
.contact__intro p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.intro-block__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(163, 200, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(225, 237, 255, 0.85);
  backdrop-filter: blur(14px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.service-grid,
.process-grid,
.contact__grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.process-card,
.contact-card,
.feature-item {
  padding: 28px;
}

.service-card__index,
.process-card__number,
.contact-card__label {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(172, 211, 255, 0.82);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.service-card h3,
.process-card h3,
.contact-card strong,
.contact-card a,
.feature-item strong {
  margin: 0 0 12px;
  display: block;
  font-size: 1.24rem;
}

.service-card p,
.process-card p,
.contact-card p,
.feature-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.service-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: rgba(231, 239, 255, 0.88);
}

.service-card li {
  position: relative;
  padding-left: 18px;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 28px;
  align-items: center;
}

.showcase__media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.54fr;
  gap: 18px;
}

.media-panel,
.media-panel img {
  width: 100%;
  height: 100%;
}

.media-panel {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 30px;
  border: 1px solid rgba(165, 201, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.media-panel--large {
  min-height: 620px;
}

.media-panel-stack {
  display: grid;
  gap: 18px;
}

.media-panel img {
  object-fit: cover;
  transition: transform 0.8s ease;
}

.media-panel:hover img,
.media-panel:focus-within img {
  transform: scale(1.06);
}

.feature-list {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

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

.contact__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.contact-card a {
  color: var(--text);
}

.contact-card a + a {
  margin-top: 6px;
}

.contact__cta {
  margin-top: 22px;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.contact__cta h3 {
  margin: 10px 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.contact__cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  max-width: 720px;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer {
  padding: 40px 0 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(203, 219, 244, 0.7);
  font-size: 0.95rem;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.site-footer p {
  margin: 0;
}

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

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

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.22s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.tilt-card:hover {
  border-color: rgba(114, 183, 255, 0.22);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
}

@keyframes preload-letter {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@keyframes scan-shift {
  0% { transform: translate3d(0, -22%, 44px); }
  50% { transform: translate3d(0, 12%, 44px); }
  100% { transform: translate3d(0, -22%, 44px); }
}

@media (max-width: 1180px) {
  .hero__shell,
  .showcase,
  .intro-block,
  .contact__cta {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    justify-items: stretch;
  }

  .hero__floating-card {
    max-width: none;
  }

  .showcase__media {
    order: 2;
  }

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

@media (max-width: 980px) {
  .site-header {
    width: var(--container);
    padding: 16px 18px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    padding-top: 54px;
  }

  .hero__mini-grid,
  .service-grid,
  .process-grid,
  .contact__grid {
    grid-template-columns: 1fr 1fr;
  }

  .media-panel--large {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  body {
    cursor: auto;
  }

  button,
  a,
  .tilt-card,
  .magnetic {
    cursor: pointer;
  }

  .cursor {
    display: none;
  }

  .section {
    padding: 86px 0;
  }

  .site-header {
    border-radius: 24px;
    margin-top: 14px;
  }

  .brand__text small {
    display: none;
  }

  .hero__title {
    max-width: none;
  }

  .hero__mini-grid,
  .service-grid,
  .process-grid,
  .contact__grid,
  .showcase__media {
    grid-template-columns: 1fr;
  }

  .robot-stage {
    aspect-ratio: 0.9;
  }

  .intro-block__chips,
  .contact__actions,
  .hero__actions {
    justify-content: flex-start;
  }

  .contact__cta {
    padding: 22px;
  }
}
