:root {
  color-scheme: light;
  --ink: #0b0d0c;
  --ink-soft: #2a2f2c;
  --muted: #73777a;
  --hairline: rgba(0, 0, 0, 0.11);
  --hairline-dark: rgba(255, 255, 255, 0.14);
  --white: #ffffff;
  --paper: #f5f5f7;
  --paper-warm: #fbfbfd;
  --dark: #000000;
  --dark-soft: #141615;
  --green: #30d158;
  --green-deep: #15803d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-warm);
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Helvetica Neue", "PingFang SC", "PingFang TC", "Microsoft JhengHei",
    Arial, sans-serif;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::selection {
  color: var(--white);
  background: var(--green-deep);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid transparent;
  transition:
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: rgba(0, 0, 0, 0.82);
  background: rgba(251, 251, 253, 0.88);
  border-color: rgba(0, 0, 0, 0.08);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 58px;
  padding: 0 clamp(18px, 4vw, 54px);
}

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

.brand-logo {
  display: block;
  height: 30px;
  width: auto;
  max-width: min(200px, 44vw);
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
}

.main-nav a {
  display: grid;
  gap: 1px;
  min-width: 74px;
  text-align: center;
  opacity: 0.78;
  transition:
    opacity 180ms ease,
    color 180ms ease;
}

.main-nav span {
  font-size: 12px;
  font-weight: 300;
}

.main-nav small {
  color: currentColor;
  font-size: 10px;
  font-weight: 200;
  opacity: 0.54;
}

.main-nav a:hover,
.local-nav a:hover,
.nav-cta:hover {
  color: var(--green-deep);
  opacity: 1;
}

.nav-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  justify-self: end;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 300;
}

.lang-switch a {
  opacity: 0.55;
  transition: opacity 180ms ease, color 180ms ease;
}

.lang-switch a.is-active,
.lang-switch a:hover {
  color: var(--green-deep);
  opacity: 1;
}

.lang-switch span {
  opacity: 0.28;
}

.main-nav a.is-active {
  opacity: 1;
  color: var(--green-deep);
}

.nav-cta {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.78;
  transition:
    opacity 180ms ease,
    color 180ms ease;
}

.menu-button {
  display: none;
  justify-self: end;
  width: 40px;
  aspect-ratio: 1;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
}

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

.local-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 clamp(18px, 4vw, 54px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: currentColor;
}

.site-header.is-scrolled .local-nav,
.site-header.is-open .local-nav {
  border-top-color: rgba(0, 0, 0, 0.07);
}

.local-nav span {
  font-size: 13px;
  font-weight: 300;
}

.local-nav div {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
}

.local-nav a {
  font-size: 12px;
  font-weight: 250;
  opacity: 0.66;
  transition:
    opacity 180ms ease,
    color 180ms ease;
}

.section-dark {
  color: var(--white);
  background: var(--dark);
}

.hero {
  min-height: 100vh;
  padding: 150px clamp(18px, 5vw, 70px) 0;
  display: grid;
  align-content: start;
  overflow: hidden;
}

.hero-copy {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-weight: 200;
  letter-spacing: 0;
}

h1,
h2 {
  line-height: 1.03;
}

h1 {
  margin-bottom: 18px;
  font-size: 112px;
}

h2 {
  margin-bottom: 22px;
  font-size: 74px;
}

h3 {
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1.14;
}

p {
  font-weight: 300;
}

.hero-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 25px;
  line-height: 1.34;
}

.visual-branded {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.visual-watermark {
  position: absolute;
  top: clamp(14px, 2vw, 28px);
  left: clamp(14px, 2vw, 28px);
  z-index: 2;
  height: clamp(28px, 4vw, 44px);
  width: auto;
  max-width: 40%;
  object-fit: contain;
  object-position: left top;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.5));
  pointer-events: none;
}

.hero-visual {
  width: min(1520px, calc(100vw - 28px));
  margin: 10px auto 0;
}

.hero-visual img,
.visual-branded > img:not(.visual-watermark),
.visual-branded picture img {
  width: 100%;
  display: block;
}

.hero-visual img {
  max-height: 66vh;
  object-fit: cover;
  object-position: center;
}

