@import url("https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600&family=Roboto:wght@300;400;500&family=Roboto+Mono:wght@400;500;600&display=swap");

:root {
  color-scheme: dark;
  --black: #020202;
  --black-2: #080808;
  --surface: rgba(10, 10, 10, 0.82);
  --surface-strong: rgba(18, 18, 18, 0.92);
  --white: #f4f4f4;
  --muted: rgba(244, 244, 244, 0.62);
  --dim: rgba(244, 244, 244, 0.38);
  --line: rgba(244, 244, 244, 0.14);
  --line-strong: rgba(244, 244, 244, 0.3);
  --accent: #d8d8d8;
  --accent-soft: rgba(244, 244, 244, 0.42);
  --accent-faint: rgba(244, 244, 244, 0.08);
  --max: 1500px;
  --display: "Geist", "Helvetica Neue", Arial, sans-serif;
  --body: "Roboto", "Helvetica Neue", Arial, sans-serif;
  --mono: "Roboto Mono", "SFMono-Regular", Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #020202 0%, #050505 62%, #0a0a0a 100%);
  color: var(--white);
  font-family: var(--body);
  font-weight: 300;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

p,
li {
  font-weight: 300;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(244, 244, 244, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(244, 244, 244, 0.05) 1px, transparent 1px);
  background-size: 270px 100%, 100% 172px;
  opacity: 0.26;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: auto 0 0;
  z-index: -1;
  height: 210px;
  background: linear-gradient(180deg, transparent, rgba(12, 12, 12, 0.82));
  pointer-events: none;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: 176px 1fr 184px;
  align-items: center;
  width: min(1380px, calc(100% - 96px));
  min-height: 58px;
  padding: 0 12px;
  background: rgba(7, 7, 7, 0.86);
  border: 1px solid rgba(244, 244, 244, 0.08);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.site-header.is-scrolled {
  background: rgba(7, 7, 7, 0.95);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 140px;
  height: auto;
  display: block;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(244, 244, 244, 0.2);
  background: rgba(5, 5, 5, 0.72);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 0 auto;
  background: rgba(244, 244, 244, 0.82);
  transition: none;
}

.menu-toggle span + span {
  margin-top: 7px;
}

.mobile-menu {
  display: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  color: rgba(244, 244, 244, 0.78);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.main-nav a,
.nav-cta,
.email-cta {
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

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

.nav-cta,
.email-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  padding: 0 12px 0 14px;
  border: 1px solid rgba(244, 244, 244, 0.22);
  border-left: 3px solid var(--accent);
  background:
    linear-gradient(90deg, rgba(244, 244, 244, 0.08), rgba(244, 244, 244, 0.02)),
    rgba(5, 5, 5, 0.72);
  color: var(--white);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.nav-cta:hover,
.email-cta:hover {
  border-color: rgba(244, 244, 244, 0.48);
  color: var(--white);
}

.nav-cta span,
.email-cta span {
  position: relative;
  width: 34px;
  height: 14px;
  margin-left: 20px;
  background: transparent;
}

.nav-cta span::before,
.email-cta span::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(244, 244, 244, 0.78);
}

.nav-cta span::after,
.email-cta span::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  width: 58%;
  height: 1px;
  background: rgba(244, 244, 244, 0.42);
}

.hero {
  position: relative;
  min-height: 960px;
  padding: 236px max(42px, calc((100vw - var(--max)) / 2)) 0;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(244, 244, 244, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(244, 244, 244, 0.04) 1px, transparent 1px),
    #020202;
  background-size: 270px 100%, 100% 172px, auto;
  opacity: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 2, 2, 0.98) 0%, rgba(2, 2, 2, 0.74) 42%, rgba(2, 2, 2, 0) 66%, rgba(2, 2, 2, 0) 100%),
    linear-gradient(180deg, rgba(2, 2, 2, 0) 0%, rgba(2, 2, 2, 0.08) 66%, #020202 100%);
  pointer-events: none;
}

.grid-field {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(244, 244, 244, 0.11) 1px, transparent 1px),
    linear-gradient(180deg, rgba(244, 244, 244, 0.05) 1px, transparent 1px);
  background-size: 270px 100%, 100% 172px;
  opacity: 0.48;
  pointer-events: none;
}

