:root {
  color-scheme: light;
  --ink: #10202a;
  --muted: #52646f;
  --line: #d5dee2;
  --surface: #f6f9f8;
  --panel: #ffffff;
  --teal: #0b7f79;
  --teal-dark: #075c58;
  --lime: #b7e45d;
  --amber: #f0b84b;
  --steel: #31434d;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid rgba(16, 32, 42, 0.1);
  background: rgba(246, 249, 248, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--lime);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.brand-logo {
  display: block;
  width: clamp(128px, 12vw, 176px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(3px 3px 0 #000);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 32px);
  color: var(--muted);
  font-size: 0.95rem;
}

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

.nav-links a.is-active {
  color: var(--ink);
  font-weight: 900;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.header-cta {
  padding: 0 18px;
  background: var(--ink);
  color: #ffffff;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.language-switcher button {
  min-width: 42px;
  height: 38px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
}

.language-switcher button:last-child {
  border-right: 0;
}

.language-switcher button.is-active {
  background: var(--teal);
  color: #ffffff;
}

.button {
  padding: 0 20px;
}

.button.primary {
  background: var(--teal);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(11, 127, 121, 0.22);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(32px, 6vw, 76px);
  background: #101820;
  isolation: isolate;
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 16, 21, 0.9) 0%, rgba(7, 16, 21, 0.58) 48%, rgba(7, 16, 21, 0.2) 100%),
    linear-gradient(180deg, transparent 62%, rgba(7, 16, 21, 0.82));
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08);
}

.sensor-map {
  position: absolute;
  inset: 0;
}

.sensor-map span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 16px;
  height: 16px;
  border: 2px solid rgba(183, 228, 93, 0.95);
  border-radius: 50%;
  background: rgba(183, 228, 93, 0.28);
  box-shadow: 0 0 0 18px rgba(183, 228, 93, 0.08);
  animation: pulse 2.8s infinite;
}

.hero-content {
  width: min(820px, 100%);
  color: #ffffff;
}

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

.hero .eyebrow {
  color: var(--lime);
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(4.1rem, 11vw, 9.4rem);
  line-height: 0.85;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

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

.hero-copy {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

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

.hero-panel {
  position: absolute;
  right: clamp(18px, 4vw, 52px);
  bottom: clamp(18px, 4vw, 52px);
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 1px;
  overflow: hidden;
  width: min(520px, calc(100vw - 36px));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  color: #ffffff;
}

.hero-panel div {
  min-height: 96px;
  padding: 16px;
  background: rgba(6, 16, 22, 0.58);
}

.hero-panel span,
.dash-stats span,
.metrics span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 10px;
  font-size: 1.55rem;
}

.section,
.platform,
.metrics,
.contact,
.route-grid,
.page-hero,
.split-section {
  width: min(1180px, calc(100vw - 36px));
  margin: 0 auto;
}

.section {
  padding: clamp(58px, 9vw, 110px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: end;
}

.intro p,
.platform-copy p,
.contact p,
.service-grid p,
.cases p,
.page-hero p,
.route-grid p,
.process-list p {
  color: var(--muted);
  line-height: 1.7;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: clamp(58px, 9vw, 110px);
}

.route-grid a {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.route-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 127, 121, 0.42);
  box-shadow: 0 18px 36px rgba(16, 32, 42, 0.08);
}

.page-hero {
  display: grid;
  align-content: end;
  min-height: 430px;
  padding: clamp(48px, 8vw, 96px) 0 clamp(42px, 7vw, 80px);
}

.page-hero.compact {
  min-height: 360px;
}

.page-hero h1,
.contact-page h1 {
  width: min(930px, 100%);
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  line-height: 0.92;
}

.page-hero p,
.contact-page p {
  width: min(720px, 100%);
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.service-grid article,
.case-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.service-grid article {
  padding: 28px;
}

.icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 8px;
  background: #edf5f1;
  color: var(--teal-dark);
  font-weight: 900;
}

.platform {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 1fr);
  gap: clamp(26px, 7vw, 92px);
  align-items: center;
  padding: clamp(42px, 7vw, 84px);
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
}

.platform-page {
  margin-bottom: clamp(64px, 10vw, 118px);
}

.platform-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.84);
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lime);
}

.dashboard {
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(rgba(183, 228, 93, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(183, 228, 93, 0.08) 1px, transparent 1px),
    #13242d;
  background-size: 34px 34px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.dash-header,
.dash-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
}

.dash-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 900;
}

.dash-header strong {
  color: var(--lime);
}

.dash-map {
  position: relative;
  height: 310px;
}

.dash-map::before,
.dash-map::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.dash-map::before {
  inset: 40px 46px 80px 72px;
}

.dash-map::after {
  inset: 104px 102px 34px 36px;
}

.robot {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 4px solid #13242d;
  border-radius: 8px;
  background: var(--lime);
  box-shadow: 0 0 0 12px rgba(183, 228, 93, 0.16);
}

.bot-a {
  left: 18%;
  top: 28%;
  animation: patrol-a 7s infinite alternate ease-in-out;
}

.bot-b {
  left: 62%;
  top: 44%;
  background: var(--amber);
  box-shadow: 0 0 0 12px rgba(240, 184, 75, 0.16);
  animation: patrol-b 8s infinite alternate ease-in-out;
}

.bot-c {
  left: 76%;
  top: 72%;
  animation: patrol-c 6s infinite alternate ease-in-out;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.dash-stats div {
  padding: 18px;
  background: rgba(19, 36, 45, 0.88);
}

.dash-stats strong {
  display: block;
  margin-top: 8px;
  font-size: 1.8rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.case-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.case-list article {
  overflow: hidden;
}

.case-list img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.case-list h3,
.case-list p {
  padding-inline: 22px;
}

.case-list h3 {
  margin-top: 22px;
}

.case-list p {
  margin-bottom: 24px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--teal-dark);
}

.metrics article {
  padding: clamp(28px, 5vw, 54px);
  background: var(--teal);
  color: #ffffff;
}

.metrics strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: start;
  padding: 0 0 clamp(64px, 10vw, 118px);
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.process-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 1.08rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: start;
  padding: clamp(64px, 10vw, 120px) 0;
}

.contact-page {
  min-height: calc(100vh - 134px);
  align-items: center;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfdadd;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(11, 127, 121, 0.16);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 52px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 900;
}

.platform-hero {
  gap: 20px;
}

.platform-hero-actions {
  margin-top: 10px;
}

.yarig-section,
.benefit-band,
.concept-section {
  width: min(1180px, calc(100vw - 36px));
  margin: 0 auto;
}

.yarig-section {
  padding: 0 0 clamp(64px, 10vw, 118px);
}

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

.feature-grid article {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.feature-grid article:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.78fr);
}

.feature-grid article:nth-child(even) img {
  order: 2;
}

.feature-grid img {
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.feature-grid article > div {
  padding: clamp(24px, 5vw, 46px);
}

.feature-grid p,
.benefit-grid p,
.concept-section p {
  color: var(--muted);
  line-height: 1.7;
}

.check-list.dark {
  color: var(--ink);
}

.benefit-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(26px, 6vw, 72px);
  align-items: start;
  padding: clamp(42px, 7vw, 84px);
  margin-bottom: clamp(64px, 10vw, 118px);
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.benefit-grid article {
  min-height: 210px;
  padding: 24px;
  background: rgba(19, 36, 45, 0.88);
}

.benefit-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.benefit-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.concept-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: center;
  padding-bottom: clamp(64px, 10vw, 118px);
}

