:root {
  --bg: #fbfbfa;
  --paper: #ffffff;
  --paper-soft: #f7f7f5;
  --ink: #191919;
  --ink-soft: #37352f;
  --muted: #6f6f6b;
  --muted-strong: #4f4f4b;
  --line: #e8e6e1;
  --line-strong: #d9d6cf;
  --accent: #0b6e69;
  --accent-soft: #edf7f5;
  --dark: #20201e;
  --dark-card: #2b2b28;
  --shadow: 0 18px 50px rgba(25, 25, 25, 0.12);
  --shadow-soft: 0 8px 24px rgba(25, 25, 25, 0.06);
  --radius: 8px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family:
    ui-sans-serif,
    "Segoe UI",
    -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    Arial,
    sans-serif;
  letter-spacing: 0;
}

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

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

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.04;
}

h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.16;
}

h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.28;
}

p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

pre,
code {
  font-family:
    "JetBrains Mono",
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;
}

.section-shell {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

section[id] {
  scroll-margin-top: 96px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  padding: 8px 0 0;
  pointer-events: none;
}

.nav-shell {
  display: flex;
  width: min(var(--container), calc(100% - 48px));
  height: 58px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 14px;
  border: 1px solid rgba(232, 230, 225, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 3px 14px rgba(25, 25, 25, 0.05);
  backdrop-filter: blur(14px);
  pointer-events: auto;
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 34px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7f7f5;
}

.language-toggle button {
  display: inline-flex;
  min-width: 36px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted-strong);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 680;
}

.language-toggle button.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(25, 25, 25, 0.08);
}

.brand,
.nav-links,
.footer-layout {
  display: flex;
  align-items: center;
}

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

.brand img {
  border-radius: 7px;
}

.nav-links {
  gap: 26px;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  transition: color 0.16s ease;
}

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

.button,
.nav-action {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 680;
  line-height: 1;
  white-space: nowrap;
}

.nav-action {
  min-width: 102px;
  background: var(--ink);
  color: #fff;
}

.button {
  min-width: 150px;
  padding: 0 18px;
  border: 1px solid transparent;
}

.button-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 32px rgba(16, 20, 24, 0.16);
}

.button-secondary {
  border-color: var(--line-strong);
  background: #fff;
  color: var(--ink);
}

.hero {
  padding: 64px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  align-items: start;
  column-gap: 70px;
  row-gap: 42px;
}

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

.eyebrow {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 760px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.55;
}

.hero-support {
  display: grid;
  grid-column: 1;
  grid-row: 2;
  max-width: 720px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 24px rgba(25, 25, 25, 0.05);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-support article {
  min-height: 76px;
  padding: 17px 20px;
}

.hero-support article + article {
  border-left: 1px solid var(--line);
}

.hero-support span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 620;
}

.hero-support strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.download-panel {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 100%;
}

.quick-download {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: #fff;
  padding: 0 20px;
  color: var(--ink);
}

.quick-download-primary {
  margin: 20px 0 12px;
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 28px rgba(25, 25, 25, 0.18);
}

.quick-download span:last-child {
  display: grid;
}

.quick-download strong {
  font-size: 16px;
  font-weight: 720;
  line-height: 1.1;
}

.platform-mark {
  position: relative;
  width: 22px;
  height: 22px;
  color: currentColor;
  flex: 0 0 auto;
}

.platform-mark::before {
  position: absolute;
  inset: 0;
  background: currentColor;
  content: "";
  -webkit-mask: var(--platform-mark-mask) center / contain no-repeat;
  mask: var(--platform-mark-mask) center / contain no-repeat;
}

.platform-mark-windows {
  --platform-mark-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M6.555 1.375 0 2.237v5.45h6.555zM0 13.795l6.555.933V8.313H0zm7.278-5.4.026 6.378L16 16V8.395zM16 0 7.33 1.244v6.414H16z'/%3E%3C/svg%3E");
}

