:root {
  --accent: #2f7cff;
  --accent-strong: #1563f5;
  --accent-soft: rgba(47, 124, 255, 0.14);
  --navy: #08111f;
  --navy-soft: #101a2b;
  --bg: #f6f3ed;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --card: rgba(255, 255, 255, 0.82);
  --card-strong: rgba(255, 255, 255, 0.92);
  --ink: #0d1726;
  --muted: #5f6c7e;
  --line: rgba(25, 40, 66, 0.1);
  --warm: #d8c4ab;
  --soft-white: #f8fbff;
  --shadow: 0 30px 80px rgba(10, 23, 44, 0.12);
  --shadow-soft: 0 18px 42px rgba(10, 23, 44, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Aptos, "Segoe UI", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(47, 124, 255, 0.08), transparent 24%),
    radial-gradient(circle at 86% 14%, rgba(216, 196, 171, 0.18), transparent 25%),
    linear-gradient(180deg, #f8f5ef 0%, #f2ede5 44%, #f8f5ef 100%);
}

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

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

.site-shell {
  width: min(100%, 1600px);
  margin: 0 auto;
  padding-bottom: 64px;
}

.topbar {
  position: sticky;
  top: 10px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 18px 18px 24px;
  padding: 16px 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(10, 23, 44, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #69a6ff);
  color: #fff;
  font-family: "Segoe UI Semibold", "Aptos Display", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-family: "Aptos Display", "Segoe UI Semibold", sans-serif;
  font-size: 1rem;
}

.brand-text span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
}

.nav a {
  transition: color 180ms ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 18px 32px rgba(47, 124, 255, 0.28);
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 26px rgba(10, 23, 44, 0.08);
}

.topbar-cta {
  min-width: 146px;
}

.hero {
  position: relative;
  min-height: min(900px, calc(100vh - 104px));
  padding: 36px 32px 72px;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) blur(1px);
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 12, 22, 0.9) 0%, rgba(6, 12, 22, 0.82) 30%, rgba(6, 12, 22, 0.42) 58%, rgba(6, 12, 22, 0.2) 82%, rgba(6, 12, 22, 0.08) 100%),
    linear-gradient(180deg, rgba(17, 39, 74, 0.22), rgba(13, 18, 29, 0.08));
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 520px);
  align-items: center;
  gap: 28px;
  min-height: inherit;
}