.concept-card {
  display: grid;
  gap: 8px;
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.concept-card strong {
  display: block;
  color: var(--teal-dark);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.92;
}

.concept-card span {
  display: block;
  margin-bottom: 22px;
  color: var(--muted);
  font-weight: 800;
}

@keyframes pulse {
  50% {
    transform: scale(1.25);
    box-shadow: 0 0 0 28px rgba(183, 228, 93, 0.02);
  }
}

@keyframes patrol-a {
  to {
    transform: translate(140px, 70px);
  }
}

@keyframes patrol-b {
  to {
    transform: translate(-110px, 92px);
  }
}

@keyframes patrol-c {
  to {
    transform: translate(-150px, -96px);
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 860px;
    align-items: start;
    padding-top: 70px;
  }

  .hero-panel {
    left: 18px;
    right: 18px;
    grid-template-columns: 1fr;
    width: auto;
  }

  .intro,
  .service-grid,
  .platform,
  .case-list,
  .metrics,
  .contact,
  .route-grid,
  .split-section,
  .feature-grid article,
  .feature-grid article:nth-child(even),
  .benefit-band,
  .concept-section {
    grid-template-columns: 1fr;
  }

  .feature-grid article:nth-child(even) img {
    order: 0;
  }

  .platform {
    padding: 28px;
  }

  .dashboard {
    min-height: 410px;
  }

  .page-hero {
    min-height: 340px;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 8px;
    padding-inline: 14px;
  }

  .brand-logo {
    width: 118px;
  }

  .header-cta {
    padding-inline: 12px;
  }

  .language-switcher button {
    min-width: 34px;
  }

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

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-panel div {
    min-height: 78px;
  }

  .dash-stats {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    display: grid;
  }
}

/* Arcade 80/90 skin */
:root {
  color-scheme: dark;
  --ink: #f7ffe8;
  --muted: #b7c7d9;
  --line: #182045;
  --surface: #090b1f;
  --panel: #111638;
  --teal: #00e5ff;
  --teal-dark: #00a6ff;
  --lime: #c7ff3d;
  --amber: #ffbf3d;
  --pink: #ff3df2;
  --violet: #7c5cff;
  --steel: #d7e7ff;
  font-family: "Courier New", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

html {
  scroll-behavior: auto;
}

body {
  min-height: 100vh;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 18% 12%, rgba(255, 61, 242, 0.2), transparent 22%),
    radial-gradient(circle at 80% 18%, rgba(0, 229, 255, 0.2), transparent 24%),
    linear-gradient(180deg, #090b1f 0%, #10143a 54%, #080816 100%);
  background-size: 100% 4px, auto, auto, auto;
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  z-index: 60;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 50%, rgba(0, 0, 0, 0.08) 50%),
    linear-gradient(90deg, rgba(255, 0, 0, 0.035), rgba(0, 255, 255, 0.025), rgba(0, 0, 255, 0.035));
  background-size: 100% 6px, 7px 100%;
  mix-blend-mode: screen;
  opacity: 0.38;
}

.site-header {
  border-bottom: 4px solid #000;
  background: rgba(9, 11, 31, 0.94);
  box-shadow: 0 6px 0 #27317a, 0 14px 28px rgba(0, 0, 0, 0.36);
}

.brand,
.nav-links,
.header-cta,
.button,
.language-switcher button,
h1,
h2,
h3,
.eyebrow,
.hero-panel strong,
.metrics strong {
  text-transform: uppercase;
}

.brand {
  color: #ffffff;
  text-shadow: 2px 2px 0 #000;
}

.brand-mark {
  border: 3px solid #000;
  border-radius: 0;
  background: var(--pink);
  color: #071022;
  box-shadow: 4px 4px 0 var(--teal);
}

.nav-links {
  color: #d6e2ff;
}

.nav-links a {
  padding: 8px 2px;
  border-bottom: 3px solid transparent;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--lime);
  border-color: var(--lime);
}

.header-cta,
.button {
  min-height: 48px;
  border: 3px solid #000;
  border-radius: 0;
  background: var(--amber);
  color: #14121e;
  box-shadow: 5px 5px 0 #000;
}

.button.primary {
  background: var(--lime);
  color: #14121e;
  box-shadow: 5px 5px 0 #000;
}

.button.secondary {
  border-color: #000;
  background: var(--teal);
  color: #071022;
}

.header-cta:hover,
.button:hover,
.language-switcher button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 #000;
}

.language-switcher {
  border: 3px solid #000;
  border-radius: 0;
  background: #111638;
  box-shadow: 4px 4px 0 #000;
}

.language-switcher button {
  border-right: 3px solid #000;
  color: #d6e2ff;
}

.language-switcher button.is-active {
  background: var(--pink);
  color: #071022;
}

.hero,
.page-hero,
.contact-page {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero {
  min-height: calc(100vh - 76px);
  align-items: center;
  border-bottom: 6px solid #000;
  background:
    linear-gradient(180deg, rgba(9, 11, 31, 0.2), rgba(9, 11, 31, 0.78)),
    repeating-linear-gradient(90deg, transparent 0 52px, rgba(0, 229, 255, 0.08) 52px 56px),
    linear-gradient(180deg, #111638 0%, #090b1f 100%);
}

.hero-media {
  z-index: -3;
  opacity: 0.34;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(transparent 0 76%, rgba(0, 229, 255, 0.24) 76% 78%, transparent 78%),
    repeating-linear-gradient(90deg, transparent 0 76px, rgba(199, 255, 61, 0.18) 76px 79px),
    repeating-linear-gradient(0deg, transparent 0 76px, rgba(255, 61, 242, 0.13) 76px 79px);
}

.hero-media::after {
  background:
    radial-gradient(circle at 75% 44%, rgba(255, 61, 242, 0.44), transparent 20%),
    linear-gradient(90deg, rgba(9, 11, 31, 0.94) 0%, rgba(9, 11, 31, 0.74) 55%, rgba(9, 11, 31, 0.48) 100%);
}

.hero-media img {
  image-rendering: pixelated;
  filter: grayscale(0.8) contrast(1.8) saturate(1.5);
  transform: scale(1.04);
}

.sensor-map span {
  width: 18px;
  height: 18px;
  border: 3px solid #000;
  border-radius: 0;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(199, 255, 61, 0.18), 0 0 22px var(--lime);
}

.hero-content {
  max-width: 780px;
  padding: clamp(18px, 4vw, 34px);
  border: 4px solid #000;
  background: rgba(12, 17, 50, 0.84);
  box-shadow: 10px 10px 0 #000, inset 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.hero-content,
.hero-panel,
.page-hero > :not(.arcade-robot),
.contact-page > :not(.arcade-robot) {
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--lime);
  letter-spacing: 0.08em;
  text-shadow: 2px 2px 0 #000;
}

h1,
h2 {
  color: #ffffff;
  overflow-wrap: anywhere;
  text-shadow: 4px 4px 0 #000, 7px 7px 0 var(--pink);
}

h1 {
  font-size: clamp(3.6rem, 10vw, 8.8rem);
}

h2 {
  font-size: clamp(2rem, 4.6vw, 4.4rem);
}

h3 {
  color: #ffffff;
}

.hero-copy,
.intro p,
.platform-copy p,
.contact p,
.service-grid p,
.cases p,
.page-hero p,
.route-grid p,
.process-list p {
  color: #d4e2f8;
}

.hero-panel {
  border: 4px solid #000;
  border-radius: 0;
  background: #000;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.78);
}

.hero-panel div {
  background: #10143a;
}

.hero-panel span,
.dash-stats span,
.metrics span {
  color: #aebadb;
}

.hero-panel strong {
  color: var(--lime);
  text-shadow: 2px 2px 0 #000;
}

.section,
.page-hero,
.split-section,
.route-grid,
.metrics,
.contact {
  position: relative;
}

.page-hero {
  min-height: 460px;
  padding-left: clamp(18px, 3vw, 42px);
  padding-right: clamp(18px, 3vw, 42px);
  border-bottom: 5px solid #000;
  background:
    linear-gradient(135deg, rgba(255, 61, 242, 0.18), transparent 34%),
    linear-gradient(315deg, rgba(0, 229, 255, 0.18), transparent 38%),
    #10143a;
}

.page-hero::before,
.contact-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(0, 229, 255, 0.11) 42px 45px),
    repeating-linear-gradient(0deg, transparent 0 42px, rgba(199, 255, 61, 0.08) 42px 45px);
}

