:root {
  --bg: #070707;
  --bg-soft: #111111;
  --surface: #171717;
  --surface-2: #222222;
  --text: #f5f5f2;
  --muted: #b7b7af;
  --line: rgba(255, 255, 255, 0.16);
  --accent: #f2553d;
  --accent-2: #25d4ff;
  --white: #ffffff;
  --max: 1180px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 82px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 34px;
  background: rgba(7, 7, 7, 0.36);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    height 180ms ease;
}

.site-header.is-scrolled {
  height: 60px;
  background: rgba(7, 7, 7, 0.84);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 800;
}

.brand__logo {
  width: min(174px, 48vw);
  height: auto;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.language-switcher button {
  min-width: 34px;
  height: 30px;
  padding: 0 8px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 850;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 640px;
  height: 88svh;
  max-height: 880px;
  overflow: hidden;
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition:
    opacity 700ms ease,
    transform 1200ms ease;
}

.hero__image.is-active {
  opacity: 1;
  transform: scale(1);
}

@media (min-width: 861px) {
  .hero {
    min-height: 720px;
    height: 92svh;
  }

  .hero__media {
    inset: 72px 0 0;
  }

  .hero__image {
    object-position: center top;
  }
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.88) 0%, rgba(7, 7, 7, 0.52) 44%, rgba(7, 7, 7, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.86) 0%, rgba(7, 7, 7, 0) 38%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(680px, calc(100% - 48px));
  height: 100%;
  margin-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-top: 58px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: 5.15rem;
  line-height: 0.96;
}

h2 {
  margin-bottom: 20px;
  font-size: 3.2rem;
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.18;
}

.hero__lead {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.14rem;
}

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

@media (min-width: 861px) {
  .hero__content {
    justify-content: flex-start;
    width: min(800px, calc(100% - 48px));
    padding-top: clamp(116px, 15vh, 156px);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.btn span {
  margin-left: 10px;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--white);
  color: #080808;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--accent);
  color: var(--white);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.hero__panel {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 36px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  width: min(520px, calc(100% - 48px));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 7, 7, 0.56);
  backdrop-filter: blur(20px);
}

.hero__panel div {
  min-height: 96px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero__panel div:last-child {
  border-right: 0;
}

.hero__panel strong,
.hero__panel span {
  display: block;
}

.hero__panel strong {
  margin-bottom: 4px;
  font-size: 1.7rem;
  line-height: 1;
}

.hero__panel span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
}

.hero__controls {
  position: absolute;
  bottom: 42px;
  left: max(24px, calc((100vw - var(--max)) / 2));
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero__controls button {
  width: 42px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
}

.hero__controls button.is-active {
  background: var(--white);
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 112px 0;
}

.section__head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 54px;
}

.section__head--center {
  display: block;
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: start;
  padding-top: 88px;
}

.intro .section__head {
  display: block;
  margin-bottom: 0;
}

.intro__text {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
}

.service-card p {
  color: var(--muted);
}

.service-card__index {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--accent);
  font-weight: 900;
}

.service-card--image {
  padding: 0;
  background: #000;
}

.service-card--image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.image-band {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.image-band img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
}

.image-band::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.88), rgba(7, 7, 7, 0.2)),
    linear-gradient(0deg, rgba(7, 7, 7, 0.82), rgba(7, 7, 7, 0));
  content: "";
}

.image-band__content {
  position: absolute;
  bottom: 72px;
  left: max(24px, calc((100vw - var(--max)) / 2));
  z-index: 2;
  width: min(620px, calc(100% - 48px));
}

.scenario-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.scenario-list {
  display: grid;
  gap: 12px;
}

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

.scenario-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.scenario-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.scenario-gallery figure {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
}

.scenario-gallery__main {
  grid-column: 1 / -1;
  min-height: 430px;
}

.scenario-gallery img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.scenario-gallery figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 7, 7, 0.64);
  color: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
}

.capabilities {
  padding-top: 72px;
}

.capabilities__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 28px;
  align-items: stretch;
}

.capabilities__copy {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.capabilities__copy > p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1.06rem;
}

