:root {
  --ink: #111418;
  --text: #1f2933;
  --muted: #667085;
  --soft: #f6f8fa;
  --panel: #ffffff;
  --line: #d8dee6;
  --dark: #121821;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --cyan: #14b8a6;
  --amber: #f59e0b;
  --green: #22c55e;
  --shadow: 0 24px 70px rgba(17, 20, 24, .12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--soft);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(216, 222, 230, .86);
  background: rgba(246, 248, 250, .9);
  backdrop-filter: blur(18px);
}

.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 780;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: 132px;
  height: auto;
  max-width: 132px;
  max-height: none;
  object-fit: contain;
}

.footer-logo {
  width: 118px;
  max-width: 118px;
  max-height: 62px;
  border-radius: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 26px rgba(37, 99, 235, .24);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #374151;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  transition: color .2s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.lang-toggle {
  min-height: 38px;
  padding: 0 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-size: 13px;
  font-weight: 780;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease;
}

.lang-toggle:hover {
  color: var(--blue);
  border-color: rgba(37, 99, 235, .38);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 760;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 16px 30px rgba(37, 99, 235, .24);
}

.btn.primary:hover {
  background: var(--blue-dark);
}

.btn.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.btn.dark-secondary {
  color: #f8fafc;
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 72% 26%, rgba(20, 184, 166, .22), transparent 30%),
    linear-gradient(135deg, #111418 0%, #151d28 58%, #0d1118 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 12, 18, .28), rgba(8, 12, 18, .74)),
    radial-gradient(circle at 50% 42%, rgba(13, 18, 27, .16), rgba(7, 10, 15, .72) 68%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 4;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: calc(100vh - 72px);
  max-height: 860px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 92px 0 78px;
  text-align: center;
}

.hero-grid > :first-child {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #b7f4e9;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(34, 197, 94, .16);
}

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

h1 {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 22px;
  font-size: clamp(36px, 3.55vw, 50px);
  line-height: 1.07;
  color: #fff;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  color: rgba(226, 234, 244, .86);
  font-size: 16px;
  line-height: 1.62;
  text-wrap: balance;
}

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

.hero-metrics {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: min(720px, 100%);
  margin: 38px auto 0;
  opacity: .72;
}

.metric {
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  background: rgba(6, 10, 16, .28);
  backdrop-filter: blur(12px);
}

.metric strong {
  display: block;
  color: #fff;
  font-size: 19px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: rgba(216, 226, 238, .76);
  font-size: 12px;
  font-weight: 660;
}

.trust-strip {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .12);
}

.trust-strip div {
  min-height: 86px;
  padding: 15px;
  background: rgba(255, 255, 255, .055);
}

.trust-strip b {
  display: block;
  color: #fff;
  font-size: 14px;
}

.trust-strip span {
  display: block;
  margin-top: 6px;
  color: #b8c3d4;
  font-size: 12px;
}

.product-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  pointer-events: none;
}

.stage-panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.04) 1px, transparent 1px),
    #18202b;
  background-size: 38px 38px;
  box-shadow: none;
  opacity: .54;
}

.stage-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 65%, rgba(245, 158, 11, .12), transparent 28%),
    radial-gradient(circle at 66% 34%, rgba(20, 184, 166, .2), transparent 31%);
}

.stage-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .34;
}

.video-fallback {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,.02), rgba(20,184,166,.16), rgba(37,99,235,.08)),
    radial-gradient(circle at 32% 72%, rgba(245,158,11,.16), transparent 28%),
    radial-gradient(circle at 70% 28%, rgba(20,184,166,.24), transparent 32%);
  animation: videoSweep 7s ease-in-out infinite alternate;
}

.video-fallback::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(120deg, rgba(0,0,0,.25), #000 44%, rgba(0,0,0,.28));
}

.video-fallback::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -28%;
  width: 46%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  transform: rotate(12deg);
  animation: videoScan 5.6s linear infinite;
}

.video-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  color: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(8, 13, 20, .58);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 760;
}

.video-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(34,197,94,.16);
}

.glove,
.robot {
  position: absolute;
  filter: drop-shadow(0 30px 34px rgba(0, 0, 0, .36));
}

.glove {
  left: 18%;
  bottom: 13%;
  width: 30%;
  height: 47%;
  opacity: .42;
}