.service-grid article,
.case-list article,
.route-grid a,
.process-list article,
.contact-form {
  position: relative;
  overflow: hidden;
  border: 4px solid #000;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 38%),
    #141a44;
  box-shadow: 8px 8px 0 #000;
}

.service-grid article,
.route-grid a {
  padding-bottom: 96px;
}

.route-grid a:hover {
  border-color: #000;
  box-shadow: 10px 10px 0 #000, 0 0 0 4px var(--lime);
}

.icon {
  border: 3px solid #000;
  border-radius: 0;
  background: var(--teal);
  color: #071022;
  box-shadow: 4px 4px 0 #000;
}

.platform {
  border: 5px solid #000;
  border-radius: 0;
  background:
    radial-gradient(circle at 28% 16%, rgba(255, 61, 242, 0.22), transparent 30%),
    #0d1230;
  box-shadow: 10px 10px 0 #000;
}

.check-list li::before {
  border-radius: 0;
  box-shadow: 3px 3px 0 #000;
}

.dashboard {
  border: 4px solid #000;
  border-radius: 0;
  background:
    linear-gradient(rgba(0, 229, 255, 0.11) 3px, transparent 3px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.11) 3px, transparent 3px),
    #050817;
  background-size: 38px 38px;
  box-shadow: 8px 8px 0 #000, inset 0 0 0 4px rgba(255, 255, 255, 0.05);
}

.dash-header {
  border-bottom: 4px solid #000;
  background: #141a44;
}

.dash-header strong {
  color: var(--lime);
}

.dash-map::before,
.dash-map::after {
  border: 3px solid rgba(199, 255, 61, 0.28);
  border-radius: 0;
}

.robot {
  border: 4px solid #000;
  border-radius: 0;
  box-shadow: 0 0 0 10px rgba(199, 255, 61, 0.12), 5px 5px 0 #000;
}

.dash-stats {
  border-top: 4px solid #000;
  background: #000;
}

.dash-stats div {
  background: #141a44;
}

.case-list img {
  filter: saturate(1.7) contrast(1.35);
  image-rendering: pixelated;
}

.case-list article::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 50%, rgba(0, 0, 0, 0.06) 50%),
    linear-gradient(90deg, rgba(0, 229, 255, 0.08), transparent 18%, rgba(255, 61, 242, 0.08));
  background-size: 100% 6px, auto;
}

.metrics {
  border: 5px solid #000;
  border-radius: 0;
  background: #000;
  box-shadow: 10px 10px 0 #000;
}

.metrics article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    #151c4d;
}

.metrics strong {
  color: var(--lime);
  text-shadow: 4px 4px 0 #000, 6px 6px 0 var(--pink);
}

.contact-form input,
.contact-form textarea {
  border: 3px solid #000;
  border-radius: 0;
  background: #080b20;
  color: #ffffff;
  box-shadow: inset 3px 3px 0 rgba(255, 255, 255, 0.08);
}

.contact-form label,
.form-note {
  color: var(--lime);
}

.site-footer {
  border-top: 5px solid #000;
  background: #050817;
  color: #b7c7d9;
}

.arcade-robot {
  position: absolute;
  z-index: 1;
  width: 220px;
  height: 270px;
  right: clamp(28px, 8vw, 120px);
  top: 18%;
  pointer-events: none;
  filter: drop-shadow(12px 12px 0 #000);
  animation: robot-bob 1.8s steps(2, end) infinite;
}

.arcade-robot span,
.arcade-robot i {
  position: absolute;
  display: block;
}

.arcade-robot .antenna {
  left: 98px;
  top: 0;
  width: 22px;
  height: 42px;
  background: var(--lime);
  box-shadow:
    0 -18px 0 var(--pink),
    -54px 50px 0 var(--teal),
    54px 50px 0 var(--teal);
}

.arcade-robot .head {
  left: 34px;
  top: 46px;
  width: 152px;
  height: 104px;
  border: 10px solid #000;
  background: var(--teal);
}

.arcade-robot .head::before,
.arcade-robot .head::after {
  content: "";
  position: absolute;
  top: 28px;
  width: 28px;
  height: 28px;
  background: #071022;
  box-shadow: 0 0 0 8px #ffffff;
}

.arcade-robot .head::before {
  left: 24px;
}

.arcade-robot .head::after {
  right: 24px;
}

.arcade-robot .head i:first-child {
  left: 48px;
  bottom: 18px;
  width: 56px;
  height: 10px;
  background: #000;
}

.arcade-robot .torso {
  left: 54px;
  top: 154px;
  width: 112px;
  height: 78px;
  border: 10px solid #000;
  background: var(--pink);
}

.arcade-robot .torso i {
  top: 22px;
  width: 18px;
  height: 18px;
  background: var(--lime);
  box-shadow: 3px 3px 0 #000;
}

.arcade-robot .torso i:nth-child(1) {
  left: 18px;
}

.arcade-robot .torso i:nth-child(2) {
  left: 48px;
}

.arcade-robot .torso i:nth-child(3) {
  left: 78px;
}

.arcade-robot .torso::before,
.arcade-robot .torso::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 44px;
  height: 18px;
  background: var(--amber);
  box-shadow: 0 28px 0 var(--amber);
}

.arcade-robot .torso::before {
  left: -62px;
}

.arcade-robot .torso::after {
  right: -62px;
}

.arcade-robot .legs {
  left: 70px;
  top: 234px;
  width: 28px;
  height: 36px;
  background: var(--teal);
  box-shadow: 52px 0 0 var(--teal), 0 28px 0 #000, 52px 28px 0 #000;
}

.mini-bot {
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 46px;
  height: 34px;
  border: 5px solid #000;
  background: var(--teal);
  box-shadow: 5px 5px 0 #000;
}

.mini-bot::before,
.mini-bot::after {
  content: "";
  position: absolute;
}

.mini-bot::before {
  left: 8px;
  top: 8px;
  width: 7px;
  height: 7px;
  background: #071022;
  box-shadow: 18px 0 0 #071022;
}

.mini-bot::after {
  left: 13px;
  top: -17px;
  width: 10px;
  height: 14px;
  background: var(--lime);
  box-shadow: 7px -8px 0 var(--pink);
}

.mini-bot-2 {
  background: var(--pink);
}

.mini-bot-3 {
  background: var(--amber);
}

