:root {
  color-scheme: dark;
  --ink: #080a09;
  --ink-2: #101411;
  --graphite: #1c211d;
  --steel: #8d9892;
  --muted: #b7beb8;
  --paper: #f5f1e8;
  --warm: #d9cdb7;
  --copper: #c8874e;
  --signal: #a6f07c;
  --line: rgba(245, 241, 232, 0.16);
  --line-strong: rgba(245, 241, 232, 0.28);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(245, 241, 232, 0.035) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(rgba(245, 241, 232, 0.025) 1px, transparent 1px) 0 0 / 88px 88px,
    radial-gradient(circle at 80% 10%, rgba(200, 135, 78, 0.1), transparent 26rem),
    var(--ink);
}

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

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

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  width: auto;
  height: auto;
  padding: 0.7rem 1rem;
  clip: auto;
  background: var(--paper);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(12rem, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  width: min(calc(100% - 2rem), var(--max));
  margin: 1rem auto 0;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(245, 241, 232, 0.15);
  border-radius: 8px;
  background: rgba(8, 10, 9, 0.64);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(245, 241, 232, 0.24);
  background: rgba(8, 10, 9, 0.9);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.78rem;
  min-width: 0;
  min-height: 3.75rem;
  font-weight: 700;
}

.brand-logo {
  width: 3.45rem;
  height: 3.45rem;
  flex: 0 0 auto;
  padding: 0.2rem;
  border: 1px solid rgba(245, 241, 232, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(245, 241, 232, 0.18), rgba(245, 241, 232, 0.04) 58%, transparent 72%),
    #050706;
  object-fit: cover;
  box-shadow:
    0 0 0 1px rgba(166, 240, 124, 0.18),
    0 0 20px rgba(166, 240, 124, 0.18),
    0 12px 24px rgba(0, 0, 0, 0.4);
}

.brand span {
  min-width: 0;
  overflow: hidden;
  font-size: 1rem;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  gap: 0.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav a {
  min-height: 2.25rem;
  padding: 0.55rem 0.7rem;
  border-radius: 6px;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.site-nav a:hover {
  background: rgba(245, 241, 232, 0.08);
  color: var(--paper);
}

.site-nav .nav-language {
  display: none;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.98) contrast(1.06);
}

.hero-scrim {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 10, 9, 0.94) 0%, rgba(8, 10, 9, 0.78) 36%, rgba(8, 10, 9, 0.22) 72%, rgba(8, 10, 9, 0.26) 100%),
    linear-gradient(0deg, rgba(8, 10, 9, 0.86), transparent 48%, rgba(8, 10, 9, 0.16));
}

.hero-content {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: clamp(7rem, 14vh, 10rem) 0 clamp(8rem, 16vh, 11rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.9vw, 6.85rem);
  font-weight: 540;
}

html[lang="ru"] h1,
html[lang="et"] h1,
html[lang="fi"] h1 {
  max-width: 830px;
  font-size: clamp(2.85rem, 5.65vw, 5.75rem);
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.35rem);
  font-weight: 520;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.hero-copy {
  max-width: 620px;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.34rem);
}

.hero-actions,
.final-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.82rem 1.04rem;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  transition:
    transform 170ms ease,
    background 170ms ease,
    border-color 170ms ease;
}

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

.button-primary {
  background: var(--paper);
  color: var(--ink);
}

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

.button-ghost {
  border-color: rgba(245, 241, 232, 0.25);
  color: var(--paper);
}

.button-ghost:hover {
  border-color: rgba(245, 241, 232, 0.42);
  background: rgba(245, 241, 232, 0.08);
}