.robot {
  right: 17%;
  top: 16%;
  width: 32%;
  height: 52%;
  opacity: .38;
}

.palm,
.robot-palm {
  position: absolute;
  left: 25%;
  bottom: 10%;
  width: 47%;
  height: 45%;
  border-radius: 16px 16px 10px 10px;
}

.palm {
  border: 1px solid rgba(255,255,255,.24);
  background: linear-gradient(145deg, #e6ebf2, #98a4b4);
}

.robot-palm {
  border: 1px solid rgba(20, 184, 166, .5);
  background: linear-gradient(145deg, #263449, #111923);
}

.finger,
.robot-finger {
  position: absolute;
  width: 13%;
  border-radius: 18px;
  transform-origin: bottom center;
}

.finger {
  border: 1px solid rgba(255,255,255,.25);
  background: linear-gradient(180deg, #f7fafc, #9da8b8);
}

.robot-finger {
  border: 1px solid rgba(20, 184, 166, .55);
  background: linear-gradient(180deg, #53647d, #151e29);
}

.f1 { left: 18%; bottom: 53%; height: 42%; transform: rotate(-17deg); }
.f2 { left: 35%; bottom: 58%; height: 48%; transform: rotate(-6deg); }
.f3 { left: 52%; bottom: 56%; height: 46%; transform: rotate(5deg); }
.f4 { left: 68%; bottom: 49%; height: 38%; transform: rotate(15deg); }
.r1 { left: 18%; bottom: 48%; height: 42%; transform: rotate(-16deg); }
.r2 { left: 35%; bottom: 55%; height: 49%; transform: rotate(-6deg); }
.r3 { left: 52%; bottom: 53%; height: 47%; transform: rotate(6deg); }
.r4 { left: 68%; bottom: 46%; height: 39%; transform: rotate(15deg); }

.thumb,
.robot-thumb {
  position: absolute;
  left: 4%;
  bottom: 22%;
  width: 28%;
  height: 13%;
  border-radius: 16px;
  transform: rotate(-28deg);
}

.thumb {
  background: linear-gradient(90deg, #eef3f8, #9aa6b6);
}

.robot-thumb {
  border: 1px solid rgba(20, 184, 166, .55);
  background: linear-gradient(90deg, #52647c, #151e29);
}

.joint {
  position: absolute;
  left: 50%;
  width: 54%;
  height: 6px;
  border-radius: 999px;
  background: rgba(37, 99, 235, .82);
  transform: translateX(-50%);
}

.joint.one { top: 31%; }
.joint.two { top: 62%; }

.stream {
  position: absolute;
  left: 44%;
  top: 46%;
  width: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.stream::before,
.stream::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  transform: translateY(-50%);
  animation: pulse 1.8s infinite;
}

.stream::before { left: 22%; }
.stream::after { left: 68%; animation-delay: .45s; }

.hud {
  position: absolute;
  right: 7%;
  bottom: 8%;
  width: 246px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius);
  background: rgba(10, 15, 23, .78);
  backdrop-filter: blur(14px);
  opacity: .42;
}

.hud-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: #cbd5e1;
  font-size: 12px;
}

.hud-row:last-child {
  border-bottom: 0;
}

.hud b {
  color: #fff;
}

.band {
  position: relative;
  padding: 90px 0;
  border-top: 1px solid rgba(216, 222, 230, .7);
}

.band.white {
  background: #fff;
}

.band.soft {
  background:
    linear-gradient(180deg, #f9fbfd 0%, #eef3f8 100%);
}

.band.dark {
  color: #fff;
  background: var(--dark);
}

.section-head {
  display: block;
  max-width: 1040px;
  margin-bottom: 34px;
}

h2 {
  max-width: 980px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(29px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: 0;
  text-wrap: balance;
}

.dark h2 {
  color: #fff;
}

.split h2,
.contact h2 {
  font-size: clamp(29px, 2.4vw, 32px);
  line-height: 1.12;
}

.section-head p {
  max-width: 960px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
  text-wrap: balance;
}

.dark .section-head p {
  color: #b7c2d2;
}

.audience {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

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

.conversion-grid.compact .conversion-card {
  box-shadow: none;
}

.conversion-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(17, 20, 24, .05);
}

.conversion-card b {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.28;
  text-wrap: balance;
}

.conversion-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
  text-wrap: pretty;
}

.conversion-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(37, 99, 235, .18);
  border-radius: var(--radius);
  background: #eef5ff;
}

.conversion-note p {
  margin: 0;
  color: #344054;
  font-size: 14px;
}

.tile,
.card,
.case,
.faq-item,
.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.tile {
  min-height: 112px;
  padding: 18px;
  font-weight: 780;
}

.tile span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 540;
  line-height: 1.5;
  text-wrap: balance;
}

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

.card {
  display: flex;
  flex-direction: column;
  padding: 23px;
  box-shadow: 0 14px 34px rgba(17, 20, 24, .05);
}

.card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
  border-radius: 7px;
  background: var(--ink);
  font-size: 13px;
  font-weight: 820;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.22;
  text-wrap: balance;
}

.card p,
.case p,
.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
  text-wrap: pretty;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 18px;
  color: var(--blue);
  border: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.25;
  white-space: nowrap;
  cursor: pointer;
}

.application-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 24px;
  align-items: stretch;
}