@keyframes robot-bob {
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 920px) {
  .hero {
    min-height: 920px;
  }

  .arcade-robot {
    top: auto;
    right: 28px;
    bottom: 210px;
    width: 150px;
    height: 190px;
    transform: scale(0.72);
    transform-origin: bottom right;
  }
}

@media (max-width: 560px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .header-cta {
    display: none;
  }

  .language-switcher {
    justify-self: end;
  }

  .hero-content {
    padding: 18px;
  }

  h1,
  .page-hero h1,
  .contact-page h1 {
    font-size: clamp(2rem, 10vw, 2.55rem);
    line-height: 1.04;
    text-shadow: 3px 3px 0 #000, 5px 5px 0 var(--pink);
  }

  h2 {
    font-size: clamp(1.75rem, 10vw, 2.55rem);
    line-height: 1.02;
  }

  .page-hero {
    min-height: 380px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .arcade-robot {
    opacity: 0.42;
    right: 6px;
    bottom: 210px;
  }
}

/* Data East-inspired run-and-gun refinement */
:root {
  --metal: #a8b5c6;
  --metal-dark: #4f6175;
  --asphalt: #151923;
  --danger: #ff4b35;
}

body {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 16% 12%, rgba(0, 166, 255, 0.16), transparent 24%),
    radial-gradient(circle at 84% 20%, rgba(255, 191, 61, 0.12), transparent 22%),
    linear-gradient(180deg, #080b16 0%, #12172a 48%, #080910 100%);
}

.site-header {
  background:
    linear-gradient(180deg, #1a2441, #070914);
  box-shadow: 0 5px 0 #000, 0 9px 0 #2d3a69;
}

.brand-mark {
  background: var(--metal);
  color: #0b1020;
  box-shadow: 4px 4px 0 var(--teal);
}

.header-cta,
.button {
  background: var(--amber);
}

.language-switcher button.is-active {
  background: var(--teal);
}

.hero,
.page-hero,
.contact-page {
  background:
    linear-gradient(180deg, rgba(7, 10, 20, 0.22), rgba(7, 10, 20, 0.78)),
    repeating-linear-gradient(90deg, transparent 0 88px, rgba(0, 166, 255, 0.1) 88px 92px),
    linear-gradient(180deg, #26314f 0 44%, #171d30 44% 70%, #0b0f18 70%);
}

.hero::before,
.page-hero::after,
.contact-page::after {
  content: "";
  position: absolute;
  inset: auto -4vw 23% -4vw;
  z-index: 0;
  height: 210px;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(0, 0, 0, 0.32) 8% 12%, transparent 12% 20%, rgba(0, 0, 0, 0.34) 20% 26%, transparent 26% 38%, rgba(0, 0, 0, 0.32) 38% 46%, transparent 46%),
    linear-gradient(180deg, #2c3656 0 18%, #151b2c 18% 100%);
  clip-path: polygon(0 32%, 100% 0, 100% 100%, 0 100%);
}

.hero::after,
.page-hero::before,
.contact-page::before {
  content: "";
  position: absolute;
  inset: auto -10vw 0 -10vw;
  z-index: 0;
  height: 32%;
  background:
    repeating-linear-gradient(90deg, transparent 0 78px, rgba(255, 191, 61, 0.2) 78px 84px),
    linear-gradient(165deg, transparent 0 48%, rgba(255, 191, 61, 0.28) 48% 51%, transparent 51%),
    linear-gradient(195deg, transparent 0 48%, rgba(255, 191, 61, 0.22) 48% 51%, transparent 51%),
    var(--asphalt);
  border-top: 6px solid #000;
  transform: perspective(420px) rotateX(48deg);
  transform-origin: top center;
}

.hero-media {
  opacity: 0.22;
}

.hero-media::after {
  background:
    radial-gradient(circle at 78% 48%, rgba(0, 166, 255, 0.38), transparent 19%),
    linear-gradient(90deg, rgba(8, 10, 18, 0.95) 0%, rgba(8, 10, 18, 0.72) 56%, rgba(8, 10, 18, 0.52) 100%);
}

.hero-content {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 34%),
    rgba(16, 22, 42, 0.92);
}

h1,
h2 {
  text-shadow: 4px 4px 0 #000, 7px 7px 0 #33466c;
}

.eyebrow,
.hero .eyebrow,
.hero-panel strong,
.metrics strong,
.form-note,
.contact-form label {
  color: var(--amber);
}

.button.primary,
.sensor-map span,
.check-list li::before {
  background: var(--teal);
}

.button.secondary,
.icon {
  background: var(--metal);
}

.hero-panel,
.metrics,
.dashboard,
.platform,
.service-grid article,
.case-list article,
.route-grid a,
.process-list article,
.contact-form,
.feature-grid article,
.benefit-band,
.concept-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 34%),
    #11182f;
}

.feature-grid article,
.benefit-band,
.concept-card {
  border: 4px solid #000;
  border-radius: 0;
  box-shadow: 8px 8px 0 #000;
}

.feature-grid img {
  filter: saturate(1.35) contrast(1.18);
}

.feature-grid p,
.benefit-grid p,
.concept-section p {
  color: #d4e2f8;
}

.check-list.dark {
  color: #d4e2f8;
}

.benefit-grid {
  border: 4px solid #000;
  border-radius: 0;
  background: #000;
}

.benefit-grid article {
  background: #141a44;
}

.benefit-grid span,
.concept-card strong {
  color: var(--amber);
}

.concept-card span {
  color: #b7c7d9;
}

.arcade-hud {
  position: absolute;
  z-index: 4;
  top: 18px;
  left: clamp(18px, 4vw, 54px);
  display: grid;
  grid-template-columns: auto auto auto minmax(140px, 220px);
  gap: 12px;
  align-items: center;
  padding: 8px 12px;
  border: 4px solid #000;
  background: #070914;
  box-shadow: 5px 5px 0 #000;
  color: #ffffff;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.arcade-hud strong {
  color: var(--teal);
}

.hud-bar {
  height: 14px;
  border: 3px solid #000;
  background: #2f1720;
}

.hud-bar i {
  display: block;
  width: 74%;
  height: 100%;
  background:
    linear-gradient(90deg, var(--danger) 0 24%, var(--amber) 24% 58%, var(--teal) 58%);
}

.arcade-floor {
  position: absolute;
  z-index: 1;
  left: -10vw;
  right: -10vw;
  bottom: 0;
  height: 22%;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, transparent 0 96px, rgba(255, 255, 255, 0.08) 96px 102px),
    linear-gradient(180deg, rgba(255, 191, 61, 0.22), transparent 24%),
    #11131b;
  border-top: 6px solid #000;
}

