:root {
  color-scheme: light;
  --bg: #f7f7f5;
  --surface: #ffffff;
  --surface-soft: #f0f1ef;
  --surface-strong: #e7e9e6;
  --ink: #171917;
  --muted: #686d68;
  --line: #dfe2dd;
  --accent: #2f5bea;
  --accent-hover: #2449bf;
  --accent-soft: #eef2ff;
  --accent-ink: #ffffff;
  --focus: #2f5bea;
  --radius: 10px;
  --shadow: 0 18px 48px rgba(24, 31, 24, 0.08);
  --font-sans: "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
  --font-mono: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #111311;
  --surface: #171a17;
  --surface-soft: #1e221e;
  --surface-strong: #292e29;
  --ink: #f2f3f0;
  --muted: #a7ada7;
  --line: #303630;
  --accent: #86a2ff;
  --accent-hover: #a5b9ff;
  --accent-soft: #202a4c;
  --accent-ink: #0e1321;
  --focus: #a5b9ff;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.58;
}

button,
input { font: inherit; }

select { font: inherit; }

a { color: inherit; }
button,
a { -webkit-tap-highlight-color: transparent; }

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 10;
  transform: translateY(-180%);
  border-radius: var(--radius);
  padding: 0.65rem 0.9rem;
  color: var(--bg);
  background: var(--ink);
}

.skip-link:focus { transform: translateY(0); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-header,
main,
footer {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.release-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--accent-ink);
  background: var(--accent);
  font-family: var(--font-mono);
  font-weight: 750;
}

.brand-mark {
  width: 1.9rem;
  height: 1.9rem;
  display: block;
  flex: 0 0 auto;
}

.brand-mark img { width: 100%; height: 100%; display: block; object-fit: contain; }
[data-theme="dark"] .brand-mark img { filter: invert(1); }

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong { font-size: 0.94rem; letter-spacing: -0.02em; }
.brand-copy small { margin-top: 0.22rem; color: var(--muted); font-size: 0.63rem; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.5rem);
  white-space: nowrap;
}

.primary-nav a,
.text-button,
.theme-toggle {
  border: 0;
  padding: 0;
  color: var(--muted);
  background: none;
  font-size: 0.86rem;
  text-decoration: none;
  cursor: pointer;
}

.language-control { display: inline-flex; }
.language-control select {
  min-height: 1.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.18rem 1.65rem 0.18rem 0.65rem;
  color: var(--ink);
  background: var(--surface);
  font-size: 0.72rem;
  cursor: pointer;
}

.primary-nav a:hover,
.text-button:hover,
.theme-toggle:hover { color: var(--ink); }

.theme-toggle {
  min-width: 2.8rem;
  min-height: 1.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.7rem;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  padding-block: clamp(5.5rem, 10vw, 9rem) clamp(3rem, 6vw, 5rem);
}

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

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

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

h1 {
  max-width: 13ch;
  margin-bottom: 1.4rem;
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 620;
  letter-spacing: -0.062em;
  line-height: 0.98;
}

html[lang="en"] h1,
html[lang="de"] h1 {
  max-width: 18ch;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.02;
}

.hero-summary {
  max-width: 34rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.66rem 0.95rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease;
}

.button-primary { color: var(--accent-ink); background: var(--accent); }
.button-primary:hover { background: var(--accent-hover); }
.button-secondary { color: var(--ink); background: var(--surface); border-color: var(--line); }
.button-secondary:hover { border-color: var(--accent); color: var(--accent); }
.button[disabled] { cursor: wait; opacity: 0.62; }

.hero-visual { margin: 0; }

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 7;
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center 58%;
  filter: saturate(0.7) contrast(0.98);
  box-shadow: var(--shadow);
}