.application-media {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, .92), rgba(28, 38, 52, .78)),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  box-shadow: var(--shadow);
}

.application-media::before {
  content: "";
  position: absolute;
  inset: 28% 10% 28%;
  border: 1px solid rgba(20, 184, 166, .24);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg,
      rgba(255,255,255,.12) 0 30%,
      transparent 30% 35%,
      rgba(20,184,166,.16) 35% 65%,
      transparent 65% 70%,
      rgba(37,99,235,.15) 70% 100%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  opacity: .86;
}

.application-media::after {
  content: "";
  position: absolute;
  left: 13%;
  right: 13%;
  top: 48%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, .9), rgba(37, 99, 235, .82), transparent);
  box-shadow: 0 0 22px rgba(20, 184, 166, .42);
}

.application-media .media-kicker {
  position: absolute;
  left: 28px;
  top: 28px;
  z-index: 2;
}

.application-media figcaption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  max-width: 520px;
  color: #fff;
}

.application-media b {
  display: block;
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 1.18;
}

.application-media span {
  display: block;
  color: rgba(226, 234, 244, .76);
  font-size: 14px;
  line-height: 1.62;
}

.application-list {
  display: grid;
  gap: 14px;
  align-content: stretch;
}

.application-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  min-height: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(17, 20, 24, .05);
}

.application-card > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 7px;
  background: var(--ink);
  font-size: 12px;
  font-weight: 820;
}

.application-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.24;
}

.application-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
  text-wrap: pretty;
}

.application-cta {
  justify-self: start;
  align-self: end;
}

.procurement {
  align-items: start;
}

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

.support-list div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.support-list b {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.28;
  text-wrap: balance;
}

.support-list span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
  text-wrap: pretty;
}

.media-showcase {
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 16px;
  margin-top: 24px;
}

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

.media-slot {
  position: relative;
  min-height: 202px;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(15, 23, 42, .1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, .9), rgba(28, 36, 50, .78)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 34px);
  color: #fff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .1);
}

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

.media-slot::after {
  content: "";
  position: absolute;
  inset: auto -12% -24% 36%;
  height: 56%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(20, 184, 166, .28), transparent 68%);
}