.hero-copy {
  max-width: 720px;
  padding: 72px 0 0 42px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.cta-panel h2 {
  margin: 0;
  font-family: "Aptos Display", "Segoe UI Variable Display", "Trebuchet MS", sans-serif;
  line-height: 0.96;
}

.hero h1 {
  max-width: 9ch;
  color: var(--soft-white);
  font-size: clamp(3.5rem, 7vw, 6.6rem);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

.hero .eyebrow {
  color: #97beff;
}

.lead {
  max-width: 34rem;
  margin: 22px 0 0;
  color: rgba(243, 248, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.75;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 24px;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.proof-row span {
  padding: 10px 14px;
  border: 1px solid rgba(151, 190, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(245, 249, 255, 0.94);
  backdrop-filter: blur(12px);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 720px;
}

.hero-machine {
  position: relative;
  z-index: 2;
  width: min(100%, 480px);
  object-fit: contain;
  filter: drop-shadow(0 24px 70px rgba(0, 0, 0, 0.28));
}

.hero-machine-glow {
  position: absolute;
  inset: auto 10% 10% 10%;
  height: 220px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(47, 124, 255, 0.28), transparent 54%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.22), transparent 68%);
  filter: blur(10px);
}

.floating-ui-card {
  position: absolute;
  z-index: 3;
  padding: 12px 16px;
  border: 1px solid rgba(151, 190, 255, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 44px rgba(5, 15, 34, 0.14);
  backdrop-filter: blur(16px);
  color: var(--soft-white);
  font-size: 0.92rem;
  font-weight: 700;
  animation: floatCard 5s ease-in-out infinite;
}

.floating-ui-card::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(47, 124, 255, 0.8);
}

.card-track {
  top: 16%;
  left: 2%;
}

.card-unlock {
  top: 30%;
  right: -2%;
  animation-delay: 0.8s;
}

.card-checkout {
  bottom: 24%;
  left: 0;
  animation-delay: 1.3s;
}

.card-sales {
  right: 4%;
  bottom: 14%;
  animation-delay: 1.7s;
}

.section,
.trust-band {
  position: relative;
  z-index: 1;
}

.section {
  padding: 64px 0;
}

.quick-intro {
  padding-top: 24px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 30px;
  padding: 0 32px;
}

.section-heading h2,
.cta-panel h2 {
  max-width: 12ch;
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.section-heading p,
.catalog-note,
.visual-card p,
.machine-card p,
.benefit-card p,
.industry-card p,
.feature-list p,
.cta-panel p,
.contact-form label,
.intro-card p,
.ai-copy p,
.ar-copy p {
  color: var(--muted);
}

.quick-intro-grid,
.property-visuals-grid,
.machine-grid,
.benefits-grid,
.industry-grid {
  display: grid;
  gap: 18px;
  margin: 0 16px;
}

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

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

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

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

.intro-card,
.machine-card,
.benefit-card,
.industry-card,
.dashboard-card,
.visual-card,
.trust-band,
.cta-panel {
  box-shadow: var(--shadow-soft);
}

.intro-card,
.machine-card,
.benefit-card,
.industry-card,
.visual-card {
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(250, 252, 255, 0.92));
}

.intro-card {
  padding: 28px;
}

.intro-card strong {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.intro-card h3,
.machine-card h3,
.benefit-card h3,
.industry-card h3,
.feature-list h3,
.visual-card h3,
.ai-copy h3,
.ar-copy h3 {
  margin: 0 0 12px;
  font-family: "Aptos Display", "Segoe UI Variable Display", "Trebuchet MS", sans-serif;
  line-height: 1.12;
}

.intro-card h3,
.machine-card h3,
.benefit-card h3,
.industry-card h3,
.visual-card h3 {
  font-size: 1.4rem;
}

.catalog-note {
  max-width: 64ch;
  margin: 14px 0 0;
  line-height: 1.75;
}

.visual-card {
  overflow: hidden;
  padding: 0;
  background: transparent;
}

.visual-card img {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
}

.visual-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 28px;
  color: #fff;
  background: linear-gradient(180deg, rgba(7, 12, 22, 0.02), rgba(7, 12, 22, 0.82));
}

.visual-overlay h3,
.media-overlay h3 {
  margin: 0 0 10px;
  color: #fff;
}

.visual-overlay p,
.media-overlay p {
  margin: 0;
  color: rgba(244, 248, 255, 0.88);
}

.visual-overlay-card,
.media-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.machine-card img,
.dashboard-card img {
  width: 100%;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #eef4ff);
}

.machine-card img {
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
}

.machine-card p,
.benefit-card p,
.feature-list p,
.industry-card p {
  margin: 0;
  line-height: 1.75;
}

.machine-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.machine-card.feature {
  transform: translateY(-10px);
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(239, 246, 255, 0.98));
  box-shadow: 0 24px 54px rgba(47, 124, 255, 0.12);
}

.secondary-grid {
  margin-top: 18px;
}

.trust-band {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 8px 16px 78px;
  padding: 22px 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(249, 252, 255, 0.88));
}

.trust-band p {
  margin: 0;
  font-weight: 800;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
}

.logo-strip span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 24px rgba(10, 23, 44, 0.06);
}

.split-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 32px;
  margin: 0 16px;
}

.dashboard-card {
  padding: 22px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 255, 0.92));
}

.dashboard-card img {
  aspect-ratio: 1.26 / 1;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-list article {
  padding: 18px 0 20px;
  border-bottom: 1px solid var(--line);
}

.feature-list article:last-child {
  border-bottom: 0;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 17, 31, 0.14), rgba(8, 17, 31, 0.72));
}

.media-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 26px 28px 28px;
}

.ar-panel,
.ai-stage,
.cta-panel {
  display: grid;
  gap: 32px;
  margin: 0 16px;
  border-radius: 36px;
}

.ar-panel {
  grid-template-columns: 1fr 420px;
  align-items: center;
  padding: 36px 40px;
  background:
    radial-gradient(circle at top right, rgba(47, 124, 255, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 255, 0.94));
}

.ar-copy h3,
.ai-copy h3 {
  font-size: 2rem;
}

.ar-copy p,
.ai-copy p {
  line-height: 1.8;
}

.ar-steps {
  margin: 0 0 26px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 700;
}

.ar-visual {
  display: flex;
  justify-content: center;
}