.hero-figure {
  position: absolute;
  top: 96px;
  right: max(0px, calc((100vw - var(--max)) / 2 - 24px));
  bottom: -26px;
  z-index: 2;
  width: min(48vw, 680px);
  margin: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  opacity: 1;
}

.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 780px;
  max-width: 100%;
}

.technical-label,
.section-label {
  margin: 0;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact-heading h2,
.footer-nav a {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-weight: 300;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  position: relative;
  margin-top: 46px;
  padding: 28px 0 30px 30px;
  font-size: clamp(42px, 4.25vw, 64px);
  line-height: 1.02;
  border-left: 1px solid rgba(244, 244, 244, 0.42);
  border-top: 1px solid rgba(244, 244, 244, 0.16);
  border-bottom: 1px solid rgba(244, 244, 244, 0.16);
}

.hero h1::before {
  content: "MADE IN GERMANY";
  position: absolute;
  right: 18px;
  top: -10px;
  padding: 0 10px;
  background: var(--black);
  color: rgba(244, 244, 244, 0.64);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.signal-headline {
  position: relative;
  display: inline-block;
  padding-bottom: 0.08em;
}

.signal-headline::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: 0.08em;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(244, 244, 244, 0.8);
  background: transparent;
}

.hero-copy {
  width: 480px;
  max-width: 100%;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
}

.signal-panel {
  position: absolute;
  right: max(42px, calc((100vw - var(--max)) / 2));
  bottom: 84px;
  z-index: 4;
  width: 336px;
  padding: 22px 24px 20px;
  border-top: 1px solid rgba(244, 244, 244, 0.24);
  border-bottom: 1px solid rgba(244, 244, 244, 0.12);
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.72), rgba(7, 7, 7, 0.38));
  backdrop-filter: blur(10px);
}

.signal-panel::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 18px;
  width: 6px;
  height: calc(100% - 36px);
  background: var(--accent);
}

.signal-panel > span {
  display: block;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

.signal-panel ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.signal-panel li {
  display: flex;
  align-items: center;
  color: rgba(244, 244, 244, 0.74);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
}

.signal-panel li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 14px;
  border: 1px solid var(--accent);
}

.section {
  position: relative;
  width: min(var(--max), calc(100% - 96px));
  margin: 0 auto;
  padding: 128px 0;
  scroll-margin-top: 96px;
}

.section h2 {
  max-width: 890px;
  margin-top: 38px;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.05;
}

.section > p,
.visual-copy p,
.email-panel p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
}

.split-section > p,
.robotics-section > p,
.task-section > p {
  width: 500px;
  max-width: 100%;
  margin: 44px 0 0 auto;
}

.rail-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 76px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.rail-strip span {
  min-height: 86px;
  padding: 24px 20px;
  border-right: 1px solid var(--line);
  color: rgba(244, 244, 244, 0.86);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.3;
}

.rail-strip span:last-child {
  border-right: 0;
}

.rail-strip span:nth-child(4n) {
  border-right: 0;
}

.rail-strip span:nth-child(n + 5) {
  border-top: 1px solid var(--line);
}

.visual-section {
  display: grid;
  grid-template-columns: 1.34fr 0.7fr;
  gap: 76px;
  align-items: center;
  padding-top: 96px;
}

