:root {
  color-scheme: light;
  --text: #111114;
  --muted: #63636b;
  --soft: #f5f5f7;
  --line: #e6e6ea;
  --blue: #0071e3;
  --blue-dark: #0057b8;
  --ink: #1d1d1f;
  --panel: rgba(255, 255, 255, 0.82);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  line-height: 1.45;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 54px;
  padding: 0 max(22px, calc((100vw - 1160px) / 2));
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(250, 250, 252, 0.78);
  backdrop-filter: saturate(180%) blur(22px);
}

.brand,
.nav,
.header-actions,
.language-switch {
  display: flex;
  align-items: center;
}

.brand {
  gap: 9px;
  font-size: 15px;
  font-weight: 650;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: linear-gradient(135deg, #111114 0%, #72727a 100%);
}

.nav {
  gap: 28px;
  color: #303036;
  font-size: 13px;
}

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

.header-actions {
  gap: 24px;
}

.language-switch {
  gap: 2px;
  padding: 2px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.language-switch button {
  min-width: 34px;
  height: 26px;
  border: 0;
  border-radius: 999px;
  color: #4c4c54;
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
}

.language-switch button[aria-pressed="true"] {
  color: #fff;
  background: var(--ink);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 54px);
  padding: 78px max(22px, calc((100vw - 1160px) / 2)) 68px;
  overflow: hidden;
}

.hero-copy {
  min-width: 0;
  max-width: 940px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 650;
}

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

h1 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
  hyphens: auto;
  overflow-wrap: break-word;
}

html[lang="de"] h1 {
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1;
}

.lead {
  margin-bottom: 30px;
  color: #3b3b42;
  font-size: clamp(21px, 2.2vw, 27px);
  line-height: 1.2;
}

.hero-actions,
.closing {
  display: flex;
  align-items: center;
}

.hero-actions {
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 21px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 560;
}

.button.primary {
  color: #fff;
  background: var(--blue);
}

.button.primary:hover {
  background: var(--blue-dark);
}

.button.secondary {
  color: var(--blue);
}

.hero-visual {
  position: relative;
  min-width: 0;
  width: min(100%, 1080px);
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: var(--soft);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: inherit;
  pointer-events: none;
}

.hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 22px 96px;
}

.metrics div {
  min-height: 150px;
  padding: 30px;
  background: var(--soft);
}

.metrics div:first-child {
  border-radius: 18px 0 0 18px;
}

.metrics div:last-child {
  border-radius: 0 18px 18px 0;
}

.metrics strong {
  display: block;
  margin-bottom: 8px;
  font-size: 34px;
  line-height: 1;
}

.metrics span {
  color: var(--muted);
  font-size: 17px;
}

.section {
  max-width: 880px;
  margin: 0 auto;
  padding: 104px 22px 48px;
  text-align: center;
}

.section h2,
.band-copy h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section p,
.band-copy p {
  color: var(--muted);
  font-size: 22px;
  line-height: 1.25;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 22px 112px;
}

.feature {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.feature span {
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.feature h3 {
  margin: 46px 0 12px;
  font-size: 25px;
  line-height: 1.1;
}

.feature p {
  color: var(--muted);
  font-size: 17px;
}

.product-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 58px;
  align-items: center;
  padding: 118px max(22px, calc((100vw - 1160px) / 2));
  background: #f5f5f7;
}

.device {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 26px;
  background: linear-gradient(180deg, #fdfdfd, #e8e8ed);
  box-shadow: inset 0 1px 0 #fff, 0 24px 60px rgba(0, 0, 0, 0.12);
}

.device-bar {
  display: flex;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.device-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #c6c6cc;
}

.cockpit {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 18px;
  min-height: 330px;
  padding: 18px;
}

.sidebar,
.table {
  border-radius: 18px;
  background: var(--panel);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
}

.sidebar b {
  margin-bottom: 8px;
}

.sidebar small {
  padding: 9px 10px;
  border-radius: 9px;
  color: #33333a;
  background: #f1f1f4;
}

.table {
  padding: 18px;
}

.row {
  display: grid;
  grid-template-columns: 1fr 90px 80px;
  gap: 12px;
  align-items: center;
  min-height: 55px;
  border-bottom: 1px solid #e7e7ec;
  color: #303036;
  font-size: 15px;
}

.row.head {
  min-height: 38px;
  color: #777780;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.row:last-child {
  border-bottom: 0;
}

.band-copy ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: #2b2b31;
  font-size: 18px;
}

.band-copy li {
  position: relative;
  padding-left: 28px;
}

.band-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
}

.closing {
  flex-direction: column;
  padding-bottom: 122px;
}

.closing .button {
  margin-top: 12px;
}

.site-footer {
  padding: 24px 22px 34px;
  border-top: 1px solid var(--line);
  color: #777780;
  font-size: 13px;
  text-align: center;
}

@media (max-width: 1080px) {
  .site-header {
    padding-inline: 18px;
  }

  .nav {
    gap: 16px;
  }

  .header-actions {
    gap: 14px;
  }

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

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

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

@media (max-width: 900px) {
  .metrics,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .metrics div,
  .metrics div:first-child,
  .metrics div:last-child {
    border-radius: 14px;
  }
}

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

  .language-switch button {
    min-width: 32px;
  }

  h1 {
    font-size: 46px;
  }

  .lead,
  .section p,
  .band-copy p {
    font-size: 20px;
  }

  .hero {
    padding-inline: 18px;
  }

  .hero-visual {
    border-radius: 20px;
  }

  .product-band {
    padding-block: 78px;
  }

  .row {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 12px 0;
  }
}