.platform-mark-mac {
  --platform-mark-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='black' d='M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.2-39.5.6-76 22.9-96.4 58.4-41.1 71.4-10.5 177.2 29.5 235.1 19.6 28.3 42.9 60.1 73.5 58.9 29.5-1.2 40.6-19.1 76.4-19.1 35.8 0 45.8 19.1 76.9 18.5 31.7-.6 51.7-28.8 71.2-57.2 22.5-32.9 31.8-64.7 32.3-66.3-.7-.3-62-23.5-62.2-93.3zm-58-166.3c16.4-19.8 27.5-47.4 24.5-74.8-23.7 1-52.4 15.8-69.3 35.6-15.2 17.6-28.5 45.8-24.9 72.8 26.4 2 53.4-13.4 69.7-33.6z'/%3E%3C/svg%3E");
}

.platform-mark-release::before {
  position: absolute;
  left: 3px;
  top: 2px;
  width: 11px;
  height: 13px;
  border: 1.8px solid currentColor;
  border-radius: 3px;
  content: "";
}

.platform-mark-release::after {
  position: absolute;
  left: 6px;
  top: 5px;
  width: 5px;
  height: 5px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.desktop-download-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(25, 25, 25, 0.08);
  padding: 24px;
}

.download-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.download-kicker {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(11, 110, 105, 0.18);
  border-radius: 999px;
  background: rgba(11, 110, 105, 0.08);
  padding: 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.desktop-download-card h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 720;
  line-height: 1.15;
}

.desktop-download-card > p {
  max-width: 330px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
}

.download-version-pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  padding: 0 13px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.download-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.download-option {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 12px;
  color: var(--ink);
  transition:
    border-color 0.16s ease,
    background 0.16s ease,
    transform 0.16s ease;
}

.download-option:hover {
  border-color: rgba(11, 110, 105, 0.26);
  background: #fff;
  transform: translateY(-1px);
}

.download-option > span:last-child {
  display: grid;
  gap: 4px;
}

.download-option strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
}

.download-option small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.hero-window {
  margin-top: 38px;
}

.window-frame {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 44px rgba(25, 25, 25, 0.1);
}

.window-bar {
  display: flex;
  height: 38px;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: #f7f7f5;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: #e9eef3;
}

.window-frame img {
  width: 100%;
  max-height: 690px;
  object-fit: cover;
  object-position: center top;
}

.problem-section,
.usecase-section {
  padding: 84px 0;
}

.split-heading {
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.62fr);
  align-items: end;
  margin-bottom: 46px;
}

.split-heading > p {
  color: var(--muted-strong);
  font-size: 16px;
  line-height: 1.58;
}

.compact-heading {
  grid-template-columns: minmax(0, 760px);
  gap: 0;
}

.section-lede {
  max-width: 720px;
  margin-top: 14px;
  color: var(--muted-strong);
  font-size: 16px;
}

.value-intro {
  max-width: 760px;
  margin-bottom: 38px;
}

.value-board {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 24px rgba(25, 25, 25, 0.05);
}

.value-thesis {
  display: flex;
  min-height: 370px;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background: var(--dark);
}

.value-thesis span,
.value-thesis small {
  color: #85d7ff;
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0;
  text-transform: uppercase;
}

.value-thesis h3 {
  max-width: 430px;
  color: #fff;
  font-size: 26px;
  line-height: 1.25;
}

.value-thesis small {
  color: #aebdcc;
  text-transform: none;
}

.value-points {
  display: grid;
  align-content: stretch;
}

.value-points article {
  display: grid;
  min-height: 123px;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 28px 32px;
  border-bottom: 1px solid var(--line);
}

.value-points article:last-child {
  border-bottom: 0;
}

.value-points span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 720;
}

.value-points h3 {
  margin-bottom: 10px;
  font-size: 17px;
}

.value-points p {
  max-width: 560px;
  font-size: 14px;
  line-height: 1.55;
}

.decision-strip {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
}