.hero-signals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(860px, 100%);
  margin: 20px auto 46px;
  border-top: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
}

.hero-signals span {
  min-height: 50px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 250;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-signals span + span {
  border-left: 1px solid var(--hairline-dark);
}

.intro {
  padding: clamp(92px, 12vw, 176px) clamp(22px, 7vw, 112px);
  background: var(--paper-warm);
}

.intro-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  color: var(--green-deep);
}

.intro-label span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(21, 128, 61, 0.26);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 300;
}

.intro-label p {
  margin: 0;
  font-size: 15px;
}

.intro h2 {
  max-width: 1160px;
  margin-bottom: clamp(40px, 7vw, 82px);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 7vw, 108px);
  width: min(1020px, 100%);
  margin-left: auto;
}

.intro-grid p,
.section-title p,
.split-copy p,
.service-card p,
.news-card p,
.contact-copy p,
.feature p,
.spec p {
  color: var(--muted);
  font-size: 18px;
}

.image-stage {
  padding: 0 clamp(16px, 4vw, 60px) clamp(92px, 10vw, 150px);
  background: var(--paper-warm);
}

.image-stage picture,
.split-image,
.lineup,
.news-card picture {
  display: block;
  overflow: hidden;
}

.image-stage img,
.split-image img,
.lineup img,
.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-stage picture {
  max-width: 1600px;
  margin: 0 auto;
  border-radius: 8px;
  background: #eef1ef;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.1);
}

.section {
  padding: clamp(92px, 11vw, 176px) clamp(22px, 7vw, 112px);
}

.section-title {
  max-width: 1000px;
  margin-bottom: clamp(44px, 7vw, 86px);
}

.section-title.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-title.centered p:not(.eyebrow) {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--hairline);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.feature {
  min-height: 360px;
  padding: clamp(30px, 4vw, 54px);
  background: var(--paper-warm);
}

.thin-icon,
.mini-icon {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thin-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 48px;
  color: var(--green-deep);
  stroke-width: 1.1;
}

.mini-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 34px;
  color: var(--green-deep);
  stroke-width: 1.05;
}

.feature span,
.spec span,
.service-card span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dark-product {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(42px, 7vw, 104px);
  background: #000;
}

.split-copy {
  max-width: 660px;
}

.split-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.split-image {
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(48, 209, 88, 0.12);
}

.robots {
  background: var(--paper);
}

.lineup {
  width: min(1480px, 100%);
  margin: 0 auto clamp(30px, 5vw, 66px);
}

.robot-specs,
.service-grid {
  display: grid;
  gap: 1px;
  background: var(--hairline);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

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

.spec,
.service-card {
  background: var(--paper);
}

.spec {
  min-height: 270px;
  padding: 32px;
}

.service-model {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(44px, 7vw, 112px);
  align-items: start;
  background: var(--paper-warm);
}

.service-copy {
  position: sticky;
  top: 126px;
}

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

.service-card {
  min-height: 260px;
  padding: clamp(32px, 4vw, 56px);
}

.service-card span {
  margin-bottom: 58px;
}

.news {
  background: #fff;
}

.news-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 22px;
}

.news-stack {
  display: grid;
  gap: 22px;
}

.news-card {
  display: grid;
  background: var(--paper);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  overflow: hidden;
}

.news-card.featured {
  grid-template-rows: minmax(360px, 0.95fr) auto;
}

.news-card:not(.featured) {
  grid-template-columns: minmax(190px, 0.9fr) minmax(0, 1.1fr);
}

.news-card:not(.featured) picture {
  min-height: 260px;
}