.media-block {
  position: relative;
  min-height: 620px;
  border: 1px solid rgba(244, 244, 244, 0.1);
  background: rgba(2, 2, 2, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.media-block::before {
  content: "";
  position: absolute;
  inset: -1px auto -1px -1px;
  width: 3px;
  background: var(--accent);
  z-index: 2;
}

.media-label {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 3;
  padding: 6px 10px;
  border: 1px solid rgba(244, 244, 244, 0.18);
  background: rgba(2, 2, 2, 0.72);
  color: rgba(244, 244, 244, 0.72);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.media-block img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: contain;
  padding: 34px;
}

.visual-copy h2 {
  max-width: 520px;
}

.visual-copy p {
  margin: 34px 0 0;
}

.micro-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 48px;
  background: var(--line);
}

.micro-list span {
  min-height: 50px;
  display: grid;
  place-items: center;
  background: rgba(2, 2, 2, 0.92);
  color: rgba(244, 244, 244, 0.7);
  font-family: var(--mono);
  font-size: 10px;
}

.robotics-section {
  padding-top: 116px;
}

.robotics-grid,
.loop-grid {
  display: grid;
  gap: 1px;
  margin-top: 72px;
  background: var(--line);
}

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

.loop-grid {
  grid-template-columns: repeat(4, 1fr);
}

.robotics-grid article,
.loop-grid article {
  min-height: 210px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(244, 244, 244, 0.035), transparent 46px),
    rgba(2, 2, 2, 0.96);
  border-top: 1px solid rgba(244, 244, 244, 0.16);
}

.robotics-grid article span,
.loop-grid article span {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
}

.robotics-grid h3,
.loop-grid strong {
  display: block;
  margin: 42px 0 13px;
  color: var(--white);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}

.robotics-grid p,
.loop-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.48;
}

.loop-section {
  min-height: 680px;
}

.task-section {
  padding-top: 120px;
  background:
    linear-gradient(90deg, transparent, rgba(244, 244, 244, 0.035), transparent),
    linear-gradient(90deg, rgba(244, 244, 244, 0.06) 1px, transparent 1px) 0 0 / 270px 100%;
}

.task-lines {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 76px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.task-lines span {
  min-height: 72px;
  padding: 25px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: rgba(244, 244, 244, 0.82);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.3;
}

.task-lines span:nth-child(3n) {
  border-right: 0;
}

.task-lines span:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.contact-section {
  min-height: 840px;
  scroll-margin-top: 96px;
  background:
    linear-gradient(90deg, rgba(244, 244, 244, 0.035), transparent 35%),
    #161616;
}

.contact-heading {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  min-height: 230px;
  padding: 0 max(42px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(244, 244, 244, 0.1);
  border-bottom: 1px solid rgba(244, 244, 244, 0.12);
}

.contact-heading h2 {
  align-self: start;
  max-width: 900px;
  padding-top: 22px;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.05;
}

.email-cta {
  align-self: start;
  margin-top: 32px;
  min-height: 60px;
  padding: 0 18px 0 20px;
  font-size: 14px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 0.82fr;
  gap: 86px;
  width: min(var(--max), calc(100% - 96px));
  margin: 0 auto;
  padding: 96px 0 78px;
}

.footer-nav,
.email-panel,
.footer-mark {
  display: grid;
  align-content: start;
}

.footer-nav .section-label,
.email-panel .section-label {
  margin-bottom: 50px;
}

.footer-nav a {
  display: block;
  color: var(--white);
  font-size: 42px;
  line-height: 1;
}

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

.email-panel p {
  width: 90%;
  margin: 0;
}

.email-rows {
  margin-top: 48px;
  border-top: 1px solid rgba(244, 244, 244, 0.16);
  border-bottom: 1px solid rgba(244, 244, 244, 0.16);
}

.email-rows span {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid rgba(244, 244, 244, 0.12);
  color: rgba(244, 244, 244, 0.74);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.2;
}

.email-rows span:last-child {
  border-bottom: 0;
}

.footer-mark {
  justify-items: end;
  gap: 46px;
}

.footer-mark img {
  width: 210px;
  height: auto;
  opacity: 0.82;
}

.footer-origin {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  max-width: 100%;
  padding: 9px 13px 9px 10px;
  border: 1px solid rgba(244, 244, 244, 0.13);
  background: rgba(244, 244, 244, 0.07);
  color: rgba(244, 244, 244, 0.84);
  font-family: var(--mono);
  text-transform: uppercase;
}

.germany-flag {
  position: relative;
  flex: 0 0 36px;
  width: 36px;
  height: 23px;
  border: 1px solid rgba(244, 244, 244, 0.42);
  background: #050505;
  overflow: hidden;
}

.germany-flag::before,
.germany-flag::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 7px;
}

.germany-flag::before {
  top: 7px;
  background: #dd0000;
}

.germany-flag::after {
  top: 14px;
  background: #ffce00;
}

.footer-origin strong,
.footer-origin small {
  display: block;
  line-height: 1;
}

.footer-origin strong {
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
}

.footer-origin small {
  margin-top: 5px;
  color: rgba(244, 244, 244, 0.48);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0;
}

.footer-mark > span {
  width: 220px;
  color: rgba(244, 244, 244, 0.5);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.38;
  text-align: right;
}

.legal-links {
  display: flex;
  gap: 18px;
  color: rgba(244, 244, 244, 0.48);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1;
}

.legal-links a:hover {
  color: var(--white);
}

.legal-main {
  width: min(var(--max), calc(100% - 96px));
  margin: 0 auto;
  padding: 190px 0 120px;
}

.legal-hero {
  min-height: 280px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  margin: 42px 0 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(46px, 6vw, 92px);
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}

.legal-content {
  display: grid;
  grid-template-columns: 0.68fr 1fr;
  gap: 96px;
  padding-top: 76px;
}

.legal-content aside {
  color: rgba(244, 244, 244, 0.5);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.5;
}

.legal-copy {
  display: grid;
  gap: 34px;
}

.legal-copy section {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.legal-copy h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
}

.legal-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.58;
}