.media-kicker {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.media-title {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin-top: 12px;
  color: #fff;
  font-size: 20px;
  font-weight: 820;
  line-height: 1.2;
  text-wrap: balance;
}

.media-note {
  position: absolute;
  z-index: 1;
  left: 20px;
  bottom: 18px;
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

.play-mark {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.product-detail {
  display: none;
  min-height: 100vh;
  overflow: hidden;
  background: #f6f8fa;
}

body.product-page .product-detail {
  display: block;
}

body.product-page .site-home {
  display: block;
}

body.product-mode .nav,
body.product-mode #top,
body.product-mode .site-home,
body.product-mode footer,
body.product-mode .mobile-cta {
  display: none;
}

body.product-mode .product-detail {
  display: block;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e5edf7;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  padding: 10px 13px;
  font-size: 14px;
  font-weight: 760;
  cursor: pointer;
}

.detail-hero {
  position: relative;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: center;
  min-height: 520px;
  margin-top: 28px;
  padding: 76px 46px 46px;
  color: #fff;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 78% 24%, rgba(20, 184, 166, .24), transparent 32%),
    radial-gradient(circle at 30% 78%, rgba(37, 99, 235, .22), transparent 34%),
    linear-gradient(135deg, #0f141c, #17202c 58%, #0b1017);
}

.detail-hero .back-link {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 2;
}

.detail-title {
  max-width: 560px;
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(34px, 3.5vw, 48px);
  line-height: 1.08;
  text-wrap: balance;
}

.detail-copy p {
  max-width: 650px;
  margin-bottom: 22px;
  color: #cbd5e1;
}

.detail-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #9bf2e4;
  font-size: 12px;
  font-weight: 800;
}

.detail-visual {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.04) 1px, transparent 1px),
    #18202b;
  background-size: 34px 34px;
}

.detail-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,.02), rgba(20,184,166,.14), rgba(37,99,235,.08)),
    radial-gradient(circle at 28% 68%, rgba(245, 158, 11, .12), transparent 30%),
    radial-gradient(circle at 68% 30%, rgba(20, 184, 166, .2), transparent 32%);
  animation: videoSweep 7s ease-in-out infinite alternate;
}

.detail-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(8, 13, 20, .78));
  pointer-events: none;
}

.detail-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #f8fafc;
  background-position: center 38%;
  background-repeat: no-repeat;
  background-size: contain;
}

.detail-visual.has-photo {
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.035) 1px, transparent 1px),
    #0f1720;
  background-size: 34px 34px;
}

.detail-visual.has-photo::before {
  z-index: 2;
  background:
    linear-gradient(115deg, rgba(8, 13, 20, .06), rgba(20, 184, 166, .06), rgba(37, 99, 235, .04));
}

.detail-visual.has-photo .detail-hardware {
  display: none;
}

.detail-visual .visual-slot-tag {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 4;
  padding: 8px 10px;
  color: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(8, 13, 20, .54);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 760;
}

.detail-visual-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 104px;
  z-index: 4;
  max-width: 430px;
}

.detail-visual-caption b {
  display: block;
  color: #fff;
  font-size: 20px;
  line-height: 1.18;
}

.detail-visual-caption span {
  display: block;
  margin-top: 8px;
  color: rgba(226, 234, 244, .72);
  font-size: 13px;
  line-height: 1.5;
}