.phone-frame {
  position: relative;
  width: 310px;
  height: 610px;
  padding: 16px;
  border-radius: 38px;
  background: linear-gradient(180deg, #221714, #0e0a09);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.2);
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 2;
  width: 120px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 0 0 16px 16px;
  background: #0b0807;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 70% 20%, rgba(47, 124, 255, 0.22), transparent 24%),
    linear-gradient(180deg, #f7efe4, #efe2d0);
}

.room-grid {
  position: absolute;
  inset: 58% 0 0;
  background:
    linear-gradient(rgba(73, 56, 45, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 56, 45, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  transform: perspective(500px) rotateX(70deg);
  transform-origin: top center;
}

.ar-machine {
  position: absolute;
  left: 50%;
  bottom: 90px;
  width: 122px;
  transform: translateX(-50%);
  animation: hoverMachine 3.8s ease-in-out infinite;
}

.ar-machine-top {
  height: 18px;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, #1e1715, #080707);
}

.ar-machine-body {
  height: 214px;
  margin-top: 3px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, #1a1311, #090707);
  box-shadow: inset 0 0 0 2px rgba(241, 242, 242, 0.12), 0 18px 30px rgba(0, 0, 0, 0.18);
}

.scan-ring {
  position: absolute;
  left: 50%;
  bottom: 132px;
  width: 180px;
  height: 180px;
  transform: translateX(-50%);
  border: 2px solid rgba(47, 124, 255, 0.28);
  border-radius: 50%;
  animation: scanPulse 2.8s ease-out infinite;
}

.scan-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, #9fcbff, var(--accent));
  box-shadow: 0 0 16px rgba(47, 124, 255, 0.56);
}

.dot-one {
  top: 140px;
  right: 58px;
  animation: orbitFloat 3s ease-in-out infinite;
}

.dot-two {
  top: 250px;
  left: 56px;
  animation: orbitFloat 3s ease-in-out infinite 0.6s;
}

.dot-three {
  right: 78px;
  bottom: 170px;
  animation: orbitFloat 3s ease-in-out infinite 1.1s;
}

.animation-section {
  overflow: hidden;
}

.ai-stage {
  grid-template-columns: 1fr 360px;
  align-items: center;
  min-height: 620px;
  padding: 40px 54px;
  background:
    radial-gradient(circle at 25% 40%, rgba(216, 196, 171, 0.12), transparent 26%),
    radial-gradient(circle at 74% 26%, rgba(47, 124, 255, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 255, 0.94));
}

.ai-machine {
  position: relative;
  z-index: 2;
  width: 360px;
  margin: 0 auto;
}

.machine-top {
  height: 56px;
  border-radius: 20px 20px 10px 10px;
  background: linear-gradient(180deg, #231916, #0f0b09);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.machine-body {
  position: relative;
  height: 380px;
  margin-top: 6px;
  padding: 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, #181211, #090707);
  overflow: hidden;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.24);
}

.machine-interior {
  position: absolute;
  inset: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(25, 45, 81, 0.92), rgba(12, 22, 38, 0.96));
  box-shadow: inset 0 0 28px rgba(47, 124, 255, 0.18);
}

.machine-interior span {
  display: block;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 220, 164, 0.96), rgba(95, 200, 255, 0.56));
  animation: shelfPulse 2.4s ease-in-out infinite;
}

.machine-interior span:nth-child(2),
.machine-interior span:nth-child(5) {
  animation-delay: 0.4s;
}

.machine-interior span:nth-child(3),
.machine-interior span:nth-child(6) {
  animation-delay: 0.8s;
}

.machine-door {
  position: absolute;
  top: 14px;
  bottom: 14px;
  z-index: 2;
  width: calc(50% - 20px);
  border: 2px solid rgba(235, 244, 246, 0.72);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(113, 223, 255, 0.08));
  backdrop-filter: blur(3px);
}

.left-door {
  left: 14px;
  transform-origin: left center;
  animation: doorOpenLeft 4.2s ease-in-out infinite;
}

.right-door {
  right: 14px;
  transform-origin: right center;
  animation: doorOpenRight 4.2s ease-in-out infinite;
}

.machine-base {
  width: 290px;
  height: 36px;
  margin: 10px auto 0;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, #17110f, #090707);
}

.signal,
.pulse {
  position: absolute;
  pointer-events: none;
}

.signal {
  border: 2px solid rgba(47, 124, 255, 0.42);
  border-radius: 999px;
  filter: drop-shadow(0 0 18px rgba(47, 124, 255, 0.22));
}

.signal-one {
  top: 112px;
  left: 120px;
  width: 180px;
  height: 180px;
  border-right-color: transparent;
  border-bottom-color: transparent;
  animation: signalSpin 6s linear infinite;
}

.signal-two {
  top: 90px;
  right: 180px;
  width: 150px;
  height: 150px;
  border-left-color: transparent;
  border-bottom-color: transparent;
  animation: signalSpinReverse 5.4s linear infinite;
}

.signal-three {
  bottom: 86px;
  left: 220px;
  width: 210px;
  height: 210px;
  border-top-color: transparent;
  border-right-color: transparent;
  animation: signalSpin 7.2s linear infinite;
}

.pulse {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, #9fcbff, var(--accent));
  box-shadow: 0 0 18px rgba(47, 124, 255, 0.7);
  animation: pulseMove 2.6s ease-in-out infinite;
}

