:root {
  --bg: #f5f5f7;
  --surface: #ffffff;
  --surface-soft: #f0f0f2;
  --line: #d2d2d7;
  --text: #1d1d1f;
  --muted: #86868b;
  --accent: #0071e3;
  --accent-hover: #0077ed;
  --warn: #bf4800;
  --warn-soft: #fff4ee;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
  --radius: 16px;
  --radius-lg: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.65;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-hover);
}

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

.site-container {
  width: min(1160px, calc(100vw - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(245, 245, 247, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.site-navbar {
  gap: 1.25rem;
  min-height: 82px;
  padding: 0;
}

.eyebrow,
.meta-label {
  font-family: "IBM Plex Mono", "SFMono-Regular", Menlo, monospace;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text);
  min-width: 0;
  margin-right: 0;
  padding: 0;
}

.brand:hover {
  color: var(--text);
}

.brand-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-name {
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-navbar-toggler {
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.site-navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 113, 227, 0.15);
}

.site-navbar-collapse {
  gap: 1rem;
}

.site-nav {
  display: flex;
  justify-content: flex-start;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.site-nav .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  min-height: 2.6rem;
  padding: 0 1.15rem 0 0.9rem;
  padding-right: 1.09rem !important;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav .nav-link:active {
  transform: scale(0.95);
}

.site-nav .nav-link.active,
.site-nav .nav-link:hover {
  color: var(--text);
  background: rgba(0, 0, 0, 0.05);
}

.ui-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.nav-icon {
  opacity: 0.78;
}

.status-cluster {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2rem;
  padding: 0.3rem 0.78rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid var(--line);
  background: var(--surface);
}

.status-pill-channel {
  border-color: #d2d2d7;
  background: #f0f0f2;
  color: #6e6e73;
}

.status-pill-version {
  color: var(--text);
}

.status-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.75;
}

.status-icon {
  color: var(--muted);
}

main {
  padding: 2.6rem 0 4.2rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

h2,
h3 {
  margin: 0;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.lede,
.page-intro,
.page-body,
.footer-copy,
.download-copy,
.markdown-body,
.split-copy p {
  color: var(--muted);
}

.hero {
  display: grid;
  gap: 2rem;
  justify-items: center;
  padding-top: 0.4rem;
}

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

.hero-eyebrow {
  margin: 0 0 1.1rem;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
}

.hero h1 {
  margin-inline: auto;
  font-size: clamp(3.15rem, 6vw, 5.4rem);
  max-width: 13ch;
}

.hero .lede {
  margin: 1rem auto 0;
  max-width: 58ch;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  justify-content: center;
}

.btn-dark {
  --bs-btn-bg: var(--accent);
  --bs-btn-border-color: var(--accent);
  --bs-btn-hover-bg: var(--accent-hover);
  --bs-btn-hover-border-color: var(--accent-hover);
  --bs-btn-color: #fff;
  border-radius: 999px;
  padding: 0.55rem 1.4rem;
  font-weight: 500;
  font-size: 0.95rem;
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

.btn-dark:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(0, 113, 227, 0.3);
}

.btn-dark:active {
  transform: scale(0.97);
  box-shadow: none;
}

.btn-outline-dark {
  --bs-btn-color: var(--accent);
  --bs-btn-border-color: var(--accent);
  --bs-btn-hover-bg: rgba(0, 113, 227, 0.08);
  --bs-btn-hover-border-color: var(--accent);
  --bs-btn-hover-color: var(--accent);
  border-radius: 999px;
  padding: 0.55rem 1.4rem;
  font-weight: 500;
  font-size: 0.95rem;
  transition: transform 200ms ease, background-color 200ms ease;
}

.btn-outline-dark:hover {
  transform: scale(1.03);
}

.btn-outline-dark:active {
  transform: scale(0.97);
}

.download-card,
.download-note,
.docker-block,
.notes-card,
.page-body {
  background: var(--surface);
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-figure {
  width: min(980px, 100%);
  margin-inline: auto;
  overflow: visible;
  border-radius: 18px;
}

.hero-figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-figure .carousel-inner {
  border-radius: inherit;
  overflow: hidden;
}

.hero-figure .carousel-item img {
  display: block;
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.hero-figure .carousel-indicators {
  margin-bottom: 1rem;
  gap: 0.2rem;
}

.hero-figure .carousel-inner {
  margin-bottom: 1.2rem;
}

.hero-figure .carousel-indicators button {
  width: 0.5rem;
  height: 0.5rem;
  margin-inline: 0.25rem;
  border: 0;
  border-radius: 999px;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
  transition: background-color 200ms ease;
}

.hero-figure .carousel-indicators .active {
  background-color: var(--accent);
}

.hero-figure .carousel-control-prev,
.hero-figure .carousel-control-next {
  width: 10%;
}

.hero-figure .carousel-control-prev {
  left: -2.5rem;
}

.hero-figure .carousel-control-next {
  right: -2.5rem;
}

.hero-figure .carousel-control-prev-icon,
.hero-figure .carousel-control-next-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background-color: rgba(0, 0, 0, 0.35);
  background-size: 50%;
  transition: background-color 200ms ease;
}

.hero-figure .carousel-control-prev:hover .carousel-control-prev-icon,
.hero-figure .carousel-control-next:hover .carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.55);
}

.screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.screenshot {
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.release-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 1.6rem;
  background: var(--surface);
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.release-item {
  padding: 1.1rem 1.25rem;
  border-right: 1px solid var(--surface-soft);
}

.release-item:last-child {
  border-right: 0;
}

.meta-label {
  display: block;
  margin-bottom: 0.32rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.meta-value {
  color: var(--text);
  font-size: 0.96rem;
}

.meta-link {
  color: inherit;
  text-decoration: none;
}

.meta-link:hover {
  color: var(--accent);
}

.section,
.download-group {

}

.section-header {
  max-width: 780px;
  margin-bottom: 1.15rem;
}

.section-header h2,
.page-header h1 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.product-list {
  display: grid;
  gap: 1rem;
}

.product-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 240px;
  gap: 1.25rem;
  align-items: center;
  padding: 1.35rem 1.5rem;
  background: var(--surface);
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow 250ms ease, transform 250ms ease;
}

.product-row:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.product-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.35rem;
}

.product-heading h3 {
  margin: 0;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  padding: 0.12rem 0.65rem;
  border-radius: 999px;
  border: 0;
  background: rgba(0, 113, 227, 0.08);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.product-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.product-summary {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.product-summary span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 0.82rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.92fr);
  gap: 2.6rem;
  align-items: center;
}

.split-reverse {
  grid-template-columns: minmax(460px, 0.92fr) minmax(0, 1fr);
}

.split-copy h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
}

.split-title {
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: var(--text);
}

.page {
  display: grid;
  gap: 1.7rem;
}

.page-header {
  max-width: 820px;
}

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

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

.download-card {
  position: relative;
  display: grid;
  gap: 1.1rem;
  padding: 1.2rem 1.25rem;
  transition: box-shadow 250ms ease, transform 250ms ease;
}

.download-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card-version-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  padding: 0.12rem 0.6rem;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 0;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.download-card-head {
  display: flex;
  gap: 0.95rem;
  align-items: flex-start;
  padding-right: 6rem;
}

.download-card-head h3 {
  font-size: 1.24rem;
  margin-bottom: 0.35rem;
}

.download-card-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.download-card-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.btn-download-inline {
  min-height: 2rem;
  padding: 0.24rem 0.7rem;
  font-size: 0.88rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.14rem 0.68rem;
  border-radius: 999px;
  border: 0;
  background: rgba(0, 113, 227, 0.08);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.status-badge::first-letter {
  text-transform: uppercase;
}

.download-icon {
  width: 56px;
  height: 56px;
  border-radius: 13px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.subtle-link {
  font-size: 0.92rem;
}

.linux-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.download-note,
.notes-card,
.docker-block {
  position: relative;
  padding: 1.2rem 1.25rem;
}

.download-note h3,
.docker-block h2 {
  margin-bottom: 0.55rem;
  font-size: 1.25rem;
}

.package-table {
  display: grid;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.package-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.72rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.package-line:first-child {
  border-top: 0;
}

.downloads-notes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.docker-meta {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.docker-meta div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.docker-block code {
  overflow-wrap: anywhere;
}

.source-block {
  display: grid;
  gap: 1rem;
}

.source-block h3 {
  margin: 0;
  font-size: 1.25rem;
}

.source-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.source-links .ui-icon {
  width: 1.05rem;
  height: 1.05rem;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 2.6rem;
  row-gap: 1.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-item {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 1.15rem;
  align-items: start;
  padding: 0;
}

.feature-icon {
  color: var(--text);
  line-height: 1;
}

.feature-icon .ui-icon {
  width: 1.45rem;
  height: 1.45rem;
}

.feature-item h3 {
  margin: 0 0 0.32rem;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  max-width: none;
}

.notes-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  margin-bottom: 1rem;
}

.repo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.2rem;
  padding: 0.2rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
}

.repo-link {
  transition: color 180ms ease, background-color 180ms ease;
}

.repo-link:hover {
  color: var(--accent);
  background: rgba(0, 113, 227, 0.05);
}

.repo-link .ui-icon {
  width: 1rem;
  height: 1rem;
}

.changelog-tabs {
  display: grid;
  gap: 1.25rem;
}

.changelog-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.changelog-tablist {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem;
  border: 0;
  border-radius: 999px;
  background: var(--surface-soft);
  width: fit-content;
}

.changelog-tab {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0 1rem;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.changelog-tab:hover {
  color: var(--text);
}

.changelog-tab:active {
  transform: scale(0.95);
}

#tab-server:checked ~ .changelog-tablist label[for="tab-server"],
#tab-client:checked ~ .changelog-tablist label[for="tab-client"] {
  background: var(--accent);
  color: #fff;
}

.changelog-panel {
  display: none;
}

#tab-server:checked ~ #panel-server,
#tab-client:checked ~ #panel-client {
  display: block;
}

.changelog-body {
  max-width: none;
}

.changelog-body > :first-child {
  margin-top: 0;
}

.changelog-body h1 {
  font-size: 2.1rem;
  margin-bottom: 1rem;
}

.changelog-body h2 {
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.changelog-body h3 {
  margin-top: 1.4rem;
}

.changelog-body ul {
  max-width: none;
}

.page-body {
  padding: 1.5rem 1.6rem;
  font-size: 1rem;
}

.page-body h2 {
  margin-top: 2rem;
  margin-bottom: 0.7rem;
  font-size: 1.9rem;
}

.page-body h3 {
  margin-top: 1.4rem;
  margin-bottom: 0.35rem;
  font-size: 1.2rem;
}

.page-body p,
.page-body ul {
  max-width: 72ch;
}

.page-body ul {
  padding-left: 1.2rem;
}

.page-body img {
  margin: 1.4rem 0;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.page-body pre,
.page-body code {
  max-width: 100%;
  overflow-x: auto;
}

.page-body pre {
  padding: 0.9rem 1rem;
  background: var(--surface-soft);
  border-radius: 12px;
}

.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 5rem;
  padding: 2.4rem 0 2.8rem;
  background: transparent;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.footer-brand {
  display: grid;
  gap: 0.55rem;
}

.footer-title-row {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-mark {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-title {
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
}

.footer-claim {
  display: block;
  width: auto;
  max-width: 400px;
  margin-top: 20px;
}

.footer-copy {
  margin: 0;
  max-width: 44ch;
}

.footer-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-links-wrap {
  display: grid;
  gap: 0.8rem;
}

.footer-links-title {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, auto));
  gap: 0.65rem 1.1rem;
}

.footer-links a {
  color: var(--text);
  font-size: 0.94rem;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--accent);
}

@media (max-width: 1024px) {
  .split,
  .split-reverse,
  .product-row,
  .download-list,
  .download-list-compact,
  .linux-grid,
  .downloads-notes,
  .notes-grid,
  .feature-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links-wrap {
    justify-items: start;
  }

  .status-cluster,
  .product-summary {
    justify-content: flex-start;
  }

  .download-card-meta,
  .docker-meta div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

@media (max-width: 720px) {
  .site-container {
    width: min(100vw - 2rem, 1160px);
  }

  body {
    overflow-x: hidden;
  }

  h1, h2, h3 {
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
  }

  .brand {
    gap: 0.65rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .site-navbar {
    min-height: 74px;
  }

  .site-navbar-collapse {
    margin-top: 0.9rem;
    padding: 0.9rem 0 0.2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .site-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

  .site-nav .nav-link {
    width: 100%;
    justify-content: flex-start;
    padding-inline: 0.85rem;
  }

  .status-cluster {
    margin-top: 0.65rem;
  }

  main {
    padding-top: 1.6rem;
  }

  .site-footer {
    margin-top: 4rem;
    padding: 2rem 0 2.3rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2rem, 9vw, 2.6rem);
    letter-spacing: -0.03em;
  }

  .hero .lede {
    max-width: none;
    font-size: 1rem;
  }

  .hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .hero-figure .carousel-item img {
    min-height: 240px;
  }

  .hero-figure .carousel-control-prev,
  .hero-figure .carousel-control-next {
    width: 14%;
  }

  .hero-figure .carousel-control-prev {
    left: 0;
  }

  .hero-figure .carousel-control-next {
    right: 0;
  }

  .hero-figure .carousel-control-prev-icon,
  .hero-figure .carousel-control-next-icon {
    width: 1.6rem;
    height: 1.6rem;
  }

  .section-header h2,
  .page-header h1,
  .split-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .product-row {
    padding: 1.1rem 1.2rem;
  }

  .download-card,
  .download-note,
  .docker-block,
  .notes-card {
    padding: 1.1rem 1.2rem;
  }

  .download-card-head {
    padding-right: 0;
  }

  .card-version-badge {
    position: static;
    align-self: flex-start;
  }

  .release-strip {
    grid-template-columns: 1fr;
  }

  .release-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .release-item:last-child {
    border-bottom: 0;
  }
}

.about-page {
  max-width: 760px;
  margin: 0 auto;
}

.about-header {
  text-align: center;
  margin-bottom: 2rem;
}

.about-header h1 {
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  letter-spacing: -0.04em;
  margin-bottom: 0.8rem;
}

.about-header .page-intro {
  margin-inline: auto;
  max-width: 52ch;
}

.about-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2.4rem 2.4rem 2rem;
  display: grid;
  gap: 1.6rem;
}

.about-identity {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.about-name {
  margin: 0 0 0.25rem;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.about-role {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.about-body {
  display: grid;
  gap: 1rem;
}

.about-body p {
  margin: 0;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.7;
}

.about-links {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  padding-top: 0.4rem;
}

@media (max-width: 720px) {
  .about-card {
    padding: 1.6rem 1.4rem 1.4rem;
  }
}