.detail-visual-media {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.detail-media-chip {
  min-height: 72px;
  width: 100%;
  padding: 10px;
  color: rgba(255,255,255,.76);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(8, 13, 20, .56);
  backdrop-filter: blur(12px);
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.detail-media-chip:hover,
.detail-media-chip.active {
  border-color: rgba(155, 242, 228, .48);
  background: rgba(20, 184, 166, .16);
}

.detail-media-chip:hover {
  transform: translateY(-1px);
}

.detail-media-chip b {
  display: block;
  color: #fff;
  font-size: 12px;
  line-height: 1.2;
}

.detail-media-chip span {
  display: block;
  margin-top: 6px;
  color: rgba(226, 234, 244, .66);
  font-size: 11px;
  line-height: 1.35;
}

.detail-media-chip.video b::after {
  content: " ▶";
  color: #9bf2e4;
}

.detail-hardware {
  position: absolute;
  inset: 10% 12% 34%;
  filter: drop-shadow(0 28px 34px rgba(0,0,0,.36));
}

.detail-palm,
.suit-body,
.kit-core,
.sdk-window {
  position: absolute;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 16px;
  background: linear-gradient(145deg, #e7edf5, #8e9bad);
}

.detail-palm {
  left: 28%;
  bottom: 12%;
  width: 38%;
  height: 44%;
}

.detail-finger {
  position: absolute;
  width: 10%;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 18px;
  background: linear-gradient(180deg, #f7fafc, #9da8b8);
  transform-origin: bottom center;
}

.df1 { left: 20%; bottom: 53%; height: 37%; transform: rotate(-16deg); }
.df2 { left: 35%; bottom: 58%; height: 45%; transform: rotate(-6deg); }
.df3 { left: 50%; bottom: 57%; height: 43%; transform: rotate(5deg); }
.df4 { left: 65%; bottom: 50%; height: 34%; transform: rotate(16deg); }

.suit-head {
  position: absolute;
  left: 43%;
  top: 2%;
  width: 14%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, #f7fafc, #9da8b8);
}

.suit-body {
  left: 37%;
  top: 21%;
  width: 26%;
  height: 34%;
  background: linear-gradient(145deg, #1f2a3a, #0f1720);
  border-color: rgba(20, 184, 166, .45);
}

.suit-limb {
  position: absolute;
  width: 8%;
  border-radius: 18px;
  background: linear-gradient(180deg, #dbe5f0, #7d8794);
}

.arm-left { left: 25%; top: 25%; height: 36%; transform: rotate(32deg); }
.arm-right { right: 25%; top: 25%; height: 36%; transform: rotate(-32deg); }
.leg-left { left: 40%; top: 53%; height: 42%; transform: rotate(8deg); }
.leg-right { right: 40%; top: 53%; height: 42%; transform: rotate(-8deg); }

.detail-marker,
.node {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(34, 197, 94, .14);
}

.dm1 { left: 47%; top: 11%; }
.dm2 { left: 31%; top: 36%; }
.dm3 { right: 31%; top: 36%; }
.dm4 { left: 43%; bottom: 14%; }
.dm5 { right: 43%; bottom: 14%; }

.kit-core {
  left: 34%;
  top: 32%;
  width: 32%;
  height: 32%;
  background: linear-gradient(145deg, #273449, #101720);
  border-color: rgba(20, 184, 166, .45);
}

.node.a { left: 18%; top: 18%; }
.node.b { right: 18%; top: 20%; }
.node.c { left: 21%; bottom: 19%; }
.node.d { right: 21%; bottom: 18%; }

.sdk-window {
  inset: 18% 10%;
  background: #0f1720;
  border-color: rgba(20, 184, 166, .36);
}

.code-line {
  height: 10px;
  margin: 20px 24px;
  border-radius: 999px;
  background: rgba(148, 163, 184, .42);
}

.code-line.long { width: 72%; }
.code-line.mid { width: 54%; background: rgba(20, 184, 166, .55); }
.code-line.short { width: 34%; background: rgba(245, 158, 11, .55); }

.detail-body {
  padding: 56px 0 84px;
}

.detail-section {
  margin-top: 52px;
}

.detail-section:first-child {
  margin-top: 0;
}

.detail-section h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 24px;
  text-wrap: balance;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.detail-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.detail-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.spec-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.spec-row {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(216, 222, 230, .95);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(248, 250, 252, .92)),
    #fff;
  box-shadow: 0 18px 42px rgba(17, 20, 24, .04);
}

.spec-row::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(37, 99, 235, .88), rgba(20, 184, 166, .72));
  opacity: .82;
}

.spec-row h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 20px 22px 14px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0;
}

.spec-row h3::before {
  content: var(--spec-index);
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 24px;
  border: 1px solid rgba(37, 99, 235, .14);
  border-radius: 999px;
  color: #2563eb;
  background: rgba(37, 99, 235, .07);
  font-size: 11px;
  font-weight: 820;
}

.spec-row dl {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0 22px 20px;
}

.spec-row dl div {
  display: grid;
  grid-template-columns: minmax(96px, .8fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: baseline;
  min-height: 42px;
  padding: 10px 0;
  border-top: 1px solid rgba(216, 222, 230, .72);
}

.spec-row dt,
.spec-row dd {
  margin: 0;
  color: #4f5f73;
  font-size: 13px;
  line-height: 1.55;
}

.spec-row dt {
  font-weight: 700;
  color: #6d7889;
}

.spec-row dd {
  text-align: right;
  font-weight: 650;
  color: var(--ink);
  overflow-wrap: anywhere;
}

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

.spec-count-3 .spec-row {
  min-width: 0;
}

.spec-count-3 .spec-row dl div {
  grid-template-columns: minmax(82px, .75fr) minmax(0, 1.25fr);
  gap: 14px;
}

.spec-count-3 .spec-row dd {
  font-size: 12.5px;
}

.spec-count-5 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.spec-count-5 .spec-row {
  grid-column: span 2;
}

.spec-count-5 .spec-row:nth-child(n + 4) {
  grid-column: span 3;
}

.spec-count-5 .spec-row dl div {
  grid-template-columns: minmax(88px, .72fr) minmax(0, 1.28fr);
  gap: 14px;
}

.spec-count-5 .spec-row dd {
  font-size: 12.5px;
}

.detail-item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
}

.detail-item b {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.28;
  text-wrap: balance;
}

.detail-item span,
.detail-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  text-wrap: pretty;
}

.detail-item small {
  display: block;
  margin-top: 12px;
  padding-top: 12px;
  color: #4f5f73;
  border-top: 1px solid rgba(216, 222, 230, .72);
  font-size: 12px;
  line-height: 1.55;
}

.detail-item small b {
  display: inline;
  margin: 0;
  color: var(--blue);
  font-size: inherit;
}

.use-case-grid {
  gap: 16px;
}

.use-case-card {
  overflow: hidden;
  padding: 0;
  background: #fff;
  box-shadow: 0 14px 34px rgba(17, 20, 24, .05);
}

.use-case-media {
  position: relative;
  min-height: 168px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, .92), rgba(28, 36, 50, .76)),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
}