.decision-strip article {
  min-height: 98px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.decision-strip span {
  display: block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.decision-strip strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

.gallery-section,
.component-section {
  padding: 82px 0 92px;
  border-top: 1px solid var(--line);
  background: var(--paper-soft);
}

.gallery-board {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 720px) minmax(360px, 1fr);
  align-items: start;
}

.gallery-primary,
.gallery-stack article,
.component-browser {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 6px 18px rgba(25, 25, 25, 0.04);
}

.gallery-primary {
  overflow: hidden;
}

.gallery-primary img {
  width: 100%;
  height: 322px;
  object-fit: cover;
  object-position: left top;
}

.gallery-primary div {
  padding: 24px 26px 28px;
}

.gallery-primary p {
  max-width: 560px;
  margin-top: 10px;
  font-size: 14px;
}

.gallery-stack {
  display: grid;
  gap: 12px;
}

.gallery-stack article {
  display: grid;
  min-height: 104px;
  grid-template-columns: 108px 1fr;
  gap: 18px;
  align-items: center;
  padding: 14px;
}

.gallery-stack img {
  width: 108px;
  height: 72px;
  border-radius: 6px;
  object-fit: cover;
  object-position: left top;
}

.gallery-stack p {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.45;
}

.component-section {
  background: #fff;
}

.component-browser {
  display: grid;
  overflow: hidden;
  min-height: 570px;
  grid-template-columns: 220px 1fr;
  background: var(--paper-soft);
}

.component-rail {
  display: grid;
  align-content: start;
  gap: 10px;
  border-right: 1px solid var(--line);
  background: #fff;
  padding: 24px 16px;
}

.component-rail a {
  display: flex;
  min-height: 38px;
  align-items: center;
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.component-rail a.active {
  background: var(--accent-soft);
  color: var(--accent);
}

.component-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 24px;
}

.component-grid article {
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 16px;
  box-shadow: none;
}

.component-grid img {
  width: 50px;
  height: 50px;
  margin-bottom: 14px;
  object-fit: contain;
}

.component-grid h3 {
  margin-bottom: 6px;
  font-size: 15px;
}

.component-grid p {
  font-size: 13px;
  line-height: 1.4;
}

.usecase-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.usecase-grid article {
  min-height: 256px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 6px 18px rgba(25, 25, 25, 0.04);
}

.usecase-grid span {
  display: block;
  margin-bottom: 76px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 720;
}

.usecase-grid h3 {
  margin-bottom: 14px;
  font-size: 20px;
}

.usecase-grid p {
  font-size: 15px;
  line-height: 1.58;
}

.integration-layout {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.78fr);
  align-items: stretch;
}

.integration-summary {
  display: grid;
  gap: 18px;
}

.integration-callout {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: none;
}

.integration-callout span,
.code-panel-head span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0;
  text-transform: uppercase;
}

.integration-callout h3 {
  max-width: 560px;
  margin-bottom: 14px;
  font-size: 23px;
  line-height: 1.24;
}

.integration-callout p {
  max-width: 610px;
  color: var(--ink-soft);
  font-size: 15px;
}

.integration-choices {
  display: grid;
  gap: 12px;
}

.integration-choices article {
  display: grid;
  min-height: 92px;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.integration-choices span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 620;
}

.integration-choices h3 {
  margin-bottom: 6px;
  font-size: 16px;
}

.integration-choices p {
  color: var(--muted-strong);
  font-size: 14px;
  line-height: 1.55;
}

.integration-code-panel {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 6px 18px rgba(25, 25, 25, 0.04);
  padding: 24px;
}

.code-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.code-panel-head span {
  color: var(--accent);
}

.code-panel-head h3 {
  color: var(--ink);
  font-size: 22px;
}