.capabilities__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.capabilities__list li {
  min-height: 70px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.86);
  overflow-wrap: anywhere;
}

.capabilities__visual {
  position: relative;
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
}

.capabilities__visual img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.capabilities__visual figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 7, 7, 0.66);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 760;
  backdrop-filter: blur(14px);
}

.platform {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.platform__visual {
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(37, 212, 255, 0.08), rgba(242, 85, 61, 0.08)),
    #0d0d0d;
}

.platform__visual img {
  max-height: 620px;
  width: auto;
  object-fit: contain;
}

.platform__copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0 32px;
}

.spec-caption {
  margin: 28px 0 0;
  color: var(--accent-2) !important;
  font-size: 0.78rem !important;
  font-weight: 850;
  text-transform: uppercase;
}

.spec-grid div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.spec-grid dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.84rem;
}

.spec-grid dd {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 900;
}

.note {
  padding-left: 16px;
  border-left: 3px solid var(--accent);
}

.robot-lineup {
  padding-top: 44px;
}

.robot-lineup__intro {
  max-width: 760px;
  margin: -26px 0 34px;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.robot-model-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--surface);
}

.robot-model-card--featured {
  border-color: rgba(37, 212, 255, 0.52);
  background:
    linear-gradient(180deg, rgba(37, 212, 255, 0.14), rgba(242, 85, 61, 0.06)),
    var(--surface);
}

.robot-model-card__image {
  display: grid;
  min-height: 210px;
  margin: -6px -8px 18px;
  place-items: center;
}

.robot-model-card__image img {
  width: auto;
  max-height: 220px;
  object-fit: contain;
}

.robot-model-card:nth-child(2) .robot-model-card__image img {
  max-height: 235px;
}

.robot-model-card p {
  margin-bottom: 8px;
  color: var(--accent-2);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.robot-model-card h3 {
  margin-bottom: 12px;
  font-size: 2.2rem;
}

.robot-model-card span {
  display: block;
  color: var(--muted);
}

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

.package-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.package-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.package-card div {
  padding: 22px;
}

.package-card p {
  color: var(--muted);
}

.package-card__tag {
  margin-bottom: 10px;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contrast {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
  width: 100%;
  max-width: none;
  padding: 110px max(24px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(242, 85, 61, 0.18), rgba(37, 212, 255, 0.08)),
    var(--surface-2);
}

.contrast__points {
  display: grid;
  gap: 12px;
}

.contrast__body > p {
  color: rgba(255, 255, 255, 0.78);
}

.contrast__points p {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 7, 7, 0.28);
  color: rgba(255, 255, 255, 0.88);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
}

.timeline li {
  min-height: 270px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.timeline span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--accent);
  font-weight: 950;
}

.timeline h3 {
  font-size: 1.08rem;
  white-space: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.timeline p {
  color: var(--muted);
}

.audience-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.audiences__intro {
  max-width: 760px;
  margin: -24px auto 28px;
  color: var(--muted);
  text-align: center;
  font-size: 1.04rem;
}

.audience-cloud span {
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
}

.landing-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.74fr);
  min-height: 620px;
  background: #0c0c0c;
}

.landing-strip__image {
  min-height: 620px;
  overflow: hidden;
}

.landing-strip__image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.landing-strip__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px max(24px, calc((100vw - var(--max)) / 2)) 80px 60px;
}

.landing-links {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.landing-links a {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.landing-links a:hover,
.landing-links a:focus-visible {
  border-color: var(--accent-2);
  transform: translateX(4px);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.faq-list summary {
  min-height: 64px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 850;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  min-height: 720px;
  background: var(--surface-2);
}

.contact__media {
  min-height: 720px;
  overflow: hidden;
}

.contact__media img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
}

.contact__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
  padding: 80px max(24px, calc((100vw - var(--max)) / 2)) 80px 56px;
}

.contact__content > p {
  color: var(--muted);
}

.trust-block {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.trust-block h3 {
  margin-bottom: 16px;
  font-size: 1.18rem;
}

.trust-block ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-block li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.82);
  overflow-wrap: anywhere;
}

