:root {
  --bg: #ffffff;
  --panel: #f7f8f6;
  --panel-strong: #eef3f0;
  --ink: #1d2522;
  --ink-soft: #4f5d58;
  --muted: #7a8782;
  --line: rgba(29, 37, 34, 0.1);
  --orange: #ee650f;
  --orange-deep: #c84f05;
  --green: #43b36d;
  --blue: #3677d8;
  --shadow: 0 22px 70px rgba(31, 45, 39, 0.12);
  --shadow-soft: 0 14px 44px rgba(31, 45, 39, 0.08);
  --radius: 8px;
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

.copy-en {
  display: none !important;
}

body[data-lang="zh"] .copy-en {
  display: none !important;
}

body[data-lang="en"] .copy-zh {
  display: none !important;
}

body[data-lang="en"] .copy-en {
  display: inline !important;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(29, 37, 34, 0);
  backdrop-filter: blur(18px);
  transition:
    min-height 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 64px;
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(31, 45, 39, 0.08);
}

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(238, 101, 15, 0.22);
}

.star-mark {
  background: #ffd86b;
  color: #935000;
}

.brand strong {
  display: block;
  color: var(--orange);
  font-size: 1.2rem;
  font-weight: 860;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 30px);
  font-size: 0.9rem;
  font-weight: 720;
}

