:root {
  --ink: #f7fbff;
  --muted: rgba(247, 251, 255, 0.68);
  --panel: rgba(9, 14, 26, 0.66);
  --panel-strong: rgba(9, 14, 26, 0.9);
  --line: rgba(255, 255, 255, 0.16);
  --cyan: #35f4ff;
  --teal: #36e0ba;
  --pink: #ff4f8b;
  --amber: #ffd166;
  --violet: #8f6cff;
  --black: #05070d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 79, 139, 0.24), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(53, 244, 255, 0.2), transparent 30%),
    linear-gradient(135deg, #05070d 0%, #091326 50%, #05070d 100%);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}

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

.digital-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  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: 72px 72px;
  mask-image: linear-gradient(#000, transparent 86%);
  animation: gridFlow 18s linear infinite;
}

.topbar {
  position: fixed;
  z-index: 10;
  top: 18px;
  left: clamp(16px, 4vw, 54px);
  right: clamp(16px, 4vw, 54px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(5, 7, 13, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.brand img {
  display: block;
  width: clamp(132px, 14vw, 208px);
  height: 44px;
  object-fit: contain;
  padding: 6px 10px;
  border-radius: 10px;
  background: #000;
}

.topbar nav {
  display: flex;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.topbar nav a {
  position: relative;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.topbar nav a::after {
  display: none;
}

.topbar nav a:hover {
  color: #fff;
  border-color: rgba(53, 244, 255, 0.22);
  background: rgba(53, 244, 255, 0.08);
  transform: translateY(-1px);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  padding: 130px clamp(18px, 6vw, 86px) 70px;
  perspective: 1200px;
}

.hero-copy {
  max-width: 760px;
}

.kicker {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 6.4vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.8vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 900;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  color: #061016;
  box-shadow: 0 18px 48px rgba(53, 244, 255, 0.2);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.08);
}

.holo-stage {
  position: relative;
  min-height: 620px;
  transform-style: preserve-3d;
  animation: stageFloat 7s ease-in-out infinite;
}

.orbit {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  animation: none;
}

.orbit-card {
  position: absolute;
  width: 190px;
  min-height: 112px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(9, 14, 26, 0.78);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24), inset 0 0 34px rgba(53, 244, 255, 0.08);
  backdrop-filter: blur(14px);
  transform-style: preserve-3d;
  animation: readableCardFloat 5600ms ease-in-out infinite;
}

.orbit-card span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.orbit-card strong {
  display: block;
  margin-top: 16px;
  line-height: 1.25;
}

.card-web {
  top: 24px;
  left: 50%;
  transform: translateX(-50%) rotateZ(-2deg);
}

.card-app {
  top: 234px;
  right: 0;
  transform: rotateZ(-4deg);
  animation-delay: 400ms;
}

.card-social {
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%) rotateZ(4deg);
  animation-delay: 800ms;
}

.card-menu {
  top: 256px;
  left: 0;
  transform: rotateZ(2deg);
  animation-delay: 1200ms;
}

.holo-product {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 390px;
  height: 330px;
  transform-style: preserve-3d;
  transform: translate(-50%, -50%);
  animation: productDrift 7s ease-in-out infinite;
}

.holo-product::before {
  content: "";
  position: absolute;
  inset: 54px 38px;
  border: 1px solid rgba(53, 244, 255, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 48px rgba(53, 244, 255, 0.16), inset 0 0 32px rgba(53, 244, 255, 0.1);
  animation: productRing 4s ease-in-out infinite alternate;
}

.web-window,
.mini-phone,
.qr-card,
.data-pill {
  position: absolute;
  border: 1px solid var(--line);
  background: rgba(5, 7, 13, 0.78);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34), inset 0 0 38px rgba(53, 244, 255, 0.08);
  backdrop-filter: blur(14px);
  transform-style: preserve-3d;
}

.web-window {
  top: 54px;
  left: 18px;
  width: 260px;
  height: 174px;
  padding: 16px;
  border-radius: 18px;
  transform: rotateZ(10deg);
  animation: webFloat 5200ms ease-in-out infinite;
}

.window-dots {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}

.window-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
}

.window-dots i:nth-child(2) {
  background: var(--amber);
}

.window-dots i:nth-child(3) {
  background: var(--cyan);
}

.window-line {
  width: 64%;
  height: 8px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.window-line.wide {
  width: 88%;
  background: linear-gradient(90deg, var(--cyan), rgba(255, 255, 255, 0.18));
}

.window-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.window-grid span {
  height: 34px;
  border-radius: 10px;
  background: rgba(53, 244, 255, 0.13);
}

.mini-phone {
  right: 28px;
  top: 68px;
  width: 128px;
  height: 224px;
  padding: 12px;
  border: 7px solid #05070d;
  border-radius: 28px;
  transform: rotateZ(10deg);
  animation: phoneNodeFloat 4600ms ease-in-out infinite;
}

.mini-speaker {
  width: 42px;
  height: 5px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.mini-screen {
  display: grid;
  gap: 9px;
  height: calc(100% - 17px);
  padding: 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, #eef9f8, #dff5f3);
  color: #101114;
}

.mini-screen strong,
.mini-screen span {
  display: block;
}

.mini-screen button {
  align-self: end;
  min-height: 32px;
  border: 0;
  border-radius: 10px;
  background: #101114;
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
}

.qr-card {
  left: 164px;
  bottom: 12px;
  width: 112px;
  height: 112px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 16px;
  border-radius: 20px;
  transform: rotateZ(10deg);
  animation: qrFloat 5800ms ease-in-out infinite;
}

.qr-card span {
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.86);
}

.qr-card span:nth-child(2n) {
  background: var(--cyan);
}

.qr-card small {
  position: absolute;
  right: 12px;
  bottom: 8px;
  color: var(--amber);
  font-weight: 900;
}

.data-pill {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 900;
}

.pill-one {
  top: 18px;
  right: 30px;
  transform: none;
  animation: dataPulse 2500ms ease-in-out infinite;
}

.pill-two {
  left: 0;
  top: 246px;
  transform: none;
  animation: dataPulse 2500ms ease-in-out infinite 450ms;
}

.pill-three {
  right: 0;
  bottom: 28px;
  transform: none;
  animation: dataPulse 2500ms ease-in-out infinite 900ms;
}

.holo-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(53, 244, 255, 0.38);
  border-radius: 50%;
  transform-style: preserve-3d;
}

.ring-one {
  width: 430px;
  height: 430px;
  transform: translate(-50%, -50%) rotateX(72deg);
  animation: ringPulse 3.5s ease-in-out infinite;
}

.ring-two {
  width: 560px;
  height: 560px;
  transform: translate(-50%, -50%) rotateX(76deg);
  animation: ringPulse 4.8s ease-in-out infinite reverse;
}

.signal-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.signal-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 18px 0;
  animation: signalMove 22s linear infinite;
}

.signal-track span {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
}

.section {
  width: min(1200px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-title {
  max-width: 740px;
  margin-bottom: 38px;
}

.service-cloud,
.system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  perspective: 1000px;
}

.tilt-card,
.system-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(53, 244, 255, 0.12), transparent 45%),
    var(--panel);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
  transform-style: preserve-3d;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
  backdrop-filter: blur(14px);
}

.tilt-card:hover,
.system-grid article:hover {
  border-color: rgba(53, 244, 255, 0.5);
  box-shadow: 0 30px 90px rgba(53, 244, 255, 0.11);
}

.tilt-card span {
  color: var(--amber);
  font-weight: 900;
}

.tilt-card.active {
  background:
    linear-gradient(135deg, rgba(255, 79, 139, 0.24), transparent 55%),
    rgba(12, 17, 32, 0.82);
}

.order-lab {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  padding: 96px clamp(18px, 6vw, 86px);
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 30%, rgba(53, 244, 255, 0.12), transparent 28%),
    radial-gradient(circle at 72% 60%, rgba(255, 209, 102, 0.08), transparent 30%),
    rgba(255, 255, 255, 0.04);
}