.signal-panel {
  position: absolute;
  right: max(1rem, calc((100vw - var(--max)) / 2));
  bottom: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(620px, calc(100% - 2rem));
  border: 1px solid rgba(245, 241, 232, 0.16);
  border-radius: 8px;
  background: rgba(8, 10, 9, 0.68);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.signal-panel > div {
  padding: 1rem;
}

.signal-panel > div + div {
  border-left: 1px solid var(--line);
}

.signal-label,
.metric-strip span,
.service-number,
.process-node span {
  display: block;
  color: var(--steel);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-panel strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.98rem;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: rgba(16, 20, 17, 0.76);
}

.metric-strip > div {
  min-height: 13rem;
  padding: clamp(1.25rem, 3vw, 2.2rem);
  border-right: 1px solid var(--line);
}

.metric-strip > div:last-child {
  border-right: 0;
}

.metric-strip strong {
  display: block;
  margin-top: 1.9rem;
  font-size: clamp(1.2rem, 2.3vw, 1.8rem);
  line-height: 1.08;
}

.metric-strip p,
.fit-copy p,
.system-copy p,
.proof-card p,
.proof-points p,
.final-cta p {
  color: var(--muted);
}

.system-visual {
  margin: 2rem 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink-2);
  aspect-ratio: 16 / 10;
}

.system-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  opacity: 1;
}

.workflow-diagram {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(166, 240, 124, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(166, 240, 124, 0.09), transparent 42%),
    rgba(16, 20, 17, 0.84);
}

.workflow-diagram > div {
  position: relative;
  min-height: 8.8rem;
  padding: 1rem;
  border-right: 1px solid var(--line);
}

.workflow-diagram > div:last-child {
  border-right: 0;
}

.workflow-diagram > div::after {
  position: absolute;
  right: -0.35rem;
  bottom: 1.15rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 24px rgba(166, 240, 124, 0.35);
  content: "";
}

.workflow-diagram > div:last-child::after {
  display: none;
}