.desktop-nav > a,
.nav-menu-trigger {
  opacity: 0.82;
  transition:
    opacity 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.desktop-nav > a:hover,
.desktop-nav > a.is-active,
.nav-menu-trigger:hover {
  opacity: 1;
  color: var(--orange);
  transform: translateY(-1px);
}

.product-menu {
  position: relative;
}

.nav-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-menu-trigger svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.product-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  display: grid;
  min-width: 260px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.product-menu:hover .product-dropdown,
.product-menu.is-open .product-dropdown,
.product-menu:focus-within .product-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.product-dropdown a {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 6px;
}

.product-dropdown a:hover {
  background: var(--panel);
}

.dropdown-title {
  color: var(--orange);
  font-size: 0.98rem;
  font-weight: 850;
}

.dropdown-title em {
  margin-left: 4px;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-style: normal;
}

.product-dropdown .copy-zh,
.product-dropdown .copy-en {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.header-tools {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.lang-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.lang-switch button {
  min-width: 36px;
  height: 30px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 850;
  cursor: pointer;
}

.lang-switch button.is-active {
  background: var(--orange);
  color: #fff;
}

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

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-open .menu-button span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-button span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: 34;
  top: 72px;
  left: 16px;
  right: 16px;
  display: none;
  gap: 2px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.mobile-nav.is-open {
  display: grid;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav a {
  padding: 14px 12px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 760;
}

.mobile-nav a:hover {
  background: var(--panel);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(32px, 5vw, 78px);
  align-items: center;
  min-height: 100svh;
  padding: 108px clamp(20px, 5vw, 72px) 48px;
  overflow: hidden;
}

.company-hero {
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.94) 40%, rgba(255, 255, 255, 0.68) 68%),
    radial-gradient(circle at 84% 16%, rgba(238, 101, 15, 0.11), rgba(238, 101, 15, 0) 30%),
    var(--bg);
}

.product-hero {
  min-height: 92svh;
  background:
    radial-gradient(circle at 90% 16%, rgba(54, 119, 216, 0.13), rgba(54, 119, 216, 0) 31%),
    linear-gradient(180deg, #fff, #f8faf9);
}

.hero-copy-block {
  position: relative;
  z-index: 2;
  width: min(640px, 100%);
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  font-weight: 880;
  line-height: 0.98;
  letter-spacing: 0;
}

body[data-lang="en"] .hero h1 {
  font-size: clamp(3rem, 6.3vw, 5.9rem);
  line-height: 1.02;
}

.product-hero h1 {
  font-size: clamp(3rem, 6.6vw, 6.1rem);
}

.hero-lede {
  margin: 24px 0 0;
  color: var(--orange);
  font-size: clamp(1.18rem, 2.2vw, 2.2rem);
  font-weight: 780;
  line-height: 1.2;
}

.hero-text {
  max-width: 590px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.82;
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 840;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.primary-button {
  padding: 0 20px 0 22px;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 18px 36px rgba(238, 101, 15, 0.23);
}

.secondary-button {
  padding: 0 20px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.secondary-button:hover {
  border-color: rgba(238, 101, 15, 0.35);
  color: var(--orange);
}

.primary-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-points > span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 760;
}

.hero-points > span:nth-child(1)::before,
.hero-points > span:nth-child(2)::before,
.hero-points > span:nth-child(3)::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
}

.hero-points > span:nth-child(1)::before {
  background: var(--green);
}

.hero-points > span:nth-child(2)::before {
  background: var(--orange);
}

.hero-points > span:nth-child(3)::before {
  background: var(--blue);
}

.hero-media {
  position: relative;
  min-height: min(68vh, 650px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: min(68vh, 650px);
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.media-note {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 820;
  backdrop-filter: blur(12px);
}

.note-a {
  top: 18%;
  right: 9%;
}

.note-b {
  bottom: 12%;
  left: 9%;
}

.video-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0f1513;
  box-shadow: var(--shadow);
}

.video-shell video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.section,
.ecosystem-band,
.loop-section {
  padding: clamp(74px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.section-heading,
.ecosystem-band > h2,
.section-copy,
.contact-band > div,
.loop-section > .section-heading {
  width: min(960px, 100%);
}

.section-heading {
  margin: 0 auto clamp(36px, 5vw, 66px);
  text-align: center;
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 880;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section h2,
.ecosystem-band h2,
.loop-section h2,
.contact-band h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 4.6vw, 4.7rem);
  font-weight: 860;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-copy > p,
.contact-band p,
.privacy-card p {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.82;
}

.ecosystem-band {
  position: relative;
  width: min(1240px, calc(100% - 40px));
  margin: -34px auto 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.ecosystem-band > h2 {
  margin-bottom: clamp(34px, 5vw, 58px);
}

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

.ecosystem-grid article,
.hardware-grid article,
.principle-grid article,
.insight-panel > div,
.capability-list > div,
.report-card,
.privacy-card,
.loop-detail {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(31, 45, 39, 0.06);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.ecosystem-grid article:hover,
.hardware-grid article:hover,
.principle-grid article:hover,
.insight-panel > div:hover,
.capability-list > div:hover,
.report-card:hover,
.privacy-card:hover,
.loop-detail:hover {
  transform: translateY(-5px);
  border-color: rgba(238, 101, 15, 0.28);
  box-shadow: var(--shadow-soft);
}

.ecosystem-grid article,
.hardware-grid article {
  display: grid;
  align-content: start;
  min-height: 270px;
  padding: 22px;
}

.ecosystem-grid img,
.hardware-grid img,
.device-visual {
  width: 112px;
  height: 112px;
  margin-bottom: 26px;
  object-fit: contain;
}

.ecosystem-grid h3,
.hardware-grid h3,
.principle-grid h3,
.insight-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.14rem;
  line-height: 1.2;
}

.ecosystem-grid p,
.hardware-grid p,
.principle-grid p,
.insight-panel p,
.capability-list span,
.loop-detail p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.device-visual {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 52% 38%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 34%),
    linear-gradient(150deg, #e7ede8, #f9fbfa);
}

.watch-visual {
  width: 92px;
  border-radius: 28px;
  background:
    linear-gradient(90deg, transparent 0 18%, #d7dfd8 18% 82%, transparent 82%),
    radial-gradient(circle at center, #151b19 0 23%, #f1d178 24% 28%, #e7ede8 29%);
}

.pad-visual {
  width: 138px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(238, 101, 15, 0.18), rgba(67, 179, 109, 0.18)),
    linear-gradient(180deg, #1e2825 0 10%, #f8faf9 10% 100%);
}

.robot-visual::before {
  content: "";
  position: absolute;
  inset: 25px 22px 34px;
  border-radius: 18px;
  background: #151b19;
}

.robot-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 46px;
  height: 10px;
  border-radius: 999px;
  background: rgba(29, 37, 34, 0.16);
  transform: translateX(-50%);
}

.split-section,
.team-section,
.parent-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.insight-panel {
  display: grid;
  gap: 14px;
}

.insight-panel > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  padding: clamp(20px, 3vw, 28px);
}

.insight-panel span {
  grid-row: span 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: rgba(238, 101, 15, 0.1);
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
}

.principles-section,
.hardware-section {
  background: var(--panel);
}

.principle-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.principle-grid article {
  grid-column: span 1;
  min-height: 260px;
  padding: clamp(24px, 3vw, 34px);
}

.principle-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 8px;
  background: var(--panel-strong);
  color: var(--orange);
  font-weight: 900;
}

.principle-grid article:first-child {
  grid-column: span 2;
}

.team-section {
  background: #fff;
}

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

.capability-list > div {
  display: grid;
  gap: 8px;
  padding: 24px;
}

.capability-list b {
  color: var(--ink);
  font-size: 1rem;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(64px, 8vw, 96px) clamp(20px, 5vw, 72px);
  background: #17221e;
  color: #fff;
}

.contact-band h2 {
  color: #fff;
}

.contact-band p {
  color: rgba(255, 255, 255, 0.72);
}

.loop-section {
  background: #fff;
}

.loop-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  width: min(1180px, 100%);
  margin: 0 auto 18px;
}

.loop-map button {
  display: grid;
  gap: 12px;
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.loop-map button:hover,
.loop-map button.is-active {
  border-color: rgba(238, 101, 15, 0.38);
  background: rgba(238, 101, 15, 0.06);
  transform: translateY(-3px);
}

.loop-map span {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
}

.loop-map b {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.26;
}

.loop-detail {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 36px);
  text-align: center;
}

.loop-detail > span {
  color: var(--orange);
  font-size: 0.84rem;
  font-weight: 900;
}

.loop-detail h3 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: clamp(1.4rem, 2.6vw, 2.3rem);
  line-height: 1.18;
}

.loop-detail.is-changing {
  animation: pulse-in 320ms ease;
}

@keyframes pulse-in {
  0% {
    opacity: 0.7;
    transform: translateY(4px) scale(0.99);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hardware-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.parent-section {
  background: #fff;
}

.report-card {
  padding: clamp(24px, 4vw, 38px);
}

.report-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.report-head span {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 820;
}

.report-head b {
  color: var(--orange);
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.9;
}

.report-bars {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.report-bars span {
  position: relative;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--panel-strong);
}

.report-bars span::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.report-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.report-card li {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.55;
}

.report-card li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.privacy-section {
  background:
    radial-gradient(circle at 78% 16%, rgba(67, 179, 109, 0.14), rgba(67, 179, 109, 0) 28%),
    var(--panel);
}

.privacy-card {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 6vw, 62px);
}

.privacy-card .secondary-button {
  margin-top: 28px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer-links a:hover {
  color: var(--orange);
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 680ms ease,
    transform 680ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js-enabled .reveal,
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

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

  .menu-button {
    display: block;
  }

  .hero,
  .split-section,
  .team-section,
  .parent-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 116px;
  }

  .hero-media {
    min-height: 420px;
  }

  .hero-media img {
    min-height: 420px;
  }

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

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

@media (max-width: 760px) {
  .brand small {
    display: none;
  }

  .site-header {
    padding-inline: 16px;
  }

  .hero {
    padding: 104px 18px 42px;
  }

  .hero h1,
  .product-hero h1,
  body[data-lang="en"] .hero h1 {
    font-size: clamp(2.55rem, 14vw, 4.2rem);
  }

  .hero-media {
    min-height: 320px;
  }

  .hero-media img {
    min-height: 320px;
  }

  .media-note {
    display: none;
  }

  .ecosystem-band {
    width: calc(100% - 24px);
    margin-top: 0;
    padding-inline: 18px;
  }

  .section,
  .ecosystem-band,
  .loop-section {
    padding: 68px 18px;
  }

  .ecosystem-grid,
  .hardware-grid,
  .principle-grid,
  .loop-map {
    grid-template-columns: 1fr;
  }

  .principle-grid article:first-child {
    grid-column: span 1;
  }

  .contact-band,
  .site-footer {
    display: grid;
    justify-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
