:root {
  --paper: #f5f6f8;
  --white: #ffffff;
  --ink: #292c31;
  --muted: #717782;
  --line: rgba(41, 44, 49, 0.13);
  --blue: #2148ff;
  --blue-deep: #1738d0;
  --blue-soft: #e7ecff;
  --blue-pale: #f0f3ff;
  --night: #18202c;
  --max-width: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial,
    sans-serif;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
  font-weight: 400;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: -70px;
  left: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--night);
  color: var(--white);
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 16px;
}

.section-shell,
footer {
  width: min(calc(100% - 64px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  min-height: 94px;
  width: min(calc(100% - 64px), var(--max-width));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(14px);
}

.site-language-switcher a {
  min-width: 31px;
  height: 28px;
  padding-inline: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-language-switcher a:hover,
.site-language-switcher a:focus-visible {
  color: var(--blue);
}

.site-language-switcher a.is-active {
  background: var(--night);
  color: var(--white);
  box-shadow: 0 5px 14px rgba(21, 29, 42, 0.16);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: var(--ink);
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.045em;
}

.wordmark i {
  width: 16px;
  height: 2px;
  background: var(--blue);
}

.wordmark small {
  align-self: flex-end;
  margin: 0 0 2px -4px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.header-cta,
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  backdrop-filter: blur(14px);
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible,
.legal-back:hover,
.legal-back:focus-visible {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.eyebrow {
  color: var(--blue);
  font-size: 10px;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: calc(100vh - 94px);
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(460px, 1.07fr);
  align-items: center;
  gap: clamp(64px, 8vw, 126px);
  padding-block: 72px 104px;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 680px;
  height: 680px;
  top: -220px;
  left: -360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(191, 204, 255, 0.62),
    rgba(245, 246, 248, 0) 69%
  );
}

.hero-copy .eyebrow {
  margin-bottom: 28px;
}

h1 {
  max-width: 760px;
  font-size: clamp(64px, 6.65vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.066em;
}

h1 span {
  display: block;
  color: var(--blue);
}

.hero-intro {
  max-width: 625px;
  margin-top: 34px;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 42px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(33, 72, 255, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-deep);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  transition: color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--blue);
}

.language-stage {
  position: relative;
  min-height: 590px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(33, 72, 255, 0.1);
  border-radius: 48px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(230, 235, 255, 0.78)),
    var(--white);
  box-shadow:
    0 42px 90px rgba(29, 38, 72, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.language-stage::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -170px;
  bottom: -210px;
  border-radius: 50%;
  background: rgba(33, 72, 255, 0.16);
  filter: blur(4px);
}

.stage-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #626b7a;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.stage-time {
  margin-left: auto;
  color: #959ba5;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(33, 72, 255, 0.11);
  animation: live-indicator 1.6s ease-out infinite;
}

.speaker-wave {
  position: relative;
  z-index: 1;
  height: 112px;
  margin: 56px 0 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.speaker-wave span {
  width: 5px;
  min-height: 12px;
  border-radius: 99px;
  background: linear-gradient(to top, var(--blue-deep), #7891ff);
  opacity: 0.9;
  transform: scaleY(var(--speech-level, 0.72));
  transform-origin: center;
  transition: transform 125ms cubic-bezier(0.2, 0.72, 0.35, 1);
  will-change: transform;
}

@keyframes live-indicator {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(33, 72, 255, 0.11);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(33, 72, 255, 0);
  }
}

.caption-card {
  position: relative;
  z-index: 1;
  padding: 22px 24px;
  border: 1px solid rgba(41, 44, 49, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
}

.caption-card + .caption-card {
  margin-top: 12px;
}

.caption-card.is-translation {
  border-color: rgba(33, 72, 255, 0.18);
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 18px 32px rgba(33, 72, 255, 0.2);
}

.caption-card p:last-child {
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.caption-label {
  margin-bottom: 9px;
  color: #828996;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.is-translation .caption-label {
  color: rgba(255, 255, 255, 0.68);
}

.language-pills {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.language-pills span,
.language-pills button {
  min-width: 42px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(41, 44, 49, 0.1);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.68);
  color: #69707d;
  font-family: inherit;
  font-size: 10px;
}

.language-pills button {
  cursor: pointer;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.language-pills button:hover,
.language-pills button:focus-visible {
  border-color: rgba(33, 72, 255, 0.5);
  color: var(--blue);
  transform: translateY(-1px);
}

.language-pills button.is-active {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.caption-card.is-translation {
  animation: translation-in 220ms ease both;
}

@keyframes translation-in {
  from {
    opacity: 0.72;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.statement {
  padding-block: clamp(120px, 13vw, 210px);
  background: var(--white);
}

.statement-inner {
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  align-items: start;
  gap: 64px;
}

.statement h2 {
  max-width: 1000px;
  font-size: clamp(48px, 6.1vw, 88px);
  line-height: 1.03;
  letter-spacing: -0.058em;
}

.statement h2 span {
  display: block;
  color: #b2b5ba;
}

.delivery-section,
.technology-section,
.usecases-section {
  padding-block: clamp(112px, 12vw, 180px);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.3fr 1fr 0.58fr;
  align-items: start;
  gap: 48px;
}

.section-heading h2,
.technology-copy h2,
.human-inner h2,
.contact-copy h2 {
  font-size: clamp(44px, 5.2vw, 75px);
  line-height: 1.02;
  letter-spacing: -0.056em;
}

.section-heading > p:last-child,
.technology-copy > p,
.human-copy p,
.contact-copy > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.delivery-grid {
  margin-top: 76px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.delivery-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
}

.delivery-card .card-number {
  font-size: 10px;
  letter-spacing: 0.12em;
}

.delivery-card h3 {
  margin-top: auto;
  font-size: 30px;
  letter-spacing: -0.045em;
}

.delivery-card > p:last-child {
  max-width: 330px;
  margin-top: 15px;
  color: inherit;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.72;
}

.card-blue {
  border-color: transparent;
  background: var(--blue);
  color: var(--white);
}

.card-light {
  background: var(--white);
}

.card-dark {
  border-color: transparent;
  background: var(--night);
  color: var(--white);
}

.audio-orbit {
  position: relative;
  width: 230px;
  height: 230px;
  margin: 42px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
}

.audio-orbit::before,
.audio-orbit::after {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
}

.audio-orbit::after {
  inset: 72px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.25);
}

.audio-orbit span {
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
}

.audio-orbit span:nth-child(1) {
  top: 12px;
  left: 109px;
}

.audio-orbit span:nth-child(2) {
  right: 23px;
  bottom: 50px;
}

.audio-orbit span:nth-child(3) {
  left: 25px;
  bottom: 53px;
}

.subtitle-visual {
  margin: 55px auto 0;
  width: 82%;
  padding: 48px 25px;
  border-radius: 24px;
  background: var(--blue-pale);
}

.subtitle-visual span {
  display: block;
  height: 11px;
  border-radius: 99px;
  background: var(--blue);
}

.subtitle-visual span + span {
  margin-top: 17px;
}

.subtitle-visual span:nth-child(1) {
  width: 72%;
}

.subtitle-visual span:nth-child(2) {
  width: 100%;
}

.subtitle-visual span:nth-child(3) {
  width: 56%;
}

.hybrid-visual {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hybrid-visual span {
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.hybrid-visual i {
  width: 54px;
  height: 1px;
  background: linear-gradient(to right, transparent, #7190ff, transparent);
}

.process-section {
  padding-block: clamp(112px, 12vw, 180px);
  background: var(--white);
}

.process-heading {
  padding-bottom: 70px;
}

.process-list {
  border-top: 1px solid var(--line);
}

.process-list article {
  min-height: 156px;
  display: grid;
  grid-template-columns: 0.16fr 1fr;
  align-items: center;
  gap: 44px;
  border-bottom: 1px solid var(--line);
}

.process-list article > p {
  color: var(--blue);
  font-size: 11px;
}

.process-list article > div {
  display: grid;
  grid-template-columns: 0.76fr 1fr;
  align-items: center;
  gap: 64px;
}

.process-list h3 {
  font-size: clamp(29px, 3.4vw, 47px);
  letter-spacing: -0.045em;
}

.process-list span {
  max-width: 570px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.reference-section {
  padding-block: clamp(112px, 12vw, 180px);
  background: var(--night);
  color: var(--white);
}

.reference-heading {
  display: grid;
  grid-template-columns: 0.3fr 1fr 0.58fr;
  align-items: start;
  gap: 48px;
}

.reference-heading .eyebrow {
  color: #87a0ff;
}

.reference-heading h2 {
  font-size: clamp(44px, 5.2vw, 75px);
  line-height: 1.02;
  letter-spacing: -0.056em;
}

.reference-heading > p:last-child,
.reference-summary > p:last-child {
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.68;
}

.reference-gallery {
  margin-top: 76px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.reference-photo {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: #101620;
}

.reference-photo-main {
  grid-column: 1 / -1;
  min-height: min(62vw, 700px);
}

.reference-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reference-photo-main img {
  object-position: center 58%;
}

.reference-details {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 9vw, 132px);
}

.reference-lead {
  color: var(--white);
  font-size: clamp(31px, 3.4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.reference-summary > p:last-child {
  margin-top: 28px;
  max-width: 610px;
}

.reference-details ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.reference-details li {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding-block: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.reference-detail-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(135, 160, 255, 0.3);
  border-radius: 15px;
  background: rgba(33, 72, 255, 0.1);
  color: #9bb0ff;
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.technology-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(76px, 9vw, 148px);
}

.technology-copy .eyebrow {
  margin-bottom: 25px;
}

.technology-copy h2 {
  margin-bottom: 34px;
}

.technology-copy > p + p {
  margin-top: 18px;
}

.network-panel {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.94) 0 25%, transparent 26%),
    radial-gradient(circle, transparent 0 42%, rgba(33, 72, 255, 0.1) 43% 43.3%, transparent 44%),
    radial-gradient(circle, transparent 0 64%, rgba(33, 72, 255, 0.1) 65% 65.3%, transparent 66%);
}

.network-core {
  position: relative;
  z-index: 2;
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 24px 60px rgba(33, 72, 255, 0.25);
}

.network-core span {
  font-size: 58px;
  letter-spacing: -0.08em;
}

.network-core small {
  margin-top: 3px;
  font-size: 8px;
  letter-spacing: 0.14em;
}

.network-label {
  position: absolute;
  min-width: 122px;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--muted);
  text-align: center;
  font-size: 10px;
  backdrop-filter: blur(14px);
}

.label-top {
  top: 55px;
}

.label-right {
  right: 10px;
}

.label-bottom {
  bottom: 55px;
}

.label-left {
  left: 10px;
}

.human-section {
  padding-block: clamp(112px, 12vw, 180px);
  background: var(--night);
  color: var(--white);
}

.human-inner {
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  gap: clamp(70px, 12vw, 180px);
}

.human-inner .eyebrow {
  margin-bottom: 25px;
  color: #87a0ff;
}

.human-copy {
  padding-top: 42px;
}

.human-copy p {
  color: rgba(255, 255, 255, 0.62);
}

.human-copy p + p {
  margin-top: 24px;
}

.compare-grid {
  margin-top: 85px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.compare-grid article {
  min-height: 315px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.035);
}

.compare-grid article > span {
  color: #87a0ff;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.compare-grid h3 {
  margin-top: auto;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.compare-grid p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.6;
}

.usecases-section .section-heading {
  grid-template-columns: 0.3fr 1fr;
}

.usecase-list {
  margin-top: 75px;
  border-top: 1px solid var(--line);
}

.usecase-list > details {
  border-bottom: 1px solid var(--line);
}

.usecase-list summary {
  min-height: 135px;
  display: grid;
  grid-template-columns: 0.14fr 1fr auto;
  align-items: center;
  gap: 38px;
  list-style: none;
  cursor: pointer;
}

.usecase-list summary::-webkit-details-marker {
  display: none;
}

.usecase-number {
  color: var(--blue);
  font-size: 10px;
}

.usecase-title {
  font-size: clamp(28px, 3.6vw, 50px);
  letter-spacing: -0.045em;
}

.usecase-list i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  font-style: normal;
  font-size: 25px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.usecase-list summary:hover i,
.usecase-list summary:focus-visible i {
  border-color: var(--blue);
}

.usecase-list details[open] i {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
  transform: rotate(45deg);
}

.usecase-answer {
  display: grid;
  grid-template-columns: 0.14fr 1fr auto;
  gap: 38px;
}

.usecase-answer p {
  grid-column: 2;
  max-width: 800px;
  padding: 0 0 38px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.contact-section {
  padding-block: clamp(112px, 12vw, 180px);
  background:
    radial-gradient(circle at 12% 15%, rgba(83, 113, 255, 0.34), transparent 28%),
    var(--blue);
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  align-items: start;
  gap: clamp(70px, 10vw, 150px);
}

.contact-copy .eyebrow {
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.65);
}

.contact-copy > p {
  max-width: 530px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-form {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  background: rgba(18, 35, 104, 0.22);
  backdrop-filter: blur(16px);
}

.contact-form label {
  display: grid;
  gap: 9px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-form > label + label,
.contact-form .form-row + label,
.contact-form label + .form-row {
  margin-top: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form input {
  min-height: 44px;
}

.contact-form textarea {
  min-height: 110px;
  padding-block: 12px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

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

.contact-form .privacy-check {
  margin-top: 22px;
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
}

.privacy-check input {
  width: 15px;
  min-height: 15px;
  margin-top: 1px;
  accent-color: var(--white);
}

.privacy-check a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.button-form {
  width: 100%;
  margin-top: 26px;
  background: var(--white);
  color: var(--blue);
}

.button-form:hover,
.button-form:focus-visible {
  background: var(--blue-pale);
}

.form-note,
.form-status {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  line-height: 1.5;
}

.form-status:empty {
  display: none;
}

footer {
  min-height: 250px;
  padding-block: 58px 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 30px;
}

.footer-brands {
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-wordmark {
  font-size: 17px;
}

.footer-brand-divider {
  width: 1px;
  height: 34px;
  background: var(--line);
}

.footer-hasseldamm {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-hasseldamm img {
  width: 150px;
  height: auto;
  display: block;
}

footer > p:not(.copyright) {
  grid-column: 1;
  color: var(--muted);
  font-size: 12px;
}

footer nav {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
  color: var(--muted);
  font-size: 12px;
}

footer nav a {
  transition: color 180ms ease;
}

footer nav a:hover,
footer nav a:focus-visible {
  color: var(--blue);
}

.copyright {
  align-self: end;
  color: #a4a8ae;
  font-size: 10px;
}

/* Legal pages */

.legal-header .wordmark {
  flex-shrink: 0;
}

.legal-main {
  width: min(calc(100% - 64px), 980px);
  margin-inline: auto;
  padding-block: 110px 150px;
}

.legal-hero {
  padding-bottom: 76px;
  border-bottom: 1px solid var(--line);
}

.legal-hero .eyebrow {
  margin-bottom: 24px;
}

.legal-hero h1 {
  font-size: clamp(60px, 8vw, 110px);
}

.legal-hero > p:last-child {
  max-width: 650px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.legal-content {
  max-width: 760px;
  padding-top: 30px;
}

.legal-content section {
  padding-block: 42px;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 18px;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.legal-content p,
.legal-content address,
.legal-content li {
  color: var(--muted);
  font-size: 15px;
  font-style: normal;
  line-height: 1.72;
}

.legal-content p + p,
.legal-content p + address,
.legal-content address + p {
  margin-top: 15px;
}

.legal-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 90px;
  }

  .hero-copy {
    max-width: 850px;
  }

  .language-stage {
    width: min(100%, 760px);
    min-height: 560px;
    justify-self: end;
  }

  .statement-inner,
  .section-heading,
  .reference-heading {
    grid-template-columns: 0.25fr 1fr;
  }

  .section-heading > p:last-child,
  .reference-heading > p:last-child {
    grid-column: 2;
    max-width: 650px;
  }

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

  .delivery-card {
    min-height: 440px;
  }

  .technology-section {
    grid-template-columns: 1fr;
  }

  .technology-copy {
    max-width: 800px;
  }

  .network-panel {
    width: min(100%, 700px);
    justify-self: center;
  }

  .human-inner,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .human-copy {
    max-width: 750px;
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  .section-shell,
  footer,
  .site-header,
  .legal-main {
    width: min(calc(100% - 36px), var(--max-width));
  }

  .site-header {
    min-height: 76px;
    gap: 10px;
  }

  .header-actions {
    gap: 7px;
  }

  .site-language-switcher {
    gap: 0;
    padding: 2px;
  }

  .site-language-switcher a {
    min-width: 27px;
    height: 26px;
    padding-inline: 6px;
    font-size: 8px;
  }

  .header-cta {
    width: 42px;
    height: 42px;
    padding: 0;
    justify-content: center;
    overflow: hidden;
    color: transparent;
    white-space: nowrap;
  }

  .header-cta span {
    color: var(--ink);
    font-size: 16px;
  }

  .header-cta:hover span,
  .header-cta:focus-visible span {
    color: var(--white);
  }

  .wordmark {
    gap: 5px;
    font-size: 13px;
  }

  .wordmark i {
    width: 10px;
  }

  .wordmark small {
    font-size: 9px;
  }

  .hero {
    min-height: auto;
    gap: 58px;
    padding-block: 76px 82px;
  }

  h1 {
    font-size: clamp(53px, 15.5vw, 74px);
    line-height: 0.97;
  }

  .hero-intro {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .language-stage {
    min-height: 500px;
    padding: 22px;
    border-radius: 30px;
  }

  .speaker-wave {
    margin-block: 42px 30px;
  }

  .caption-card {
    padding: 18px;
  }

  .statement {
    padding-block: 105px;
  }

  .statement-inner,
  .section-heading,
  .usecases-section .section-heading,
  .reference-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .statement h2,
  .section-heading h2,
  .reference-heading h2,
  .technology-copy h2,
  .human-inner h2,
  .contact-copy h2 {
    font-size: clamp(43px, 12vw, 60px);
  }

  .section-heading > p:last-child {
    grid-column: auto;
  }

  .delivery-section,
  .technology-section,
  .usecases-section,
  .process-section,
  .reference-section,
  .human-section,
  .contact-section {
    padding-block: 104px;
  }

  .delivery-grid,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .delivery-card {
    min-height: 420px;
  }

  .process-list article {
    min-height: 0;
    grid-template-columns: 38px 1fr;
    align-items: start;
    gap: 15px;
    padding-block: 30px;
  }

  .process-list article > div {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-list h3 {
    font-size: 30px;
  }

  .reference-heading > p:last-child {
    grid-column: auto;
  }

  .reference-gallery {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .reference-photo-main {
    grid-column: auto;
  }

  .reference-photo,
  .reference-photo-main {
    min-height: 330px;
  }

  .reference-details {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .network-panel {
    min-height: 430px;
  }

  .network-core {
    width: 140px;
    height: 140px;
  }

  .network-core span {
    font-size: 46px;
  }

  .network-label {
    min-width: 100px;
    padding: 10px 13px;
    font-size: 8px;
  }

  .label-top {
    top: 24px;
  }

  .label-bottom {
    bottom: 24px;
  }

  .usecase-list summary,
  .usecase-answer {
    min-height: 120px;
    grid-template-columns: 32px 1fr 44px;
    gap: 10px;
  }

  .usecase-title {
    font-size: 27px;
  }

  .usecase-list i {
    width: 42px;
    height: 42px;
  }

  .usecase-answer {
    min-height: 0;
  }

  .usecase-answer p {
    padding: 0 0 30px;
    font-size: 14px;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form label + .form-row {
    margin-top: 20px;
  }

  footer {
    min-height: 310px;
    grid-template-columns: 1fr;
  }

  .footer-brands {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .footer-brand-divider {
    width: 100%;
    height: 1px;
  }

  .footer-hasseldamm {
    align-items: flex-start;
    flex-direction: column;
  }

  footer nav {
    grid-column: 1;
    grid-row: auto;
    justify-content: flex-start;
  }

  .legal-header .header-cta {
    display: none;
  }

  .legal-back {
    display: none;
  }

  .legal-main {
    padding-block: 80px 110px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .speaker-wave span {
    transform: scaleY(0.72) !important;
  }
}