.workflow-diagram span {
  display: block;
  color: var(--signal);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workflow-diagram strong {
  display: block;
  margin-top: 1.5rem;
  color: var(--paper);
  font-size: 0.94rem;
  line-height: 1.18;
}

.section {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.intro-grid,
.system,
.proof {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.fit-copy {
  max-width: 660px;
  font-size: 1.04rem;
}

.audience-list {
  display: grid;
  gap: 0.75rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.audience-list li {
  padding: 0.85rem 0 0.85rem 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--paper);
}

.audience-list li::before {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin: 0 0.75rem 0 -1.25rem;
  border-radius: 50%;
  background: var(--copper);
  content: "";
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.inline-links a {
  min-height: 2.35rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(245, 241, 232, 0.18);
  border-radius: 6px;
  background: rgba(245, 241, 232, 0.045);
  color: var(--paper);
  font-size: 0.92rem;
  font-weight: 750;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(22rem, 0.72fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: clamp(8rem, 15vh, 11rem) 0 clamp(4rem, 8vw, 7rem);
}

.page-hero h1 {
  max-width: 950px;
  font-size: clamp(3rem, 5.8vw, 5.75rem);
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.page-hero-copy {
  min-width: 0;
}

.hero-proof {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 241, 232, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(166, 240, 124, 0.12), transparent 42%),
    rgba(16, 20, 17, 0.82);
  box-shadow: var(--shadow);
}

.hero-proof__head {
  padding: 1rem 1rem 0.9rem;
  border-bottom: 1px solid var(--line);
  color: var(--steel);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof__step {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  min-height: 5rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

.hero-proof__step:last-child {
  border-bottom: 0;
}

.hero-proof__step span {
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof__step strong {
  display: block;
  line-height: 1.12;
}

.hero-proof__step p {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.content-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(16, 20, 17, 0.52);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.content-grid article {
  min-height: 15rem;
  padding: 1.35rem;
  background: var(--ink);
}

.content-grid p {
  color: var(--muted);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  max-width: 920px;
  margin-bottom: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.service-grid article {
  min-height: 18.4rem;
  padding: 1.35rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(245, 241, 232, 0.04), transparent),
    rgba(245, 241, 232, 0.015);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.service-grid article:last-child {
  border-right: 0;
}

.service-grid article:nth-child(3n) {
  border-right: 0;
}

.service-grid article:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.service-grid article:hover {
  background:
    linear-gradient(180deg, rgba(166, 240, 124, 0.07), transparent),
    rgba(245, 241, 232, 0.03);
  transform: translateY(-4px);
}

.service-grid h3 {
  margin-top: 5.4rem;
}

.service-grid p {
  color: var(--muted);
}

.system {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-map {
  display: grid;
  gap: 0;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(90deg, rgba(166, 240, 124, 0.12), transparent 30%),
    var(--ink-2);
}

.process-node {
  position: relative;
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  padding: 1.3rem;
  border-bottom: 1px solid var(--line);
}

.process-node:last-child {
  border-bottom: 0;
}

.process-node::before {
  position: absolute;
  top: 1.85rem;
  left: 6.5rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 24px rgba(166, 240, 124, 0.35);
  content: "";
}

.proof-card {
  padding: 2rem;
  border: 1px solid var(--line);
  background: rgba(245, 241, 232, 0.04);
}

.proof-points {
  display: grid;
  gap: 1rem;
}

.proof-points > div {
  padding: 1.3rem 0;
  border-top: 1px solid var(--line);
}

.proof-points strong {
  font-size: 1.18rem;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.use-case-grid span {
  min-height: 7.8rem;
  padding: 1.25rem;
  background: var(--ink);
  color: var(--paper);
  font-weight: 750;
}

.final-cta {
  justify-content: space-between;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(166, 240, 124, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(166, 240, 124, 0.18), transparent 40%),
    linear-gradient(315deg, rgba(200, 135, 78, 0.12), transparent 38%),
    var(--ink-2);
}

.final-cta > div {
  max-width: 790px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.contact-flow,
.contact-brief {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.contact-flow span {
  position: relative;
  min-height: 2.25rem;
  padding: 0.52rem 0.72rem;
  border: 1px solid rgba(166, 240, 124, 0.2);
  border-radius: 6px;
  background: rgba(166, 240, 124, 0.075);
  color: var(--paper);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-brief strong {
  flex: 1 0 100%;
  color: var(--paper);
}

.contact-brief span {
  min-height: 2.35rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(245, 241, 232, 0.15);
  border-radius: 6px;
  background: rgba(245, 241, 232, 0.045);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-links a {
  min-height: 2.35rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(245, 241, 232, 0.18);
  border-radius: 6px;
  background: rgba(245, 241, 232, 0.06);
  color: var(--paper);
  font-size: 0.92rem;
  font-weight: 750;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.contact-links a:hover {
  border-color: rgba(166, 240, 124, 0.5);
  background: rgba(166, 240, 124, 0.11);
  transform: translateY(-1px);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 1.4rem 0 2rem;
  border-top: 1px solid var(--line);
  color: var(--steel);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.65rem 0.8rem;
  }

  .nav-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    background: transparent;
    color: var(--paper);
  }

  .nav-toggle-lines,
  .nav-toggle-lines::before,
  .nav-toggle-lines::after {
    display: block;
    width: 1.05rem;
    height: 2px;
    background: currentColor;
    content: "";
    transition: transform 170ms ease;
  }

  .nav-toggle-lines::before {
    transform: translateY(-0.38rem);
  }

  .nav-toggle-lines::after {
    transform: translateY(0.26rem);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-lines {
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
    transform: rotate(90deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
    transform: translateY(-2px) rotate(90deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.55rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(8, 10, 9, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem;
  }

  .site-nav .nav-language {
    display: none;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.35rem;
    margin-top: 0.45rem;
    padding-top: 0.55rem;
    border-top: 1px solid var(--line);
  }

  .site-nav .nav-language a {
    justify-content: center;
    border: 1px solid rgba(245, 241, 232, 0.18);
    text-align: center;
  }

  .site-nav .nav-language a[data-active="true"] {
    border-color: rgba(166, 240, 124, 0.38);
    background: rgba(166, 240, 124, 0.12);
    color: var(--paper);
  }

  .hero-content {
    padding-top: 12.2rem;
  }

  .signal-panel,
  .metric-strip,
  .intro-grid,
  .system,
  .proof,
  .page-hero,
  .service-grid,
  .content-grid,
  .use-case-grid,
  .workflow-diagram {
    grid-template-columns: 1fr;
  }

  .signal-panel {
    right: 1rem;
    bottom: 1rem;
  }

  .signal-panel > div + div,
  .metric-strip > div,
  .service-grid article,
  .workflow-diagram > div {
    border-left: 0;
    border-right: 0;
  }

  .metric-strip > div,
  .service-grid article {
    border-bottom: 1px solid var(--line);
  }

  .service-grid article {
    min-height: 13rem;
  }

  .workflow-diagram > div {
    min-height: auto;
    padding: 0.95rem;
    border-bottom: 1px solid var(--line);
  }

  .workflow-diagram > div:last-child {
    border-bottom: 0;
  }

  .workflow-diagram > div::after {
    right: 1rem;
    bottom: 1rem;
  }

  .service-grid h3 {
    margin-top: 3.4rem;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: min(calc(100% - 1rem), var(--max));
    margin-top: 0.5rem;
  }

  .brand {
    gap: 0.72rem;
    min-height: 3.9rem;
  }

  .brand-logo {
    width: 3.55rem;
    height: 3.55rem;
  }

  .brand span {
    font-size: 1.05rem;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(8, 10, 9, 0.95), rgba(8, 10, 9, 0.55)),
      linear-gradient(0deg, rgba(8, 10, 9, 0.9), rgba(8, 10, 9, 0.1) 50%, rgba(8, 10, 9, 0.58));
  }

  .hero-content {
    width: min(calc(100% - 1.25rem), var(--max));
    padding: 11.1rem 0 2.4rem;
  }

  h1 {
    font-size: clamp(2.25rem, 10.4vw, 3.05rem);
    line-height: 1.02;
  }

  html[lang="ru"] h1,
  html[lang="et"] h1,
  html[lang="fi"] h1 {
    font-size: clamp(1.9rem, 8.4vw, 2.45rem);
    line-height: 1.04;
  }

  .button {
    width: 100%;
  }

  .signal-panel {
    position: static;
    width: min(calc(100% - 1.25rem), var(--max));
    margin: 0 auto 2rem;
  }

  .signal-panel > div {
    padding: 0.85rem;
  }

  .section,
  .final-cta,
  .page-hero,
  .site-footer {
    width: min(calc(100% - 1.25rem), var(--max));
  }

  .page-hero {
    padding-top: 7.6rem;
  }

  .page-hero h1 {
    font-size: clamp(2.4rem, 10.5vw, 3.6rem);
  }

  .hero-proof__step {
    grid-template-columns: 3.4rem 1fr;
  }

  .content-grid article {
    min-height: auto;
  }

  .process-node {
    grid-template-columns: 1fr;
  }

  .process-node::before {
    top: 1.2rem;
    right: 1rem;
    left: auto;
  }

  .final-cta {
    align-items: stretch;
  }

  .contact-links a {
    flex: 1 1 calc(50% - 0.55rem);
    text-align: center;
  }

  .site-footer {
    flex-direction: column;
  }
}

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

.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding-left: 0.35rem;
  border-left: 1px solid var(--line);
}

.language-switcher a {
  min-width: 2rem;
  min-height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
}

.language-switcher a[data-active="true"],
.language-switcher a:hover {
  border-color: rgba(166, 240, 124, 0.35);
  background: rgba(166, 240, 124, 0.1);
  color: var(--paper);
}

@media (max-width: 980px) {
  .language-switcher {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.35rem;
    width: 100%;
    padding: 0.58rem 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .language-switcher a {
    min-height: 2.1rem;
    border-color: rgba(245, 241, 232, 0.16);
    background: rgba(245, 241, 232, 0.045);
  }
}

@media (max-width: 620px) {
  .language-switcher {
    gap: 0.28rem;
    padding-top: 0.52rem;
  }

  .language-switcher a {
    min-height: 2rem;
    font-size: 0.72rem;
  }
}