.integration-code-panel pre {
  overflow-x: auto;
  margin: 22px 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7f7f5;
  padding: 18px;
  color: var(--ink-soft);
  font-size: 12.5px;
  line-height: 1.68;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.integration-code-panel code {
  color: inherit;
}

.code-comment {
  margin-top: auto;
  color: var(--muted-strong);
  font-size: 14px;
  line-height: 1.55;
}

.engineering-section {
  padding: 82px 0;
  border-top: 1px solid var(--line);
  background: var(--paper-soft);
  color: var(--ink);
}

.engineering-layout {
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  align-items: start;
}

.engineering-section .eyebrow {
  color: var(--accent);
}

.engineering-section h2 {
  color: var(--ink);
}

.engineering-section p {
  max-width: 560px;
  margin-top: 18px;
  color: var(--muted-strong);
  font-size: 15px;
}

.engineering-list {
  display: grid;
  gap: 12px;
}

.engineering-list article {
  display: grid;
  min-height: 48px;
  grid-template-columns: 170px 1fr;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 0 18px;
}

.engineering-list span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.engineering-list strong {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  color: var(--muted);
}

.footer-layout {
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

.footer-layout span:first-child {
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 1100px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 32px;
  }

  .nav-links {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .download-panel {
    grid-column: auto;
    grid-row: auto;
    max-width: 520px;
  }

  .hero-support {
    grid-column: auto;
    grid-row: auto;
  }

  .split-heading,
  .value-board,
  .gallery-board,
  .integration-layout,
  .engineering-layout {
    grid-template-columns: 1fr;
  }

  .decision-strip,
  .usecase-grid,
  .component-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-thesis {
    min-height: 260px;
  }

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

  .hero-support article + article {
    border-left: 0;
  }

  .hero-support article:nth-child(2n) {
    border-left: 1px solid var(--line);
  }

  .hero-support article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .component-browser {
    grid-template-columns: 1fr;
  }

  .component-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .section-shell,
  .nav-shell {
    width: min(100% - 28px, var(--container));
  }

  h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  h2 {
    font-size: 27px;
    line-height: 1.18;
  }

  p {
    font-size: 15px;
  }

  .site-header {
    padding-top: 10px;
  }

  .nav-shell {
    height: 56px;
    padding: 0 10px;
  }

  .nav-tools {
    gap: 8px;
  }

  .language-toggle {
    height: 34px;
  }

  .language-toggle button {
    min-width: 32px;
    height: 26px;
  }

  .nav-action {
    min-width: 88px;
  }

  .hero {
    padding: 52px 0 76px;
  }

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

  .hero-support {
    grid-template-columns: 1fr;
  }

  .hero-support article {
    min-height: 68px;
    padding: 15px 18px;
  }

  .hero-support article,
  .hero-support article:nth-child(2n),
  .hero-support article:nth-child(n + 3) {
    border-left: 0;
    border-top: 0;
  }

  .hero-support article + article {
    border-top: 1px solid var(--line);
  }

  .quick-download {
    width: 100%;
    font-size: 16px;
  }

  .desktop-download-card {
    border-radius: 10px;
    padding: 18px;
  }

  .download-card-head {
    display: grid;
    gap: 14px;
  }

  .download-version-pill {
    justify-items: start;
    text-align: left;
  }

  .download-list {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-window {
    margin-top: 36px;
  }

  .window-bar {
    height: 30px;
  }

  .window-frame img {
    max-height: none;
  }

  .problem-section,
  .usecase-section,
  .gallery-section,
  .component-section,
  .engineering-section {
    padding: 68px 0;
  }

  .split-heading {
    gap: 22px;
    margin-bottom: 36px;
  }

  .decision-strip,
  .usecase-grid,
  .component-grid,
  .gallery-stack article,
  .engineering-list article {
    grid-template-columns: 1fr;
  }

  .value-intro {
    margin-bottom: 34px;
  }

  .value-thesis {
    min-height: 260px;
    padding: 28px;
  }

  .value-thesis h3 {
    font-size: 24px;
  }

  .value-points article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 26px 24px;
  }

  .decision-strip article {
    min-height: 0;
  }

  .decision-strip span {
    margin-bottom: 18px;
  }

  .usecase-grid article {
    min-height: 0;
    padding: 24px;
  }

  .usecase-grid span {
    margin-bottom: 28px;
  }

  .section-lede {
    font-size: 15px;
  }

  .integration-callout,
  .integration-code-panel {
    padding: 24px;
  }

  .integration-callout {
    min-height: 0;
  }

  .integration-callout h3 {
    font-size: 22px;
  }

  .integration-choices article {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px;
  }

  .code-panel-head {
    display: block;
  }

  .integration-code-panel {
    min-height: 0;
  }

  .integration-code-panel pre {
    padding: 18px;
    font-size: 12px;
  }

  .gallery-primary img {
    height: auto;
  }

  .gallery-stack article {
    gap: 14px;
  }

  .gallery-stack img {
    width: 100%;
    height: auto;
  }

  .component-rail {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }

  .component-grid {
    gap: 14px;
    padding: 18px;
  }

  .engineering-layout {
    gap: 34px;
  }

  .footer-layout {
    align-items: stretch;
    flex-direction: column;
  }
}

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

  .nav-action {
    min-width: 76px;
  }
}