.arcade-robot {
  top: 24%;
  width: 250px;
  height: 300px;
  filter: drop-shadow(14px 14px 0 #000) drop-shadow(0 0 14px rgba(0, 229, 255, 0.18));
  animation: robot-ready 1.4s steps(2, end) infinite;
}

.arcade-robot .antenna {
  left: 116px;
  width: 18px;
  height: 32px;
  background: var(--danger);
  box-shadow:
    0 -14px 0 var(--amber),
    -68px 62px 0 var(--metal-dark),
    68px 62px 0 var(--metal-dark);
}

.arcade-robot .head {
  left: 36px;
  top: 44px;
  width: 178px;
  height: 116px;
  background:
    linear-gradient(90deg, var(--metal-dark) 0 14%, var(--metal) 14% 72%, #dce8f2 72% 100%);
}

.arcade-robot .head::before,
.arcade-robot .head::after {
  top: 34px;
  width: 34px;
  height: 24px;
  background: #06101c;
  box-shadow: 0 0 0 8px var(--teal);
}

.arcade-robot .head i:first-child {
  left: 54px;
  bottom: 18px;
  width: 70px;
  height: 12px;
  background: #11131b;
}

.arcade-robot .torso {
  left: 58px;
  top: 166px;
  width: 134px;
  height: 88px;
  background:
    linear-gradient(90deg, var(--metal-dark) 0 18%, var(--metal) 18% 74%, #e6eef6 74%);
}

.arcade-robot .torso i {
  background: var(--danger);
}

.arcade-robot .torso i:nth-child(2) {
  background: var(--amber);
}

.arcade-robot .torso i:nth-child(3) {
  background: var(--teal);
}

.arcade-robot .torso::before,
.arcade-robot .torso::after {
  width: 56px;
  height: 20px;
  background: var(--metal);
  box-shadow: 0 34px 0 var(--metal-dark);
}

.arcade-robot .torso::before {
  left: -78px;
}

.arcade-robot .torso::after {
  right: -78px;
}

.arcade-robot .legs {
  left: 78px;
  top: 254px;
  width: 34px;
  height: 42px;
  background: var(--metal);
  box-shadow: 58px 0 0 var(--metal-dark), 0 32px 0 #000, 58px 32px 0 #000;
}

.mini-bot {
  background:
    linear-gradient(90deg, var(--metal-dark) 0 24%, var(--metal) 24% 78%, #e4edf8 78%);
}

.mini-bot-2 {
  background:
    linear-gradient(90deg, #5d667a 0 24%, #b5c2d5 24% 78%, #eaf2fa 78%);
}

.mini-bot-3 {
  background:
    linear-gradient(90deg, #3d5264 0 24%, #8eb4c9 24% 78%, #d7f4ff 78%);
}

.mini-bot::after {
  background: var(--danger);
  box-shadow: 7px -8px 0 var(--amber);
}

@keyframes robot-ready {
  50% {
    transform: translateY(-5px) translateX(3px);
  }
}

@media (max-width: 920px) {
  .arcade-hud {
    grid-template-columns: auto auto;
    max-width: calc(100vw - 36px);
    font-size: 0.72rem;
  }
}

@media (max-width: 560px) {
  .arcade-hud {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    overflow: hidden;
  }

  .language-switcher {
    max-width: 126px;
  }

  .page-hero,
  .contact-page {
    width: 100vw;
    padding-left: 18px;
    padding-right: 18px;
  }

  .page-hero h1,
  .contact-page h1 {
    max-width: min(320px, calc(100vw - 36px));
    font-size: clamp(1.42rem, 7.2vw, 1.82rem);
    line-height: 1.12;
  }

  .page-hero p,
  .contact-page p {
    max-width: min(330px, calc(100vw - 36px));
    font-size: 0.98rem;
  }

  .arcade-robot {
    opacity: 0.34;
    right: -30px;
  }
}

/* Armored arcade officer robot */
.arcade-robot {
  top: 20%;
  width: 280px;
  height: 360px;
  right: clamp(18px, 7vw, 104px);
  filter: drop-shadow(16px 16px 0 #000) drop-shadow(0 0 16px rgba(0, 229, 255, 0.2));
}

.arcade-robot .antenna {
  display: none;
}

.arcade-robot .head {
  left: 78px;
  top: 12px;
  width: 124px;
  height: 118px;
  border: 10px solid #000;
  background:
    linear-gradient(90deg, #3e4f63 0 14%, #96a9bb 14% 34%, #d8e4ee 34% 78%, #718397 78% 100%);
  box-shadow:
    -18px 18px 0 #000,
    18px 18px 0 #000,
    inset 0 -18px 0 #5c6e82;
}

.arcade-robot .head::before {
  left: 16px;
  top: 34px;
  width: 72px;
  height: 20px;
  background:
    linear-gradient(90deg, #04070d 0 18%, #00e5ff 18% 42%, #06101c 42% 100%);
  box-shadow:
    0 0 0 7px #000,
    0 0 0 11px #27d9ff;
}

.arcade-robot .head::after {
  left: 34px;
  right: auto;
  top: 80px;
  width: 48px;
  height: 12px;
  background: #171b24;
  box-shadow:
    -12px -16px 0 #6f8094,
    12px -16px 0 #dce8f2,
    0 16px 0 #000;
}

.arcade-robot .head i:first-child {
  left: 26px;
  bottom: -30px;
  width: 72px;
  height: 28px;
  background: #2d3848;
  box-shadow:
    0 0 0 8px #000,
    inset 18px 0 0 #8fa2b4,
    inset -14px 0 0 #526174;
}

.arcade-robot .torso {
  left: 70px;
  top: 150px;
  width: 140px;
  height: 122px;
  border: 10px solid #000;
  background:
    linear-gradient(90deg, #3a4656 0 16%, #a5b7c8 16% 38%, #dbe7f1 38% 72%, #637489 72% 100%);
  clip-path: polygon(10% 0, 90% 0, 100% 22%, 82% 100%, 18% 100%, 0 22%);
  box-shadow:
    inset 0 -18px 0 #4c5b6c,
    inset 0 18px 0 rgba(255, 255, 255, 0.18);
}

.arcade-robot .torso i {
  top: 42px;
  width: 18px;
  height: 18px;
  background: #101722;
  box-shadow: 0 0 0 5px #000;
}

.arcade-robot .torso i:nth-child(1) {
  left: 36px;
  background: var(--danger);
}

.arcade-robot .torso i:nth-child(2) {
  left: 62px;
  background: var(--amber);
}

.arcade-robot .torso i:nth-child(3) {
  left: 88px;
  background: var(--teal);
}

.arcade-robot .torso::before {
  left: -76px;
  top: 12px;
  width: 70px;
  height: 34px;
  background:
    linear-gradient(90deg, #536478, #d7e2ec);
  box-shadow:
    0 0 0 8px #000,
    -22px 44px 0 #5b6a7e,
    -22px 44px 0 8px #000,
    -12px 82px 0 #a5b7c8,
    -12px 82px 0 8px #000;
}

.arcade-robot .torso::after {
  right: -118px;
  top: 16px;
  width: 100px;
  height: 24px;
  background:
    linear-gradient(90deg, #cddae6 0 62%, #151923 62% 82%, var(--danger) 82%);
  box-shadow:
    0 0 0 8px #000,
    70px 2px 0 #151923,
    70px 2px 0 8px #000,
    122px 8px 0 var(--amber);
}

.arcade-robot .legs {
  left: 82px;
  top: 272px;
  width: 38px;
  height: 58px;
  background:
    linear-gradient(90deg, #4c5b6c, #c6d4df);
  box-shadow:
    58px 0 0 #65758a,
    0 0 0 8px #000,
    58px 0 0 8px #000,
    -10px 62px 0 #2f3948,
    -10px 62px 0 8px #000,
    58px 62px 0 #2f3948,
    58px 62px 0 8px #000;
}

@media (max-width: 920px) {
  .arcade-robot {
    transform: scale(0.78);
    transform-origin: bottom right;
  }
}

@media (max-width: 560px) {
  .arcade-robot {
    right: -84px;
    bottom: 170px;
    transform: scale(0.62);
  }
}

/* Friendly tracked robot homage */
.arcade-robot {
  top: 14%;
  width: 320px;
  height: 430px;
  right: clamp(8px, 6vw, 86px);
  filter: drop-shadow(16px 16px 0 #000) drop-shadow(0 0 16px rgba(0, 229, 255, 0.18));
  animation: robot-curious 1.6s steps(2, end) infinite;
}

.arcade-robot .antenna {
  display: block;
  left: 130px;
  top: 0;
  width: 58px;
  height: 12px;
  background: #cfd8df;
  transform: rotate(-14deg);
  box-shadow:
    0 0 0 6px #000,
    60px 0 0 #9caab8,
    60px 0 0 6px #000;
}

.arcade-robot .head {
  left: 82px;
  top: 34px;
  width: 176px;
  height: 78px;
  border: 8px solid #000;
  background:
    linear-gradient(90deg, #5e6b79 0 12%, #c7d1d9 12% 42%, #eef4f8 42% 68%, #8795a4 68% 100%);
  box-shadow:
    inset 0 -14px 0 #697887,
    0 18px 0 #000;
}

.arcade-robot .head::before,
.arcade-robot .head::after {
  top: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #151923 0 22%, #ffbf3d 22% 38%, #5c6673 38% 64%, #10131b 64%);
  box-shadow: 0 0 0 7px #000;
}

.arcade-robot .head::before {
  left: 22px;
}

.arcade-robot .head::after {
  left: auto;
  right: 22px;
}

.arcade-robot .head i:first-child {
  left: 68px;
  bottom: -28px;
  width: 42px;
  height: 18px;
  background: #c63b2e;
  box-shadow:
    0 0 0 6px #000,
    0 24px 0 #8b98a7,
    0 24px 0 6px #000;
}

.arcade-robot .torso {
  left: 106px;
  top: 150px;
  width: 118px;
  height: 146px;
  border: 8px solid #000;
  clip-path: polygon(18% 0, 82% 0, 100% 100%, 0 100%);
  background:
    linear-gradient(90deg, #6c7a88 0 18%, #d7e1e8 18% 55%, #f1f6f9 55% 72%, #7c8b9a 72% 100%);
  box-shadow:
    inset 0 -18px 0 #566575,
    inset 0 18px 0 rgba(255, 255, 255, 0.2);
}

.arcade-robot .torso i {
  width: 16px;
  height: 36px;
  top: 72px;
  background: #11131b;
  box-shadow: 0 0 0 5px #000;
}

.arcade-robot .torso i:nth-child(1) {
  left: 32px;
  background: var(--amber);
}

.arcade-robot .torso i:nth-child(2) {
  left: 56px;
  background: #2e3846;
}

.arcade-robot .torso i:nth-child(3) {
  left: 80px;
  background: var(--teal);
}

.arcade-robot .torso::before {
  left: -108px;
  top: 10px;
  width: 102px;
  height: 22px;
  background: #cfd8df;
  transform: rotate(-10deg);
  box-shadow:
    0 0 0 7px #000,
    -34px -48px 0 #9caab8,
    -34px -48px 0 7px #000,
    -58px -86px 0 #dbe3e8,
    -58px -86px 0 7px #000,
    -74px -124px 0 #cfd8df,
    -74px -124px 0 7px #000,
    -66px -156px 0 var(--teal),
    -90px -156px 0 var(--teal),
    -114px -156px 0 var(--teal);
}

.arcade-robot .torso::after {
  right: -100px;
  top: -12px;
  width: 58px;
  height: 158px;
  background:
    linear-gradient(90deg, #151923 0 18%, #8795a4 18% 62%, #52b9ee 62% 100%);
  transform: rotate(-14deg);
  box-shadow:
    0 0 0 7px #000,
    inset 0 -20px 0 #263140;
}

.arcade-robot .legs {
  left: 56px;
  top: 314px;
  width: 210px;
  height: 54px;
  border-radius: 0;
  background:
    repeating-linear-gradient(90deg, #151923 0 16px, #6f7b87 16px 24px),
    #4b5864;
  box-shadow:
    0 0 0 9px #000,
    18px 44px 0 #cfd8df,
    18px 44px 0 9px #000,
    128px 44px 0 #cfd8df,
    128px 44px 0 9px #000,
    74px -26px 0 #52b9ee,
    74px -26px 0 9px #000;
}

.mini-bot {
  width: 58px;
  height: 34px;
  border-radius: 0;
  background:
    repeating-linear-gradient(90deg, #151923 0 8px, #8a98a6 8px 12px);
}

.mini-bot::before {
  left: 8px;
  top: -40px;
  width: 42px;
  height: 28px;
  background:
    radial-gradient(circle at 30% 50%, #ffbf3d 0 18%, #11131b 18% 34%, transparent 34%),
    radial-gradient(circle at 70% 50%, #ffbf3d 0 18%, #11131b 18% 34%, transparent 34%),
    #cfd8df;
  box-shadow: 0 0 0 5px #000, 8px 28px 0 #9caab8, 8px 28px 0 5px #000;
}

.mini-bot::after {
  left: 21px;
  top: -12px;
  width: 14px;
  height: 18px;
  background: #9caab8;
  box-shadow: 0 0 0 4px #000;
}

@keyframes robot-curious {
  50% {
    transform: translateY(-6px) rotate(-1deg);
  }
}

@media (max-width: 920px) {
  .arcade-robot {
    transform: scale(0.72);
    transform-origin: bottom right;
  }
}

@media (max-width: 560px) {
  .arcade-robot {
    right: -112px;
    bottom: 142px;
    transform: scale(0.5);
    opacity: 0.4;
  }
}

.is-intro-active {
  overflow: hidden;
}

.intro-gate {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 26% 30%, rgba(0, 229, 255, 0.22), transparent 28%),
    radial-gradient(circle at 72% 42%, rgba(255, 191, 61, 0.16), transparent 26%),
    linear-gradient(180deg, #060810 0%, #111731 54%, #05060c 100%);
  color: #ffffff;
  cursor: crosshair;
  isolation: isolate;
}

.intro-gate::before,
.intro-gate::after,
.intro-noise {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.intro-gate::before {
  z-index: -3;
  background:
    repeating-linear-gradient(90deg, transparent 0 58px, rgba(0, 229, 255, 0.12) 58px 62px),
    repeating-linear-gradient(0deg, transparent 0 58px, rgba(255, 191, 61, 0.08) 58px 62px);
  transform: perspective(460px) rotateX(58deg) translateY(18%);
  transform-origin: bottom center;
}

.intro-gate::after {
  z-index: 4;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 50%, rgba(0, 0, 0, 0.16) 50%),
    linear-gradient(90deg, rgba(255, 0, 0, 0.05), rgba(0, 255, 255, 0.04), rgba(0, 0, 255, 0.05));
  background-size: 100% 6px, 8px 100%;
  mix-blend-mode: screen;
  opacity: 0.48;
}

.intro-noise {
  z-index: -2;
  background:
    conic-gradient(from 90deg, transparent, rgba(255, 255, 255, 0.14), transparent 18%, rgba(0, 229, 255, 0.16), transparent 34%),
    repeating-radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 7px);
  image-rendering: pixelated;
  opacity: 0.38;
  animation: intro-noise 900ms steps(4, end) infinite;
}

.intro-panel {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100vw - 36px));
  padding: clamp(22px, 5vw, 48px);
  border: 5px solid #000;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 36%),
    rgba(10, 14, 32, 0.9);
  box-shadow:
    12px 12px 0 #000,
    inset 0 0 0 4px rgba(255, 255, 255, 0.06);
  text-align: center;
}

.intro-logo {
  display: block;
  width: min(300px, 58vw);
  height: auto;
  margin: 0 auto 18px;
  filter: drop-shadow(5px 5px 0 #000);
}

.intro-lab,
.intro-status,
.intro-speed {
  margin: 0;
  color: var(--amber);
  font-size: clamp(0.78rem, 1.4vw, 1rem);
  font-weight: 900;
  text-transform: uppercase;
}

.intro-panel h2 {
  margin: 14px auto 18px;
  color: #ffffff;
  font-size: clamp(2.3rem, 8vw, 6.2rem);
  line-height: 0.88;
  text-shadow: 4px 4px 0 #000, 8px 8px 0 #2f446b;
}

.intro-clock {
  display: inline-grid;
  grid-template-columns: auto auto auto auto auto;
  align-items: center;
  gap: 10px;
  margin: 4px 0 20px;
  color: var(--teal);
  font-size: clamp(2.4rem, 8vw, 5.5rem);
  font-weight: 900;
  text-shadow: 4px 4px 0 #000;
}

.intro-clock i {
  color: #ffffff;
  font-style: normal;
}

.intro-status {
  color: #dce8f2;
}

.intro-enter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin: 28px 0 12px;
  padding: 0 24px;
  border: 4px solid #000;
  border-radius: 0;
  background: var(--teal);
  color: #07101a;
  box-shadow: 6px 6px 0 #000;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
}

.intro-enter:hover,
.intro-enter:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 #000;
  outline: 0;
}

.intro-speed {
  color: #8fa2b4;
}

.intro-robot {
  position: absolute;
  z-index: 1;
  right: clamp(-60px, 5vw, 90px);
  bottom: clamp(10px, 8vh, 70px);
  width: 320px;
  height: 430px;
  pointer-events: none;
  filter: drop-shadow(16px 16px 0 #000);
  opacity: 0.72;
  transform: scale(1.18);
}

.intro-robot span,
.intro-robot i {
  position: absolute;
  display: block;
}

.intro-robot .antenna {
  left: 130px;
  top: 0;
  width: 58px;
  height: 12px;
  background: #cfd8df;
  transform: rotate(-14deg);
  box-shadow:
    0 0 0 6px #000,
    60px 0 0 #9caab8,
    60px 0 0 6px #000;
}

.intro-robot .head {
  left: 82px;
  top: 34px;
  width: 176px;
  height: 78px;
  border: 8px solid #000;
  background:
    linear-gradient(90deg, #5e6b79 0 12%, #c7d1d9 12% 42%, #eef4f8 42% 68%, #8795a4 68% 100%);
  box-shadow:
    inset 0 -14px 0 #697887,
    0 18px 0 #000;
}

.intro-robot .head::before,
.intro-robot .head::after {
  content: "";
  position: absolute;
  top: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #151923 0 22%, #ffbf3d 22% 38%, #5c6673 38% 64%, #10131b 64%);
  box-shadow: 0 0 0 7px #000;
}

.intro-robot .head::before {
  left: 22px;
}

.intro-robot .head::after {
  right: 22px;
}

.intro-robot .head i:first-child {
  left: 68px;
  bottom: -28px;
  width: 42px;
  height: 18px;
  background: #c63b2e;
  box-shadow:
    0 0 0 6px #000,
    0 24px 0 #8b98a7,
    0 24px 0 6px #000;
}

.intro-robot .torso {
  left: 106px;
  top: 150px;
  width: 118px;
  height: 146px;
  border: 8px solid #000;
  clip-path: polygon(18% 0, 82% 0, 100% 100%, 0 100%);
  background:
    linear-gradient(90deg, #6c7a88 0 18%, #d7e1e8 18% 55%, #f1f6f9 55% 72%, #7c8b9a 72% 100%);
  box-shadow:
    inset 0 -18px 0 #566575,
    inset 0 18px 0 rgba(255, 255, 255, 0.2);
}

.intro-robot .torso i {
  top: 72px;
  width: 16px;
  height: 36px;
  background: var(--amber);
  box-shadow: 0 0 0 5px #000;
}

.intro-robot .torso i:nth-child(1) {
  left: 32px;
}

.intro-robot .torso i:nth-child(2) {
  left: 56px;
  background: #2e3846;
}

.intro-robot .torso i:nth-child(3) {
  left: 80px;
  background: var(--teal);
}

.intro-robot .torso::before,
.intro-robot .torso::after {
  content: "";
  position: absolute;
}

.intro-robot .torso::before {
  left: -108px;
  top: 10px;
  width: 102px;
  height: 22px;
  background: #cfd8df;
  transform: rotate(-10deg);
  box-shadow:
    0 0 0 7px #000,
    -34px -48px 0 #9caab8,
    -34px -48px 0 7px #000,
    -58px -86px 0 #dbe3e8,
    -58px -86px 0 7px #000,
    -74px -124px 0 #cfd8df,
    -74px -124px 0 7px #000,
    -66px -156px 0 var(--teal),
    -90px -156px 0 var(--teal),
    -114px -156px 0 var(--teal);
}

.intro-robot .torso::after {
  right: -100px;
  top: -12px;
  width: 58px;
  height: 158px;
  background:
    linear-gradient(90deg, #151923 0 18%, #8795a4 18% 62%, #52b9ee 62% 100%);
  transform: rotate(-14deg);
  box-shadow:
    0 0 0 7px #000,
    inset 0 -20px 0 #263140;
}

.intro-robot .legs {
  left: 56px;
  top: 314px;
  width: 210px;
  height: 54px;
  background:
    repeating-linear-gradient(90deg, #151923 0 16px, #6f7b87 16px 24px),
    #4b5864;
  box-shadow:
    0 0 0 9px #000,
    18px 44px 0 #cfd8df,
    18px 44px 0 9px #000,
    128px 44px 0 #cfd8df,
    128px 44px 0 9px #000,
    74px -26px 0 #52b9ee,
    74px -26px 0 9px #000;
}

.intro-gate.is-speeding .intro-noise,
.intro-gate.is-speeding .intro-robot {
  animation-duration: 220ms;
}

.intro-gate.is-leaving {
  animation: intro-exit 520ms steps(8, end) forwards;
}

@keyframes intro-noise {
  50% {
    transform: translate(18px, -12px) scale(1.04);
    opacity: 0.55;
  }
}

@keyframes intro-exit {
  to {
    opacity: 0;
    transform: scale(1.08);
    filter: contrast(2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-noise,
  .intro-robot,
  .intro-gate.is-leaving {
    animation: none;
  }
}

@media (max-width: 720px) {
  .intro-panel {
    align-self: start;
    width: min(280px, calc(100vw - 28px));
    margin-top: 76px;
    padding: 18px;
  }

  .intro-logo {
    width: min(210px, 70vw);
    margin-bottom: 14px;
  }

  .intro-panel h2 {
    font-size: clamp(1.72rem, 9vw, 2.45rem);
    line-height: 0.94;
  }

  .intro-clock {
    gap: 5px;
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .intro-status {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .intro-enter {
    width: 100%;
    padding-inline: 10px;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .intro-robot {
    right: -128px;
    bottom: -48px;
    transform: scale(0.74);
    opacity: 0.34;
  }
}

.rental-hero h1 {
  width: min(980px, 100%);
}

.rental-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 22px;
  width: min(1240px, calc(100vw - 36px));
  margin: clamp(46px, 7vw, 88px) auto clamp(70px, 10vw, 120px);
  align-items: start;
}

.rental-main {
  display: grid;
  gap: 28px;
}

.rental-scenarios,
.rental-catalog,
.rental-quote {
  border: 5px solid #000;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 34%),
    #11182f;
  box-shadow: 9px 9px 0 #000;
}

.rental-scenarios {
  padding: 24px;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.scenario-grid span {
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 3px solid #000;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    #182141;
  color: #dce8f2;
  box-shadow: 4px 4px 0 #000;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.rental-catalog {
  padding: 24px;
}

.rental-catalog-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  margin-bottom: 22px;
}

.rental-catalog-head h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3.8vw, 3.8rem);
}

.rental-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: end;
}

.rental-filters button {
  min-height: 38px;
  border: 3px solid #000;
  background: #26314f;
  color: #dce8f2;
  box-shadow: 4px 4px 0 #000;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rental-filters button.is-active {
  background: var(--teal);
  color: #07101a;
}

.robot-rental-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.rental-card {
  position: relative;
  min-height: 520px;
  padding: 22px;
  border: 4px solid #000;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 50%, rgba(0, 0, 0, 0.06) 50%),
    linear-gradient(180deg, rgba(0, 229, 255, 0.08), transparent 34%),
    #141b38;
  background-size: 100% 6px, auto, auto;
  box-shadow: 8px 8px 0 #000;
  overflow: hidden;
}

.rental-card[hidden] {
  display: none;
}

.rental-card.is-selected {
  box-shadow: 8px 8px 0 #000, 0 0 0 4px var(--teal);
}

.rental-type {
  display: inline-grid;
  min-height: 30px;
  place-items: center;
  margin-top: 174px;
  padding: 0 10px;
  border: 3px solid #000;
  background: var(--amber);
  color: #11131b;
  box-shadow: 4px 4px 0 #000;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rental-card h3 {
  margin-top: 18px;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
}

.rental-card p,
.rental-card li,
.rental-quote p,
.quote-selected {
  color: #d4e2f8;
  line-height: 1.58;
}

.rental-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding-left: 18px;
}

.rental-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 20px 0;
  color: #ffffff;
}

.rental-price strong {
  color: var(--amber);
  font-size: 1.35rem;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 #000;
}

.rental-card .button {
  width: 100%;
}

.rental-sprite {
  position: absolute;
  top: 24px;
  right: 26px;
  width: 138px;
  height: 128px;
  filter: drop-shadow(7px 7px 0 #000);
}

.rental-photo {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 172px;
  height: 150px;
  object-fit: contain;
  padding: 10px;
  border: 4px solid #000;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 50%, rgba(0, 0, 0, 0.05) 50%),
    #e9eef3;
  background-size: 100% 6px, auto;
  box-shadow: 7px 7px 0 #000;
  image-rendering: auto;
}

.humanoid-sprite::before,
.guide-sprite::before,
.dog-sprite::before,
.clean-sprite::before,
.tracked-sprite::before,
.rental-sprite::after {
  content: "";
  position: absolute;
}

.humanoid-sprite::before {
  left: 42px;
  top: 0;
  width: 54px;
  height: 48px;
  border: 6px solid #000;
  background: linear-gradient(90deg, #8795a4, #e8f2f8);
  box-shadow:
    10px 58px 0 #cfd8df,
    10px 58px 0 6px #000,
    -22px 114px 0 #52b9ee,
    42px 114px 0 #52b9ee,
    -22px 114px 0 6px #000,
    42px 114px 0 6px #000;
}

.humanoid-sprite::after {
  left: 58px;
  top: 18px;
  width: 22px;
  height: 12px;
  background: var(--teal);
  box-shadow: 0 0 0 5px #000;
}

.guide-sprite::before {
  left: 38px;
  top: 8px;
  width: 62px;
  height: 42px;
  border: 6px solid #000;
  background: #cfd8df;
  box-shadow:
    12px 54px 0 #52b9ee,
    12px 54px 0 6px #000,
    12px 104px 0 #4b5864,
    12px 104px 0 6px #000;
}

.guide-sprite::after {
  left: 52px;
  top: 22px;
  width: 12px;
  height: 12px;
  background: var(--amber);
  box-shadow: 22px 0 0 var(--amber), 0 0 0 5px #000, 22px 0 0 5px #000;
}

.dog-sprite::before {
  left: 18px;
  top: 54px;
  width: 92px;
  height: 34px;
  border: 6px solid #000;
  background: #cfd8df;
  box-shadow:
    82px -18px 0 #8795a4,
    82px -18px 0 6px #000,
    6px 44px 0 #52b9ee,
    58px 44px 0 #52b9ee,
    6px 44px 0 6px #000,
    58px 44px 0 6px #000;
}

.dog-sprite::after {
  left: 104px;
  top: 46px;
  width: 10px;
  height: 10px;
  background: var(--teal);
  box-shadow: 18px 0 0 var(--teal);
}

.clean-sprite::before {
  left: 18px;
  top: 50px;
  width: 104px;
  height: 54px;
  border: 6px solid #000;
  background: linear-gradient(90deg, #8795a4 0 28%, #cfd8df 28% 76%, #52b9ee 76%);
  box-shadow:
    14px 58px 0 #151923,
    68px 58px 0 #151923,
    14px 58px 0 6px #000,
    68px 58px 0 6px #000;
}

.clean-sprite::after {
  left: 44px;
  top: 30px;
  width: 48px;
  height: 20px;
  background: var(--teal);
  box-shadow: 0 0 0 5px #000;
}

.tracked-sprite::before {
  left: 32px;
  top: 8px;
  width: 76px;
  height: 36px;
  border: 6px solid #000;
  background:
    radial-gradient(circle at 28% 50%, var(--amber) 0 16%, #151923 16% 32%, transparent 32%),
    radial-gradient(circle at 72% 50%, var(--amber) 0 16%, #151923 16% 32%, transparent 32%),
    #cfd8df;
  box-shadow:
    18px 52px 0 #d7e1e8,
    18px 52px 0 6px #000,
    0 104px 0 #4b5864,
    0 104px 0 6px #000;
}

.tracked-sprite::after {
  left: 84px;
  top: 78px;
  width: 56px;
  height: 18px;
  background: #52b9ee;
  box-shadow: 0 0 0 5px #000;
}

.rental-quote {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
  padding: 22px;
}

.rental-quote h2 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 2.8vw, 2.4rem);
}

.rental-quote label {
  display: grid;
  gap: 8px;
  color: var(--amber);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rental-quote input,
.rental-quote select {
  width: 100%;
  min-height: 44px;
  border: 3px solid #000;
  border-radius: 0;
  background: #080b20;
  color: #ffffff;
  padding: 10px;
  box-shadow: inset 3px 3px 0 rgba(255, 255, 255, 0.08);
}

.quote-lines {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 3px solid #000;
  color: #dce8f2;
  font-size: 0.88rem;
  text-transform: uppercase;
}

.quote-lines strong {
  color: var(--teal);
  text-shadow: 2px 2px 0 #000;
}

.quote-selected {
  min-height: 92px;
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 1100px) {
  .rental-shell,
  .rental-catalog-head {
    grid-template-columns: 1fr;
  }

  .rental-quote {
    position: static;
  }

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

@media (max-width: 720px) {
  .robot-rental-grid,
  .scenario-grid {
    grid-template-columns: 1fr;
  }

  .rental-shell {
    width: min(calc(100vw - 28px), 720px);
  }

  .rental-card {
    min-height: auto;
  }

  .rental-sprite,
  .rental-photo {
    opacity: 0.42;
  }
}