.legal-copy p + p {
  margin-top: 16px;
}

.legal-copy a {
  color: var(--white);
  border-bottom: 1px solid rgba(244, 244, 244, 0.28);
}

.legal-footer {
  display: flex;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 96px));
  margin: 0 auto;
  padding: 44px 0 64px;
  border-top: 1px solid var(--line);
  color: rgba(244, 244, 244, 0.48);
  font-family: var(--mono);
  font-size: 11px;
}

.legal-footer nav {
  display: flex;
  gap: 20px;
}

.legal-footer a:hover {
  color: var(--white);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 152px 1fr 164px;
    width: calc(100% - 40px);
  }

  .brand img {
    width: 126px;
  }

  .main-nav {
    gap: 18px;
    font-size: 11px;
  }

  .hero {
    min-height: 900px;
    padding-top: 210px;
  }

  .hero-figure {
    width: min(54vw, 540px);
    right: -28px;
    top: 118px;
    opacity: 1;
  }

  .signal-panel {
    right: 42px;
    bottom: 54px;
  }

  .visual-section,
  .contact-heading,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .visual-copy {
    width: 650px;
    max-width: 100%;
    margin-left: auto;
  }

  .robotics-grid,
  .loop-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-mark {
    justify-items: start;
  }

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

@media (max-width: 760px) {
  body::before,
  .grid-field {
    background-size: 150px 100%, 100% 96px, 42px 42px;
  }

  .site-header {
    top: 0;
    left: 0;
    grid-template-columns: 1fr auto;
    width: 100%;
    min-height: 58px;
    padding: 13px 18px;
    transform: none;
  }

  .brand img {
    width: 128px;
  }

  .main-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 42;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open main,
  body.menu-open .legal-main,
  body.menu-open .legal-footer {
    visibility: hidden;
  }

  body.menu-open .menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  body.menu-open .menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 58px 0 0;
    z-index: 40;
    display: grid;
    align-content: start;
    gap: 38px;
    padding: 34px 20px 36px;
    background: #020202;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: none;
  }

  body.menu-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu nav {
    display: grid;
    gap: 14px;
  }

  .mobile-menu a {
    color: rgba(244, 244, 244, 0.92);
    font-family: var(--display);
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-menu-cta {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding-left: 14px;
    border: 1px solid rgba(244, 244, 244, 0.22);
    border-left: 3px solid var(--accent);
    background: rgba(10, 10, 10, 0.9);
    font-family: var(--mono) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
  }

  .hero {
    min-height: 1060px;
    padding: 138px 20px 0;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(2, 2, 2, 0.98) 0%, rgba(2, 2, 2, 0.84) 68%, rgba(2, 2, 2, 0.12) 100%),
      linear-gradient(180deg, rgba(2, 2, 2, 0.08) 0%, rgba(2, 2, 2, 0.14) 58%, #020202 100%);
  }

  .hero-figure {
    top: 540px;
    left: 20px;
    right: 20px;
    bottom: auto;
    width: auto;
    height: 260px;
    opacity: 1;
    overflow: hidden;
    align-items: flex-start;
    justify-content: center;
    border: 1px solid rgba(244, 244, 244, 0.12);
    background: #020202;
  }

  .hero-figure img {
    width: 100%;
    height: 150%;
    object-fit: cover;
    object-position: center 6%;
  }

  .technical-label,
  .section-label {
    font-size: 11px;
  }

  .hero h1 {
    margin-top: 34px;
    font-size: 36px;
    line-height: 1.04;
  }

  .hero h1::before {
    left: -12px;
  }

  .hero-copy {
    width: min(330px, calc(100vw - 40px));
    margin-top: 28px;
    font-size: 13px;
    line-height: 1.5;
  }

  .signal-panel {
    left: 20px;
    right: 20px;
    bottom: 28px;
    width: auto;
  }

  .section {
    width: calc(100% - 40px);
    padding: 88px 0;
    scroll-margin-top: 76px;
  }

  .contact-section {
    scroll-margin-top: 76px;
  }

  .section h2,
  .contact-heading h2 {
    margin-top: 34px;
    font-size: 33px;
  }

  .section > p,
  .visual-copy p,
  .email-panel p {
    font-size: 14px;
  }

  .split-section > p,
  .robotics-section > p,
  .task-section > p {
    margin-top: 38px;
  }

  .rail-strip,
  .robotics-grid,
  .loop-grid,
  .task-lines,
  .micro-list {
    grid-template-columns: 1fr;
  }

  .rail-strip span,
  .task-lines span {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .task-lines span:nth-child(3n),
  .task-lines span:nth-last-child(-n + 3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .task-lines span:last-child,
  .rail-strip span:last-child {
    border-bottom: 0;
  }

  .visual-section {
    gap: 42px;
  }

  .media-block {
    min-height: 0;
    height: 292px;
  }

  .visual-copy {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .media-block img {
    max-height: none;
    padding: 18px;
    aspect-ratio: auto;
  }

  .robotics-grid article,
  .loop-grid article {
    min-height: auto;
  }

  .contact-section {
    min-height: auto;
  }

  .contact-heading {
    gap: 28px;
    min-height: auto;
    padding: 44px 20px 38px;
  }

  .contact-heading h2 {
    padding-top: 0;
  }

  .email-cta {
    width: 100%;
    margin-top: 0;
  }

  .contact-layout {
    width: calc(100% - 40px);
    gap: 58px;
    padding: 68px 0 72px;
  }

  .footer-nav a {
    font-size: 32px;
  }

  .footer-mark img {
    width: 170px;
  }

  .legal-links {
    flex-direction: column;
    gap: 12px;
  }

  .legal-main {
    width: calc(100% - 40px);
    padding: 128px 0 82px;
  }

  .legal-hero {
    min-height: 210px;
  }

  .legal-hero h1 {
    font-size: 44px;
  }

  .legal-content {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 54px;
  }

  .legal-copy p {
    font-size: 14px;
  }

  .legal-footer {
    width: calc(100% - 40px);
    flex-direction: column;
    gap: 22px;
  }

  .legal-footer nav {
    flex-direction: column;
    gap: 12px;
  }
}