.hero-visual figcaption {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.74rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip p {
  display: grid;
  gap: 0.12rem;
  margin: 0;
  padding: 1rem 1rem 1rem 0;
}

.proof-strip strong { font-family: var(--font-mono); font-size: 0.92rem; overflow-wrap: anywhere; }
.proof-strip span { color: var(--muted); font-size: 0.72rem; }

.products-section,
.downloads-section,
.about-section {
  padding-block: clamp(5rem, 9vw, 8rem);
}

.section-heading,
.downloads-heading { max-width: 680px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.section-heading h2,
.signal-intro h2,
.downloads-heading h2,
.about-statement h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.15rem, 4.2vw, 3.9rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.section-heading p,
.downloads-heading p,
.about-statement p {
  max-width: 60ch;
  margin-bottom: 0;
  color: var(--muted);
}

.product-grid {
  display: grid;
  border-top: 1px solid var(--line);
}

.product-panel {
  min-height: 260px;
  display: grid;
  grid-template-columns: minmax(160px, 0.36fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding-block: clamp(2.3rem, 5vw, 4.5rem);
  border-bottom: 1px solid var(--line);
}

.product-panel-primary { color: inherit; background: transparent; }

.product-index {
  margin: 0;
  color: var(--line);
  font-family: var(--font-mono);
  font-size: clamp(1.35rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.product-copy { max-width: 650px; }
.product-type { margin-bottom: 0.65rem; color: var(--accent); font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; }
.product-copy h3 { margin-bottom: 0.8rem; font-size: clamp(1.8rem, 3.4vw, 3rem); font-weight: 600; line-height: 1.05; letter-spacing: -0.04em; }
.product-copy > p:not(.product-type) { max-width: 56ch; margin-bottom: 1.2rem; color: var(--muted); }
.text-link { color: var(--accent); font-size: 0.88rem; font-weight: 700; text-underline-offset: 0.25rem; }

.signal-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  padding-block: clamp(4rem, 8vw, 7rem);
  color: var(--ink);
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-intro h2 { max-width: 13ch; margin-bottom: 0; }
.signal-status { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.signal-status p { margin: 0; padding-top: 0.8rem; border-top: 1px solid var(--line); }
.signal-status span,
.signal-status strong { display: block; }
.signal-status span { margin-bottom: 0.35rem; color: var(--muted); font-size: 0.72rem; }
.signal-status strong { font-family: var(--font-mono); font-size: 0.78rem; overflow-wrap: anywhere; }

.signal-workspace {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr) 224px;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-block: clamp(4rem, 7vw, 6rem);
}

.filter-rail { align-self: start; }
.filter-heading,
.pipeline-header,
.dialog-topline { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.filter-heading h2,
.pipeline-header h2,
.feed-header h2 { margin: 0; font-size: 1rem; }
.filter-rail fieldset { display: grid; gap: 0.6rem; margin: 1.5rem 0 0; border: 0; padding: 0; }
.filter-rail legend { margin-bottom: 0.65rem; color: var(--muted); font-size: 0.72rem; }
.filter-rail label { display: flex; align-items: center; gap: 0.55rem; font-size: 0.84rem; cursor: pointer; }
.filter-rail input { accent-color: var(--accent); }
.ownership-note { margin: 1.5rem 0 0; color: var(--muted); font-size: 0.72rem; }
.ownership-note strong { display: block; margin-bottom: 0.3rem; color: var(--ink); }

.feed-column { min-width: 0; }
.feed-header { display: flex; align-items: end; justify-content: space-between; gap: 1.5rem; margin-bottom: 1.2rem; }
.feed-header p { margin: 0.3rem 0 0; color: var(--muted); font-size: 0.76rem; }
.feed-language-note { margin: -0.4rem 0 1rem; color: var(--muted); font-size: 0.7rem; }
.search-field { width: min(260px, 100%); }
.search-field span { display: block; margin-bottom: 0.35rem; color: var(--muted); font-size: 0.7rem; }
.search-field input { width: 100%; border: 1px solid var(--line); border-radius: var(--radius); padding: 0.68rem 0.78rem; color: var(--ink); background: var(--surface); }
.feed-list { border-top: 1px solid var(--line); }

.feed-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.feed-thumb { aspect-ratio: 4 / 3; overflow: hidden; border-radius: 8px; background: var(--surface-strong); }
.feed-thumb img { width: 100%; height: 100%; display: block; object-fit: cover; }
.feed-thumb-fallback { height: 100%; display: grid; place-items: center; color: var(--accent); font-family: var(--font-mono); font-weight: 700; }
.feed-body { min-width: 0; }
.feed-meta { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-bottom: 0.35rem; color: var(--muted); font-family: var(--font-mono); font-size: 0.64rem; }
.feed-item h3 { margin: 0; font-size: clamp(0.98rem, 1.3vw, 1.12rem); line-height: 1.3; letter-spacing: -0.018em; }
.feed-item p { display: -webkit-box; overflow: hidden; margin: 0.45rem 0 0; color: var(--muted); font-size: 0.8rem; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.open-detail { border: 1px solid var(--line); border-radius: 8px; padding: 0.5rem 0.66rem; color: var(--ink); background: var(--surface); font-size: 0.78rem; white-space: nowrap; cursor: pointer; }
.open-detail:hover { border-color: var(--accent); color: var(--accent); }

.pipeline { align-self: start; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.15rem; background: var(--surface); }
.semantic-status { color: var(--accent); font-family: var(--font-mono); font-size: 0.68rem; font-weight: 700; }
.pipeline-list { display: grid; gap: 1rem; margin: 1.7rem 0; padding: 0; list-style: none; counter-reset: pipeline; }
.pipeline-list li { position: relative; padding-left: 1.55rem; counter-increment: pipeline; }
.pipeline-list li::before { content: counter(pipeline); position: absolute; left: 0; top: 0.05rem; color: var(--accent); font-family: var(--font-mono); font-size: 0.68rem; }
.pipeline-list strong,
.pipeline-list span { display: block; }
.pipeline-list strong { font-size: 0.82rem; }
.pipeline-list span { margin-top: 0.12rem; color: var(--muted); font-size: 0.7rem; }
.pipeline-meta { display: grid; gap: 0.7rem; margin: 0; padding-top: 0.9rem; border-top: 1px solid var(--line); }
.pipeline-meta div { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 0.6rem; font-size: 0.68rem; }
.pipeline-meta dt { color: var(--muted); }
.pipeline-meta dd { margin: 0; text-align: right; overflow-wrap: anywhere; }
.collect-button { width: 100%; margin-top: 1rem; }
.pipeline-schedule { margin: 1rem 0 0; color: var(--muted); font-family: var(--font-mono); font-size: 0.65rem; }

.skeleton-row { height: 110px; border-bottom: 1px solid var(--line); background: var(--surface-soft); }
.empty-state,
.error-state { padding: 4rem 1rem; text-align: center; color: var(--muted); }
.empty-state strong,
.error-state strong { display: block; margin-bottom: 0.5rem; color: var(--ink); font-size: 1.05rem; }

.downloads-section,
.about-section { border-top: 1px solid var(--line); }
.release-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.release-card { min-width: 0; padding: clamp(1.5rem, 3vw, 2.4rem); border-bottom: 1px solid var(--line); }
.release-card:nth-child(odd) { padding-left: 0; padding-right: clamp(1.5rem, 3vw, 2.4rem); border-right: 1px solid var(--line); }
.release-card:nth-child(even) { padding-right: 0; padding-left: clamp(1.5rem, 3vw, 2.4rem); }
.release-card-head { display: flex; align-items: start; justify-content: space-between; gap: 1.5rem; }
.release-product { margin: 0 0 0.45rem; color: var(--accent); font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; }
.release-card h3 { margin: 0; font-size: clamp(1.25rem, 2.5vw, 1.8rem); font-weight: 600; letter-spacing: -0.03em; }
.release-summary { max-width: 48ch; margin: 1.2rem 0 1.5rem; color: var(--muted); font-size: 0.84rem; }
.release-action { flex: 0 0 auto; }
.release-action-disabled { display: inline-flex; min-height: 42px; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); padding: 0.56rem 0.8rem; color: var(--muted); background: var(--surface-soft); font-size: 0.78rem; white-space: nowrap; }
.release-meta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.8rem 1.4rem; margin: 0; }
.release-meta div { min-width: 0; padding-top: 0.6rem; border-top: 1px solid var(--line); }
.release-meta dt { color: var(--muted); font-size: 0.66rem; }
.release-meta dd { margin: 0.15rem 0 0; font-size: 0.78rem; overflow-wrap: anywhere; }
.release-hash { grid-column: 1 / -1; }
.release-hash code { font-family: var(--font-mono); font-size: 0.68rem; }
.release-footer { display: flex; align-items: start; justify-content: space-between; gap: 2rem; margin-top: 1rem; }
.release-note { max-width: 64ch; margin: 0; color: var(--muted); font-size: 0.78rem; }
.release-skeleton { min-height: 250px; border-bottom: 1px solid var(--line); background: var(--surface-soft); }
.release-skeleton:first-child { border-right: 1px solid var(--line); }

.about-section { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr); gap: clamp(3rem, 8vw, 8rem); align-items: end; }
.about-statement h2 { max-width: 15ch; }
.principles { display: grid; gap: 0.8rem; margin: 0; }
.principles div { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 1rem; padding-top: 0.75rem; border-top: 1px solid var(--line); }
.principles dt { color: var(--muted); }
.principles dd { margin: 0; font-weight: 700; }

.detail-dialog { width: min(640px, calc(100% - 32px)); max-height: calc(100dvh - 48px); border: 1px solid var(--line); border-radius: var(--radius); padding: 0; color: var(--ink); background: var(--bg); box-shadow: var(--shadow); }
.detail-dialog::backdrop { background: rgba(8, 10, 8, 0.55); backdrop-filter: blur(4px); }
.dialog-shell { padding: clamp(1.5rem, 4vw, 2.8rem); }
.dialog-topline { color: var(--accent); font-family: var(--font-mono); font-size: 0.7rem; }
.detail-dialog h2 { max-width: 20ch; margin: 2rem 0 1rem; font-size: clamp(1.9rem, 4.6vw, 3.2rem); font-weight: 600; line-height: 1.04; letter-spacing: -0.045em; }
.detail-summary { color: var(--muted); }
.detail-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem; margin: 1.8rem 0; }
.detail-meta div { padding-top: 0.65rem; border-top: 1px solid var(--line); }
.detail-meta dt { color: var(--muted); font-size: 0.68rem; }
.detail-meta dd { margin: 0.2rem 0 0; font-size: 0.85rem; }

.toast { position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 4; max-width: min(360px, calc(100% - 3rem)); border-radius: var(--radius); padding: 0.8rem 0.95rem; color: var(--accent-ink); background: var(--accent); box-shadow: var(--shadow); }

footer { min-height: 140px; display: grid; grid-template-columns: 1fr auto minmax(250px, 0.8fr); align-items: start; gap: 2.5rem; padding-block: 2rem 3rem; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.78rem; }
footer strong { color: var(--ink); }
footer p { margin: 0.25rem 0 0; }
footer nav { display: flex; gap: 1rem; }
footer a { text-decoration: none; }
footer a:hover { color: var(--ink); }

.legal-main { padding-block: clamp(4rem, 8vw, 7rem); }
.legal-main article { max-width: 820px; }
.legal-intro { margin-bottom: 2rem; }
.legal-intro h1 { max-width: 16ch; margin-bottom: 1rem; font-size: clamp(2.8rem, 6vw, 5.2rem); }
.legal-intro > p:last-child { color: var(--muted); }
.legal-index { display: flex; flex-wrap: wrap; gap: 0.65rem 1.25rem; margin-bottom: 4rem; padding-block: 1rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.legal-index a { color: var(--accent); font-size: 0.84rem; font-weight: 700; text-underline-offset: 0.25rem; }
.legal-section { padding-block: 2rem; scroll-margin-top: 2rem; }
.legal-section + .legal-section { border-top: 1px solid var(--line); }
.legal-section h2 { margin-bottom: 1.2rem; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.04em; }
.legal-section h3 { margin: 2rem 0 0.55rem; font-size: 1rem; }
.legal-section p,
.legal-section li { color: var(--muted); }
.legal-section p { max-width: 70ch; }
.legal-section ul { display: grid; gap: 0.55rem; padding-left: 1.2rem; }

@media (max-width: 980px) {
  .product-panel { grid-template-columns: 140px minmax(0, 1fr); }
  .signal-workspace { grid-template-columns: 160px minmax(0, 1fr); }
  .pipeline { grid-column: 1 / -1; display: grid; grid-template-columns: 0.7fr 1.4fr 1fr; gap: 1.3rem; }
  .pipeline-list { grid-template-columns: repeat(3, 1fr); margin: 0; }
  .pipeline-meta { padding: 0; border-top: 0; }
  .collect-button { align-self: end; grid-column: 3; }
}

@media (max-width: 1080px) {
  .brand-copy small { display: none; }
  .primary-nav { gap: 0.9rem; }
}

@media (max-width: 767px) {
  .site-header,
  main,
  footer { width: min(100% - 32px, 1180px); }
  .site-header { min-height: 62px; }
  .brand-copy small { display: none; }
  .primary-nav a:nth-child(-n + 2) { display: none; }
  .primary-nav { gap: 0.75rem; }
  .hero { gap: 2.8rem; padding-block: 4.8rem 3.2rem; }
  h1 { max-width: 11ch; font-size: clamp(3rem, 14vw, 4.5rem); }
  .hero-visual img { aspect-ratio: 4 / 3; }
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .product-panel { grid-template-columns: 1fr; gap: 1.5rem; }
  .product-index { font-size: 1rem; }
  .signal-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .signal-status { grid-template-columns: 1fr 1fr; }
  .signal-workspace { grid-template-columns: 1fr; gap: 2.8rem; }
  .filter-rail fieldset { display: flex; flex-wrap: wrap; }
  .filter-rail legend { width: 100%; }
  .feed-header { display: grid; align-items: start; }
  .search-field { width: 100%; }
  .feed-item { grid-template-columns: 68px minmax(0, 1fr); gap: 0.8rem; }
  .open-detail { grid-column: 2; justify-self: start; }
  .pipeline { display: block; grid-column: auto; }
  .pipeline-list { display: grid; grid-template-columns: 1fr; margin: 1.7rem 0; }
  .pipeline-meta { padding-top: 0.9rem; border-top: 1px solid var(--line); }
  .collect-button { width: 100%; }
  .release-list { grid-template-columns: 1fr; }
  .release-card:nth-child(odd),
  .release-card:nth-child(even) { padding-inline: 0; border-right: 0; }
  .release-card-head { display: grid; }
  .release-action { justify-self: start; }
  .release-meta { grid-template-columns: 1fr; }
  .release-hash { grid-column: auto; }
  .release-footer { display: grid; }
  .about-section { grid-template-columns: 1fr; }
  .detail-meta { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; gap: 1.4rem; }
}

@media (max-width: 520px) {
  .primary-nav a { display: none; }
  .primary-nav { gap: 0.55rem; }
  .language-control select { max-width: 7.2rem; }
  html[lang="en"] h1,
  html[lang="de"] h1 { max-width: 100%; font-size: clamp(2.4rem, 11vw, 3.4rem); }
}

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