.order-copy {
  max-width: 760px;
}

.order-copy h2 {
  max-width: 820px;
}

.order-copy p {
  max-width: 720px;
}

.order-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.order-features span {
  padding: 12px 16px;
  border: 1px solid rgba(53, 244, 255, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(5, 7, 13, 0.38);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 24px rgba(53, 244, 255, 0.04);
  font-weight: 900;
}

.qr-flow {
  width: min(1200px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.flow-grid article {
  position: relative;
  min-height: 240px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(150deg, rgba(53, 244, 255, 0.16), transparent 45%),
    var(--panel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.flow-grid article::after {
  content: "";
  position: absolute;
  inset: auto -40% -36% 20%;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 79, 139, 0.24), transparent 68%);
  animation: cardGlow 4s ease-in-out infinite alternate;
}

.flow-grid span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 34px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: rgba(53, 244, 255, 0.16);
  color: var(--cyan);
  font-weight: 900;
}

.kitchen-board {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(53, 244, 255, 0.26);
  border-radius: 24px;
  background: rgba(5, 7, 13, 0.72);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34), inset 0 0 80px rgba(53, 244, 255, 0.06);
  backdrop-filter: blur(18px);
}

.board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.board-head strong {
  font-size: 24px;
}

.board-head span {
  color: var(--cyan);
  font-weight: 900;
}

.ticket {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  animation: ticketPulse 2600ms ease-in-out infinite;
}

.ticket span {
  color: var(--amber);
  font-weight: 900;
}

.ticket small {
  color: var(--muted);
  font-weight: 800;
}

.ticket.new {
  border-color: rgba(53, 244, 255, 0.45);
}

.ticket.cooking {
  animation-delay: 350ms;
}

.ticket.ready {
  animation-delay: 700ms;
}

.device-stack {
  position: relative;
  min-height: 650px;
  perspective: 1200px;
}

.phone-3d {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(360px, 88vw);
  min-height: 610px;
  padding: 18px;
  border: 10px solid #080b12;
  border-radius: 42px;
  background: #111827;
  box-shadow: 0 44px 110px rgba(0, 0, 0, 0.42), 0 0 80px rgba(53, 244, 255, 0.12);
  transform: translate(-50%, -50%) rotateX(8deg) rotateY(-18deg) rotateZ(3deg);
  transform-style: preserve-3d;
  animation: phoneHover 5.5s ease-in-out infinite;
}

.phone-camera {
  width: 82px;
  height: 7px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: #283244;
}

.app-screen {
  display: grid;
  gap: 9px;
  padding: 12px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(232, 247, 245, 0.94)),
    #eef9f8;
  color: #101114;
}