.use-case-media::before {
  content: "";
  position: absolute;
  inset: 18% 12% 20%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 28% 34%, rgba(20, 184, 166, .34), transparent 18%),
    radial-gradient(circle at 74% 68%, rgba(37, 99, 235, .28), transparent 20%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  opacity: .86;
}

.use-case-media::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(20,184,166,.8), transparent);
  transform: translateY(-50%);
}

.use-case-label {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  padding: 7px 9px;
  color: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(8, 13, 20, .5);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 760;
}

.use-case-body {
  padding: 17px;
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.workflow {
  padding: 30px;
  border-radius: var(--radius);
  background: #101720;
}

.workflow h2 {
  margin-bottom: 24px;
}

.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.step:last-child {
  border-bottom: 0;
}

.num {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #9bf2e4;
  border-radius: 7px;
  background: rgba(20, 184, 166, .18);
  font-weight: 820;
}

.step b {
  color: #fff;
}

.step p {
  margin: 5px 0 0;
  color: #b7c2d2;
  font-size: 14px;
}

.specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.spec {
  padding: 21px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}

.spec b {
  display: block;
  margin-bottom: 7px;
  color: #fff;
}

.spec span {
  color: #b7c2d2;
  font-size: 14px;
}

.cases {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
}

.case {
  padding: 24px;
}

.case.featured {
  min-height: 310px;
  color: #fff;
  border-color: transparent;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, .9), rgba(20, 184, 166, .8)),
    #172033;
}

.case.featured h3,
.case.featured p {
  color: #fff;
}

.quote {
  margin: 22px 0 0;
  color: rgba(255,255,255,.86);
  font-size: 18px;
}

.case-stack {
  display: grid;
  gap: 16px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px;
  color: var(--ink);
  border: 0;
  background: transparent;
  text-align: left;
  font-weight: 780;
  cursor: pointer;
}

.faq-question span:last-child {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 20px;
  line-height: 1;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
}

.faq-item.open .faq-answer {
  display: block;
}

.contact {
  padding: 80px 0;
  background: #eaf1fa;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
  align-items: start;
}

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

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  gap: 10px;
  color: #344054;
  font-size: 14px;
  font-weight: 640;
}