.news-copy {
  padding: clamp(24px, 3vw, 38px);
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-card h3 {
  margin-bottom: 16px;
  font-size: 30px;
}

.news-card:not(.featured) h3 {
  font-size: 24px;
}

.news-card p {
  margin-bottom: 0;
}

.contact {
  min-height: 88vh;
  display: grid;
  place-items: center;
  padding: clamp(92px, 12vw, 180px) clamp(22px, 6vw, 90px);
  text-align: center;
  background: linear-gradient(165deg, #141615 0%, #000 62%);
}

.contact-page {
  min-height: calc(100vh - 58px);
  padding-top: clamp(120px, 14vw, 180px);
}

.contact-copy {
  width: min(880px, 100%);
}

.contact-copy p:not(.eyebrow) {
  max-width: 720px;
  margin-right: auto;
  margin-bottom: 36px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: 23px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.contact-link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--white);
  font-size: 15px;
  font-weight: 300;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.contact-link:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.site-footer {
  padding: clamp(48px, 6vw, 72px) clamp(22px, 6vw, 90px);
  color: rgba(255, 255, 255, 0.72);
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
}

.footer-company {
  margin: 0 0 28px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-addresses {
  display: grid;
  gap: 14px;
  margin: 0 0 32px;
  font-style: normal;
  font-size: 13px;
  line-height: 1.65;
  letter-spacing: 0.02em;
}

.footer-addresses p {
  margin: 0;
}

.footer-addresses a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease;
}

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

.footer-label {
  display: inline-block;
  min-width: 7.5em;
  margin-right: 0.6em;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  vertical-align: top;
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.34);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.home-intro {
  padding-bottom: clamp(40px, 6vw, 72px);
}

.home-intro .stat-grid {
  margin-top: clamp(32px, 5vw, 48px);
}

.intro-lead {
  max-width: 820px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 22px;
  line-height: 1.55;
}

.eyebrow.dark {
  color: var(--green-deep);
}

.teaser-section {
  background: #fff;
}

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

.teaser-card {
  display: grid;
  gap: 12px;
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  background: var(--paper-warm);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.teaser-card:hover {
  border-color: rgba(21, 128, 61, 0.28);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.teaser-card span {
  color: var(--green-deep);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.teaser-card h3 {
  margin: 0;
  font-size: 30px;
}

.teaser-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.teaser-card em {
  color: var(--green-deep);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
}

.cta-band {
  padding: clamp(72px, 10vw, 120px) clamp(22px, 6vw, 90px);
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(42px, 6vw, 64px);
}

.cta-band p:not(.eyebrow) {
  max-width: 640px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 20px;
}

.page-hero {
  padding: clamp(120px, 14vw, 168px) clamp(22px, 6vw, 90px) clamp(48px, 7vw, 72px);
  background: var(--paper-warm);
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 20px;
  font-size: clamp(48px, 7vw, 84px);
}

.page-lead {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 22px;
  line-height: 1.55;
}

.page-content {
  display: grid;
  gap: clamp(36px, 5vw, 56px);
  padding: clamp(24px, 5vw, 48px) clamp(22px, 6vw, 90px) clamp(80px, 10vw, 120px);
  background: #fff;
}

.content-block {
  max-width: 820px;
}

.content-block h2 {
  font-size: clamp(34px, 4vw, 48px);
}

.content-block p {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.rich-list {
  margin: 18px 0 0;
  padding-left: 1.2em;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.rich-list li + li {
  margin-top: 10px;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.step-item {
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: var(--paper-warm);
}

.step-item span {
  color: var(--green-deep);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.step-item h3 {
  margin: 12px 0 8px;
  font-size: 22px;
}

.step-item p {
  margin: 0;
  font-size: 15px;
}

.panel-dark {
  padding: clamp(32px, 5vw, 48px);
  border-radius: 10px;
}

.panel-dark p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.image-stage.compact {
  padding-top: 0;
  padding-bottom: clamp(24px, 4vw, 40px);
}

.image-stage .visual-branded {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-item {
  padding: 22px 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.stat-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green-deep);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
}

.stat-item span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

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

.value-card {
  padding: 26px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  background: var(--paper-warm);
}

.value-card h3 {
  margin: 10px 0 8px;
  font-size: 22px;
}

.value-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.value-card span {
  color: var(--green-deep);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.spec-card {
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  background: var(--paper-warm);
}

.spec-card .spec-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--green-deep);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(21, 128, 61, 0.08);
}

.spec-card h3 {
  font-size: 26px;
}

.spec-card p {
  font-size: 16px;
  line-height: 1.6;
}

.spec-card ul {
  margin: 14px 0 0;
  padding-left: 1.1em;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

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

.feature-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.feature-card h3 {
  margin: 12px 0 8px;
  font-size: 22px;
}

.feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.6;
}

.feature-card span {
  color: var(--green);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.feature-card-light {
  border-color: rgba(0, 0, 0, 0.08);
  background: var(--paper-warm);
}

.feature-card-light h3 {
  color: var(--ink);
}

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

.feature-card-light span {
  color: var(--green-deep);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
}

.compare-table th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.compare-table .highlight {
  color: var(--green-deep);
  font-weight: 400;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(48px, 7vw, 88px) clamp(22px, 6vw, 90px);
  background: var(--paper);
}

.split-band.reverse {
  direction: rtl;
}

.split-band.reverse > * {
  direction: ltr;
}

.split-band h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.split-band p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.page-section {
  padding: clamp(48px, 7vw, 88px) clamp(22px, 6vw, 90px);
  background: #fff;
}

.page-section.alt {
  background: var(--paper);
}

.page-section .section-head {
  max-width: 820px;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.page-section .section-head h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.inline-cta {
  display: inline-flex;
  margin-top: 20px;
  padding: 12px 22px;
  border: 1px solid rgba(21, 128, 61, 0.35);
  border-radius: 999px;
  color: var(--green-deep);
  font-size: 14px;
  transition: background 180ms ease, transform 180ms ease;
}

.inline-cta:hover {
  background: rgba(21, 128, 61, 0.08);
  transform: translateY(-2px);
}

@media (max-width: 720px) {
  .footer-label {
    display: block;
    min-width: 0;
    margin: 0 0 4px;
  }

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

  .stat-grid,
  .value-grid,
  .spec-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .split-band {
    grid-template-columns: 1fr;
  }

  .split-band.reverse {
    direction: ltr;
  }

  .lang-switch {
    display: none;
  }
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .nav-shell {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 18px;
  }

  .main-nav {
    position: absolute;
    top: 58px;
    right: 0;
    left: 0;
    display: none;
    padding: 18px 28px 26px;
    color: var(--ink);
    background: rgba(251, 251, 253, 0.96);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .site-header.is-open .main-nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
  }

  .nav-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  h1 {
    font-size: 78px;
  }

  h2 {
    font-size: 56px;
  }

  h3 {
    font-size: 25px;
  }

  .intro-grid,
  .dark-product,
  .service-model,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .service-copy {
    position: static;
  }

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

  .news-card:not(.featured) {
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  }
}

@media (max-width: 720px) {
  .nav-shell {
    min-height: 52px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .local-nav {
    min-height: 42px;
    padding-right: 16px;
    padding-left: 16px;
    overflow-x: auto;
    gap: 22px;
  }

  .local-nav span {
    white-space: nowrap;
  }

  .local-nav div {
    gap: 18px;
    white-space: nowrap;
  }

  .site-header.is-open .main-nav {
    grid-template-columns: 1fr;
  }

  .main-nav a {
    min-width: 0;
    text-align: left;
  }

  .hero {
    min-height: 92vh;
    padding: 124px 18px 0;
  }

  .hero-copy {
    text-align: left;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 40px;
  }

  h3,
  .news-card h3,
  .news-card:not(.featured) h3 {
    font-size: 23px;
  }

  .hero-copy p:not(.eyebrow) {
    margin-left: 0;
    font-size: 21px;
  }

  .hero-visual {
    width: calc(100vw - 24px);
    margin-top: 36px;
  }

  .hero-visual img {
    min-height: 420px;
    object-position: 63% center;
  }

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

  .hero-signals span:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--hairline-dark);
  }

  .hero-signals span:nth-child(4) {
    border-top: 1px solid var(--hairline-dark);
  }

  .intro,
  .section {
    padding-right: 22px;
    padding-left: 22px;
  }

  .feature-row,
  .robot-specs,
  .news-card:not(.featured) {
    grid-template-columns: 1fr;
  }

  .feature,
  .spec,
  .service-card {
    min-height: auto;
  }

  .thin-icon {
    margin-bottom: 38px;
  }

  .news-card.featured {
    grid-template-rows: auto;
  }

  .news-card.featured picture,
  .news-card:not(.featured) picture {
    min-height: 240px;
    aspect-ratio: 1.45;
  }

  .news-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .contact {
    min-height: 78vh;
  }
}