.app-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 15px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(135deg, #0f8b7d, #14204c);
  color: #fff;
  box-shadow: 0 16px 34px rgba(13, 130, 120, 0.22);
}

.app-head span,
.app-head strong {
  display: block;
}

.app-head span {
  font-size: 12px;
  opacity: 0.82;
  font-weight: 800;
}

.app-head strong {
  margin-top: 3px;
  font-size: 17px;
  line-height: 1.05;
}

.app-head small {
  flex: 0 0 auto;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
  font-size: 10px;
  font-weight: 900;
}

.category-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.category-row span,
.product-line,
.cart-panel {
  border-radius: 16px;
  background: #fff;
}

.category-row span {
  padding: 8px 6px;
  text-align: center;
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(5, 7, 13, 0.04);
}

.category-row span:first-child {
  background: #101114;
  color: #fff;
}

.product-line {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  box-shadow: 0 12px 26px rgba(5, 7, 13, 0.055);
}

.product-line img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(5, 7, 13, 0.12);
}

.product-line span {
  display: block;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
}

.product-line small {
  display: block;
  margin-top: 4px;
  color: rgba(16, 17, 20, 0.58);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.25;
}

.product-line strong {
  flex: 0 0 auto;
  font-size: 12px;
}

.cart-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 13px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 209, 102, 0.16), transparent 36%),
    #101114;
  color: #fff;
}