.trust-block li::before {
  position: absolute;
  left: 0;
  color: var(--accent-2);
  content: "—";
}

.form-hint {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88) !important;
  font-weight: 750;
}

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

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

.contact-form span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 7, 7, 0.44);
  color: var(--white);
  outline: none;
}

.contact-form input {
  min-height: 52px;
  padding: 0 16px;
}

.contact-form textarea {
  min-height: 126px;
  padding: 14px 16px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-2);
}

.contact-form .btn {
  width: fit-content;
  margin-top: 6px;
  border: 0;
  cursor: pointer;
}

.contact-form .btn:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--accent-2);
}

.form-status[data-type="success"] {
  color: #7dffb2;
}

.form-status[data-type="error"] {
  color: #ff7b6b;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px max(24px, calc((100vw - var(--max)) / 2));
  background: #050505;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer p {
  margin: 6px 0 0;
}

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

.footer-brand img {
  width: min(190px, 72vw);
  height: auto;
  object-fit: contain;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 1160px) {
  h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 2.65rem;
  }

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

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

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

@media (max-width: 860px) {
  .site-header {
    height: 64px;
    padding: 0 18px;
  }

  .header-actions {
    gap: 10px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 64px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(7, 7, 7, 0.96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 6px;
  }

  .hero {
    min-height: 620px;
    height: auto;
    max-height: none;
  }

  .hero__content {
    width: min(100% - 36px, 620px);
    height: auto;
    margin-left: 18px;
    padding-top: 124px;
    padding-bottom: 0;
    justify-content: flex-start;
  }

  h1 {
    font-size: 3.05rem;
    line-height: 0.96;
  }

  h2 {
    font-size: 2.15rem;
    line-height: 1.05;
  }

  .hero__lead {
    font-size: 1.02rem;
  }

  .hero__panel {
    position: relative;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 24px 18px 30px;
    width: calc(100% - 36px);
  }

  .hero__panel div {
    min-height: 80px;
    padding: 14px;
  }

  .hero__panel strong {
    font-size: 1.25rem;
  }

  .hero__controls {
    display: none;
  }

  .section {
    width: calc(100% - 36px);
    padding: 78px 0;
  }

  .section__head,
  .intro,
  .scenario-layout,
  .capabilities__layout,
  .platform,
  .contrast,
  .landing-strip,
  .contact {
    grid-template-columns: 1fr;
  }

  .section__head {
    gap: 18px;
    margin-bottom: 34px;
  }

  .intro {
    gap: 20px;
  }

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

  .service-card {
    min-height: 220px;
  }

  .robot-lineup__intro {
    margin-top: -12px;
  }

  .robot-model-grid {
    grid-template-columns: 1fr;
  }

  .robot-model-card {
    min-height: 360px;
  }

  .image-band,
  .image-band img {
    min-height: 500px;
  }

  .scenario-gallery {
    grid-template-columns: 1fr;
  }

  .scenario-gallery__main {
    min-height: 320px;
  }

  .capabilities {
    padding-top: 48px;
  }

  .capabilities__copy {
    padding: 24px;
  }

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

  .capabilities__visual,
  .capabilities__visual img {
    min-height: 360px;
  }

  .platform__visual {
    min-height: 480px;
  }

  .platform__visual img {
    max-height: 500px;
  }

  .contrast {
    padding: 78px 18px;
  }

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

  .timeline li {
    min-height: 180px;
  }

  .landing-strip__content,
  .contact__content {
    padding: 58px 18px 70px;
  }

  .landing-strip__image,
  .landing-strip__image img,
  .contact__media,
  .contact__media img {
    min-height: 420px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 18px;
  }
}

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

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(7, 7, 7, 0.92) 0%, rgba(7, 7, 7, 0.54) 100%),
      linear-gradient(0deg, rgba(7, 7, 7, 0.9) 0%, rgba(7, 7, 7, 0.1) 48%);
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero__actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

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

  .hero__panel div {
    min-height: 64px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero__panel div:last-child {
    border-bottom: 0;
  }

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