.check {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  border-radius: 50%;
  background: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.form-card {
  padding: 24px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

label {
  display: grid;
  gap: 7px;
  color: #344054;
  font-size: 13px;
  font-weight: 720;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  border: 1px solid #cfd8e6;
  border-radius: var(--radius);
  background: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}

textarea {
  min-height: 112px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

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

.field-error {
  min-height: 16px;
  color: #b42318;
  font-size: 12px;
  font-weight: 650;
}

.is-invalid {
  border-color: #f04438;
  box-shadow: 0 0 0 4px rgba(240, 68, 56, .12);
}

.success-message {
  display: none;
  margin-top: 14px;
  padding: 14px;
  color: #0f5132;
  border: 1px solid rgba(34, 197, 94, .35);
  border-radius: var(--radius);
  background: #ecfdf3;
  font-size: 14px;
  font-weight: 650;
}

.success-message.show {
  display: block;
}

.success-message.error {
  color: #842029;
  border-color: rgba(240, 68, 56, .35);
  background: #fff1f0;
}

footer {
  color: #cbd5e1;
  background: #14171b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, .7fr);
  gap: 24px;
  padding: 42px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-grid h4 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 14px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 8px;
  color: #aeb9c9;
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  color: #8d99aa;
  font-size: 13px;
}

.mobile-cta {
  display: none;
}

@keyframes pulse {
  0%, 100% { opacity: .3; transform: translateY(-50%) scale(.8); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.4); }
}

@keyframes videoSweep {
  from { filter: hue-rotate(0deg) brightness(.95); transform: scale(1); }
  to { filter: hue-rotate(12deg) brightness(1.12); transform: scale(1.03); }
}

@keyframes videoScan {
  from { transform: translateX(0) rotate(12deg); }
  to { transform: translateX(360%) rotate(12deg); }
}

@media (max-width: 980px) {
  .nav-links,
  .nav-actions .secondary {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .nav-links.open {
    position: fixed;
    inset: 72px 16px auto;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.open a {
    padding: 14px 12px;
    border-bottom: 1px solid #eef2f6;
  }

  .nav-links.open a:last-child {
    border-bottom: 0;
  }

  .hero-grid,
  .split,
  .cases,
  .contact-grid,
  .detail-hero,
  .media-showcase,
  .application-showcase {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: calc(100vh - 72px);
    max-height: none;
    padding: 70px 0 64px;
  }

  .product-stage {
    min-height: 100%;
  }

  .media-slot.large {
    min-height: 320px;
  }

  .audience,
  .cards,
  .conversion-grid,
  .detail-grid,
  .detail-grid.three,
  .detail-grid.two,
  .faq-list,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .spec-count-5 .spec-row,
  .spec-count-5 .spec-row:nth-child(n + 4) {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 560px);
  }

  .nav-actions .primary {
    display: none;
  }

  h1 {
    font-size: 31px;
    line-height: 1.14;
  }

  h2 {
    font-size: 27px;
    line-height: 1.14;
  }

  .hero-grid {
    width: 100%;
    max-width: none;
  }

  .hero-actions,
  .hero-metrics,
  .audience,
  .cards,
  .conversion-grid,
  .detail-grid,
  .detail-grid.three,
  .detail-grid.two,
  .specs,
  .support-list,
  .faq-list,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .application-media {
    min-height: 360px;
  }

  .application-card {
    grid-template-columns: 36px 1fr;
    padding: 18px;
  }

  .application-card > span {
    width: 36px;
    height: 36px;
  }

  .spec-table {
    grid-template-columns: 1fr;
  }

  .spec-row h3 {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    justify-content: stretch;
  }

  .btn {
    width: 100%;
  }

  .band {
    padding: 62px 0;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 14px;
  }

  .conversion-note {
    display: block;
  }

  .conversion-note .btn {
    margin-top: 14px;
  }

  .product-stage {
    min-height: 100%;
  }

  .hero-copy {
    max-width: 330px;
    font-size: 15px;
    line-height: 1.68;
  }

  .hero-metrics {
    display: none;
  }

  .glove {
    left: -8%;
    bottom: 16%;
    width: 54%;
    height: 36%;
    opacity: .48;
  }

  .robot {
    right: -10%;
    top: 14%;
    width: 58%;
    height: 40%;
    opacity: .42;
  }

  .stream,
  .hud,
  .video-tag {
    display: none;
  }

  .media-slot,
  .media-slot.large {
    min-height: 250px;
  }

  .detail-hero,
  .detail-body {
    padding: 20px;
  }

  .detail-title {
    font-size: 26px;
  }

  .detail-visual {
    min-height: 500px;
  }

  .detail-visual .detail-hardware {
    inset: 8% 12% 56%;
  }

  .detail-visual-caption {
    bottom: 224px;
  }

  .detail-visual-caption b {
    font-size: 17px;
  }

  .detail-visual-caption span {
    font-size: 12px;
  }

  .detail-visual-media {
    grid-template-columns: 1fr;
  }

  .detail-media-chip {
    min-height: 58px;
  }

  .hud {
    left: 5%;
    right: auto;
    bottom: 5%;
    width: 222px;
  }

  .glove {
    left: 2%;
    width: 48%;
  }

  .robot {
    right: 1%;
    width: 48%;
  }

  .contact {
    padding-bottom: 92px;
  }

  .footer-bottom {
    display: block;
  }

  .mobile-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 40;
    display: block;
  }
}
  