.cart-panel small {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 800;
}

.cart-panel strong {
  display: block;
  margin-top: 3px;
  font-size: 15px;
}

.cart-panel button {
  min-height: 38px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffd166, #ffb84d);
  color: #101114;
  font: inherit;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(255, 209, 102, 0.28);
}

.floating-panel {
  position: absolute;
  z-index: 2;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel-strong);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
  font-weight: 900;
  backdrop-filter: blur(12px);
  animation: floatBadge 4s ease-in-out infinite;
}

.panel-a {
  top: 12%;
  left: 2%;
}

.panel-b {
  top: 38%;
  right: 2%;
  animation-delay: 600ms;
}

.panel-c {
  bottom: 10%;
  left: 8%;
  animation-delay: 1100ms;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1200px, calc(100% - 36px));
  margin: 0 auto 80px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  backdrop-filter: blur(16px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px) scale(0.98);
  transition: opacity 760ms ease, transform 760ms ease;
}

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

@keyframes gridFlow {
  to {
    background-position: 72px 72px;
  }
}

@keyframes stageFloat {
  50% {
    transform: translateY(-18px) rotateX(2deg);
  }
}

@keyframes orbitSpin {
  to {
    transform: rotateY(360deg);
  }
}

@keyframes ringPulse {
  50% {
    opacity: 0.45;
    scale: 1.06;
  }
}

@keyframes productDrift {
  50% {
    transform: translate(-50%, -53%);
  }
}

@keyframes productRing {
  to {
    transform: scale(1.08) rotate(14deg);
    opacity: 0.62;
  }
}

@keyframes webFloat {
  50% {
    transform: rotateZ(8deg) translate3d(8px, -12px, 0);
  }
}

@keyframes phoneNodeFloat {
  50% {
    transform: rotateZ(7deg) translate3d(-8px, -14px, 0);
  }
}

@keyframes qrFloat {
  50% {
    transform: rotateZ(8deg) translate3d(8px, -10px, 0);
  }
}

@keyframes readableCardFloat {
  50% {
    translate: 0 -10px;
  }
}

@keyframes dataPulse {
  50% {
    border-color: rgba(53, 244, 255, 0.54);
    box-shadow: 0 0 34px rgba(53, 244, 255, 0.2);
  }
}

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

@keyframes phoneHover {
  50% {
    transform: translate(-50%, -53%) rotateX(10deg) rotateY(-10deg) rotateZ(0deg);
  }
}

@keyframes floatBadge {
  50% {
    transform: translateY(-14px);
  }
}

@keyframes cardGlow {
  to {
    transform: translate3d(-18px, -12px, 0) scale(1.08);
  }
}

@keyframes ticketPulse {
  50% {
    transform: translateX(6px);
    border-color: rgba(53, 244, 255, 0.42);
  }
}

@media (max-width: 980px) {
  .topbar {
    position: absolute;
    flex-direction: column;
  }

  .topbar nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero,
  .order-lab {
    grid-template-columns: 1fr;
  }

  .holo-stage {
    min-height: 560px;
  }

  .service-cloud,
  .system-grid,
  .flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ticket {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar nav {
    gap: 12px;
    font-size: 12px;
  }

  .hero {
    padding-top: 180px;
  }

  .holo-stage {
    min-height: 500px;
    scale: 0.84;
  }

  .hero-actions,
  .contact {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .service-cloud,
  .system-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .device-stack {
    min-height: 620px;
  }

  .floating-panel {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