.pulse-one {
  top: 158px;
  left: 250px;
}

.pulse-two {
  top: 130px;
  right: 250px;
  animation-delay: 0.8s;
}

.pulse-three {
  bottom: 126px;
  left: 330px;
  animation-delay: 1.2s;
}

.cta-panel {
  grid-template-columns: 1fr 420px;
  align-items: start;
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(47, 124, 255, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 255, 0.94));
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.94rem;
  font-weight: 700;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  color: var(--muted);
  font-weight: 700;
}

.contact-details a {
  color: var(--accent);
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 58px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.contact-form input:focus,
.contact-form select:focus {
  outline: 2px solid rgba(47, 124, 255, 0.18);
  border-color: rgba(47, 124, 255, 0.28);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 18px 18px 0;
  padding: 28px 4px 0;
  color: var(--muted);
}

.footer p {
  margin: 0;
  color: var(--ink);
  font-family: "Aptos Display", "Segoe UI Semibold", sans-serif;
  font-weight: 700;
}

.footer span {
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes doorOpenLeft {
  0%, 18%, 100% { transform: perspective(600px) rotateY(0deg); }
  35%, 65% { transform: perspective(600px) rotateY(-54deg); }
  82% { transform: perspective(600px) rotateY(-8deg); }
}

@keyframes doorOpenRight {
  0%, 18%, 100% { transform: perspective(600px) rotateY(0deg); }
  35%, 65% { transform: perspective(600px) rotateY(54deg); }
  82% { transform: perspective(600px) rotateY(8deg); }
}

@keyframes shelfPulse {
  0%, 100% { opacity: 0.76; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

@keyframes signalSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes signalSpinReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes pulseMove {
  0%, 100% { transform: scale(0.85); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
}

@keyframes hoverMachine {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

@keyframes scanPulse {
  0% { transform: translateX(-50%) scale(0.72); opacity: 0.74; }
  100% { transform: translateX(-50%) scale(1.28); opacity: 0; }
}

@keyframes orbitFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.12); }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1080px) {
  .quick-intro-grid,
  .property-visuals-grid,
  .machine-grid,
  .benefits-grid,
  .industry-grid,
  .split-layout,
  .ai-stage,
  .ar-panel,
  .cta-panel {
    grid-template-columns: 1fr 1fr;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .hero-visual {
    min-height: 520px;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: 100%;
  }

  .topbar {
    top: 8px;
    gap: 12px;
    margin: 12px 12px 20px;
    padding: 12px 14px;
  }

  .quick-intro-grid,
  .property-visuals-grid,
  .machine-grid,
  .benefits-grid,
  .industry-grid,
  .split-layout,
  .ai-stage,
  .ar-panel,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .topbar-cta {
    min-width: 0;
    padding-inline: 16px;
  }

  .hero {
    min-height: auto;
    padding: 18px 12px 42px;
  }

  .hero h1 {
    max-width: 8ch;
    font-size: clamp(2.9rem, 14vw, 4.4rem);
  }

  .hero-copy {
    width: 100%;
    padding: 32px 10px 0;
  }

  .hero-backdrop::after {
    background:
      linear-gradient(180deg, rgba(6, 12, 22, 0.82) 0%, rgba(6, 12, 22, 0.62) 48%, rgba(6, 12, 22, 0.32) 100%),
      linear-gradient(180deg, rgba(25, 48, 84, 0.22), rgba(6, 12, 22, 0.16));
  }

  .hero-visual {
    min-height: 430px;
    padding-bottom: 24px;
  }

  .hero-machine {
    width: min(82vw, 360px);
  }

  .floating-ui-card {
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .card-track {
    top: 8%;
    left: 2%;
  }

  .card-unlock {
    top: 20%;
    right: 0;
  }

  .card-checkout {
    bottom: 16%;
    left: 2%;
  }

  .card-sales {
    right: 0;
    bottom: 6%;
  }

  .trust-band {
    flex-direction: column;
    align-items: start;
    margin-inline: 12px;
  }

  .section-heading {
    padding: 0 16px;
  }

  .quick-intro-grid,
  .property-visuals-grid,
  .machine-grid,
  .benefits-grid,
  .industry-grid,
  .split-layout,
  .ai-stage,
  .ar-panel,
  .cta-panel {
    margin-inline: 12px;
  }

  .ai-stage {
    min-height: auto;
    padding: 28px 20px;
    gap: 28px;
  }

  .ai-machine {
    width: 280px;
  }

  .machine-body {
    height: 320px;
  }

  .cta-panel,
  .ar-panel {
    padding: 24px 20px;
  }

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

  .footer span {
    text-align: left;
  }
}
