:root {
  color-scheme: light;
  --canvas: #f3f6ef;
  --paper: #fbfcf6;
  --surface: #fffffb;
  --surface-muted: #e7eee7;
  --surface-high: #f7faf3;
  --ink: #14211b;
  --ink-soft: #36483f;
  --muted: #64736a;
  --line: rgba(20, 33, 27, 0.12);
  --line-strong: rgba(20, 33, 27, 0.22);
  --accent: #4da890;
  --accent-muted: #d7ece3;
  --accent-ink: #16725f;
  --warning-bg: #eef1d9;
  --warning-ink: #69721b;
  --editor-bg: #1a221e;
  --shadow-soft: 0 26px 70px rgba(48, 68, 58, 0.12);
  --shadow-inset: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  --focus: rgba(22, 114, 95, 0.3);
  --font-sans: "Geist Sans", "Satoshi", "Plus Jakarta Sans", "Aptos", "Segoe UI", sans-serif;
  --font-mono: "Geist Mono", "JetBrains Mono", "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
  --max-width: 1240px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-heavy: cubic-bezier(0.32, 0.72, 0, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 251, 0.92) 0, rgba(255, 255, 251, 0) 430px),
    linear-gradient(116deg, rgba(77, 168, 144, 0.14) 0%, rgba(77, 168, 144, 0.06) 29%, transparent 29.2%),
    linear-gradient(24deg, transparent 0 58%, rgba(224, 231, 212, 0.55) 58.2% 82%, transparent 82.2%),
    repeating-linear-gradient(90deg, rgba(20, 33, 27, 0.03) 0 1px, transparent 1px 86px),
    repeating-linear-gradient(0deg, rgba(20, 33, 27, 0.024) 0 1px, transparent 1px 86px),
    linear-gradient(145deg, #f3f6ef 0%, #fbfcf6 46%, #e8f0e8 100%);
  background-size: auto, auto, auto, 86px 86px, 86px 86px, auto;
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

main {
  overflow-x: clip;
  overflow-y: visible;
}

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

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

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

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

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

code {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 0.92em;
  overflow-wrap: anywhere;
  padding: 0.08rem 0.28rem;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  padding-top: 12px;
  pointer-events: none;
  transition: padding-top 260ms var(--ease);
}

.site-header__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: min(calc(100% - 36px), var(--max-width));
  min-height: 46px;
  margin: 0 auto;
  border: 1px solid rgba(20, 33, 27, 0.12);
  border-radius: 10px;
  background: rgba(251, 252, 246, 0.62);
  box-shadow: var(--shadow-inset);
  padding: 5px;
  pointer-events: auto;
  backdrop-filter: blur(12px);
  transition:
    width 260ms var(--ease),
    min-height 260ms var(--ease),
    background-color 220ms var(--ease),
    border-color 220ms var(--ease),
    border-radius 260ms var(--ease),
    box-shadow 220ms var(--ease),
    padding 220ms var(--ease);
}

@media (min-width: 721px) {
  .site-header.is-compact {
    padding-top: 8px;
  }

  .site-header.is-compact .site-header__inner {
    width: min(calc(100% - 40px), 760px);
    min-height: 42px;
    border-color: rgba(20, 33, 27, 0.14);
    border-radius: 10px;
    background: rgba(251, 252, 246, 0.9);
    box-shadow:
      var(--shadow-inset),
      0 14px 30px rgba(55, 73, 64, 0.09);
    gap: 8px;
    padding: 4px;
    backdrop-filter: blur(16px);
  }

  .site-header.is-compact .brand__tab {
    min-height: 34px;
    padding-inline: 9px 12px;
  }

  .site-header.is-compact .brand__mark {
    width: 24px;
    height: 24px;
  }

  .site-header.is-compact .site-nav {
    gap: 2px;
    font-size: 0.78rem;
  }

  .site-header.is-compact .site-nav a {
    min-height: 30px;
    padding: 0 9px;
  }

  .site-header.is-compact .header-version {
    min-height: 30px;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  padding: 0;
}

.brand__tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  border: 1px solid rgba(20, 33, 27, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 251, 0.7);
  color: var(--ink);
  padding: 0 14px 0 10px;
  transition:
    background-color 180ms var(--ease),
    border-color 180ms var(--ease),
    min-height 220ms var(--ease),
    padding 220ms var(--ease);
}

.brand__mark {
  width: 26px;
  height: 26px;
  transition:
    width 220ms var(--ease),
    height 220ms var(--ease);
}

.brand__name {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 720;
  letter-spacing: 0;
  line-height: 1;
}

.brand:hover .brand__tab,
.brand:focus-visible .brand__tab {
  border-color: var(--line-strong);
  background: rgba(255, 255, 251, 0.9);
}

.brand:focus-visible {
  border-radius: 7px;
  outline: none;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 2px;
  min-width: 0;
  border: 1px solid rgba(20, 33, 27, 0.1);
  border-radius: 8px;
  background: rgba(20, 33, 27, 0.035);
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 680;
  padding: 2px;
  transition:
    gap 220ms var(--ease),
    font-size 220ms var(--ease);
}

.site-nav a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border-radius: 6px;
  padding: 0 10px;
  transition:
    background-color 180ms var(--ease),
    color 180ms var(--ease),
    transform 180ms var(--ease),
    min-height 220ms var(--ease),
    padding 220ms var(--ease);
}

.site-nav a:active {
  transform: translateY(1px) scale(0.99);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: rgba(255, 255, 251, 0.82);
  color: var(--ink);
  outline: none;
}

.site-nav a.is-active {
  box-shadow: inset 0 0 0 1px rgba(20, 33, 27, 0.05);
}

.header-version {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(20, 33, 27, 0.1);
  border-radius: 7px;
  background: rgba(215, 236, 227, 0.68);
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 780;
  padding: 0 9px;
  white-space: nowrap;
  transition: min-height 220ms var(--ease);
}

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

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

.hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: clamp(34px, 4.6vw, 70px);
  padding: clamp(70px, 10vw, 132px) 0 clamp(62px, 8vw, 104px);
}

.hero__copy {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 560px;
  margin-bottom: 22px;
  line-height: 1;
}

.hero__wordmark {
  width: min(100%, 540px);
  height: auto;
}

h2 {
  max-width: 780px;
  color: var(--ink);
  font-size: clamp(2.45rem, 4.9vw, 4.8rem);
  font-weight: 620;
  letter-spacing: 0;
  line-height: 0.94;
}

h3 {
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.25;
}

.hero__lede {
  max-width: 540px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 1.4vw, 1.24rem);
  line-height: 1.56;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.button {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 0 17px;
  font-size: 0.9rem;
  font-weight: 760;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46);
  transition:
    background-color 180ms var(--ease),
    border-color 180ms var(--ease),
    color 180ms var(--ease),
    transform 180ms var(--ease);
}

.button:active {
  transform: translateY(1px) scale(0.99);
}

.button--primary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--surface);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 22px rgba(20, 33, 27, 0.12);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #26302b;
  outline: none;
}

.button--secondary {
  background: rgba(255, 255, 251, 0.72);
  color: var(--ink);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: var(--line-strong);
  background: var(--surface);
  outline: none;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 680px;
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero__facts div {
  min-width: 0;
  padding: 14px 16px 14px 0;
}

.hero__facts div + div {
  border-left: 1px solid var(--line);
  padding-left: 16px;
}

.hero__facts dt {
  margin-bottom: 3px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero__facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 720;
  line-height: 1.35;
}

.hero__visual {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  align-self: center;
}

.app-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0;
  border: 1px solid rgba(20, 31, 27, 0.16);
  border-radius: 12px;
  background: var(--editor-bg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 30px 64px rgba(42, 65, 55, 0.17);
  line-height: 0;
}

.app-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.app-frame__image {
  width: 100%;
  height: auto;
  background: var(--editor-bg);
}

.markdown-scroll {
  position: absolute;
  top: 23%;
  bottom: 8%;
  left: 50%;
  width: min(50%, 400px);
  transform: translateX(-50%);
  overflow: hidden;
  border: 0;
  background: transparent;
  color: rgba(239, 248, 244, 0.78);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  line-height: 1.64;
  pointer-events: none;
}

.markdown-scroll::before,
.markdown-scroll::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  z-index: 1;
  height: 38px;
  pointer-events: none;
}

.markdown-scroll::before {
  top: 0;
  background: linear-gradient(
    to bottom,
    rgba(31, 35, 33, 0.96) 0%,
    rgba(31, 35, 33, 0.9) 42%,
    rgba(31, 35, 33, 0) 100%
  );
}

.markdown-scroll::after {
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(31, 35, 33, 0.96) 0%,
    rgba(31, 35, 33, 0.9) 42%,
    rgba(31, 35, 33, 0) 100%
  );
}

.markdown-panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  animation: panelSwap 12s var(--ease-heavy) infinite;
}

.markdown-panel--code {
  animation-delay: 6s;
}

.markdown-scroll__track {
  display: grid;
  gap: 26px;
  animation: markdownScroll 12s linear infinite;
}

.markdown-panel--code .markdown-scroll__track {
  animation-delay: -3s;
}

.markdown-scroll pre {
  margin: 0;
  white-space: pre-wrap;
}

.preview-caption {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 12px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.preview-caption span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 251, 0.66);
  padding: 5px 8px;
}

@keyframes markdownScroll {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(calc(-50% - 13px));
  }
}

@keyframes panelSwap {
  0%,
  42% {
    opacity: 1;
  }

  50%,
  92% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes statusPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(0.82);
    opacity: 0.68;
  }
}

.download-section,
.install-section,
.feature-section,
.notes-section {
  padding: clamp(54px, 8vw, 104px) 0;
}

.section-heading {
  max-width: 850px;
  margin-bottom: clamp(28px, 4vw, 46px);
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 1.01rem;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.52fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  max-width: none;
}

.download-console {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 10px;
  align-items: stretch;
  border: 1px solid rgba(20, 31, 27, 0.14);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 251, 0.86), rgba(231, 238, 231, 0.78)),
    var(--paper);
  box-shadow: var(--shadow-soft);
  padding: clamp(12px, 2vw, 18px);
}

.download-console__main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(16px, 3vw, 28px);
  align-items: center;
  min-height: 0;
  border-radius: 9px;
  background:
    radial-gradient(circle at 86% 8%, rgba(77, 168, 144, 0.24), transparent 28%),
    linear-gradient(135deg, #202822 0%, #18201c 64%, #141b18 100%);
  color: #f3f8f4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: clamp(18px, 3vw, 30px);
}

.download-console__copy {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(14px, 2vw, 20px);
  align-items: center;
  grid-column: 1;
  grid-row: 1 / span 3;
}

.download-console__copy h3 {
  margin-bottom: 6px;
  color: #f8fbf7;
  font-size: clamp(1.9rem, 4vw, 3.7rem);
  font-weight: 620;
  letter-spacing: 0;
  line-height: 0.96;
}

.download-console__copy p {
  max-width: 560px;
  margin: 0;
  color: rgba(243, 248, 244, 0.68);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
}

.download-console__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 10px !important;
  color: rgba(243, 248, 244, 0.72) !important;
  font-family: var(--font-mono);
  font-size: 0.68rem !important;
  font-weight: 780;
  line-height: 1.2;
  text-transform: uppercase;
}

.download-console__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(77, 168, 144, 0.14);
  animation: statusPulse 2.8s var(--ease-heavy) infinite;
}

.download-console[data-download-state="fallback"] .download-console__status-dot {
  background: var(--warning-ink);
  box-shadow: 0 0 0 4px rgba(105, 114, 27, 0.12);
}

.download-console__kicker {
  margin-bottom: 8px !important;
  color: var(--accent) !important;
  font-family: var(--font-mono);
  font-size: 0.74rem !important;
  font-weight: 780;
  text-transform: uppercase;
}

.download-console__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  grid-column: 2;
  grid-row: 3;
  justify-content: flex-end;
}

.download-console__checks span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(243, 248, 244, 0.7);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 740;
  padding: 0 10px;
  text-transform: uppercase;
}

.download-console__checks span span {
  min-height: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.download-console__switcher {
  display: grid;
  justify-content: start;
  align-items: center;
  min-width: 0;
}

.download-console__switcher--inset {
  display: block;
  grid-column: 2;
  grid-row: 1;
  justify-content: end;
  justify-self: end;
  width: 390px;
  max-width: 100%;
}

.download-console__switcher--inset .platform-tabs {
  width: 100%;
}

.platform-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 430px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 251, 0.62);
  padding: 3px;
}

.download-console__main .platform-tabs {
  width: 100%;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(243, 248, 244, 0.08);
}

.platform-tab {
  display: grid;
  gap: 0;
  align-items: center;
  width: 100%;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  min-height: 38px;
  padding: 6px 10px;
  text-align: center;
  transition:
    background-color 180ms var(--ease),
    border-color 180ms var(--ease),
    transform 180ms var(--ease);
}

.download-console__main .platform-tab {
  color: rgba(243, 248, 244, 0.76);
}

.platform-tab:hover,
.platform-tab:focus-visible {
  background: var(--surface);
  outline: none;
}

.download-console__main .platform-tab:hover,
.download-console__main .platform-tab:focus-visible {
  background: rgba(243, 248, 244, 0.12);
  color: #f8fbf7;
}

.platform-tab:active {
  transform: translateY(1px) scale(0.99);
}

.platform-tab.is-active {
  background: var(--accent-muted);
  box-shadow: inset 0 0 0 1px rgba(22, 114, 95, 0.08);
}

.download-console__main .platform-tab.is-active {
  background: rgba(92, 182, 163, 0.2);
  color: #f8fbf7;
}

.platform-tab strong,
.platform-tab small {
  display: block;
}

.platform-tab strong {
  font-size: 0.78rem;
  line-height: 1.2;
}

.platform-tab small {
  margin-top: 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 720;
  text-transform: uppercase;
}

.download-console__main .platform-tab small {
  color: rgba(243, 248, 244, 0.54);
}

.download-console__main .platform-tab.is-active small {
  color: var(--accent);
}

.platform-mark {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--accent-muted);
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 0.84rem;
  font-weight: 800;
}

.platform-mark--large {
  width: clamp(52px, 7vw, 76px);
  height: clamp(52px, 7vw, 76px);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(92, 182, 163, 0.16);
  color: var(--accent);
  font-size: clamp(1rem, 2vw, 1.4rem);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 25px;
  border-radius: 999px;
  background: var(--warning-bg);
  color: var(--warning-ink);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 760;
  letter-spacing: 0;
  padding: 0 9px;
  text-transform: uppercase;
  white-space: nowrap;
}

.badge--live {
  background: var(--accent-muted);
  color: var(--accent-ink);
}

.download-meta {
  display: inline-flex;
  margin-left: 8px;
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 760;
  white-space: nowrap;
}

.download-link {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 251, 0.62);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 740;
  padding: 0 12px;
  transition:
    background-color 180ms var(--ease),
    border-color 180ms var(--ease),
    color 180ms var(--ease),
    transform 180ms var(--ease);
}

.download-link:active {
  transform: translateY(1px) scale(0.99);
}

.download-link--primary {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  width: fit-content;
  min-height: 42px;
  border-color: #f3f8f4;
  background: #f3f8f4;
  color: #202622;
  font-size: 0.9rem;
  padding-inline: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 14px 28px rgba(0, 0, 0, 0.14);
}

.download-link:not(.is-disabled) {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--surface);
}

.download-link--primary:not(.is-disabled) {
  border-color: #f3f8f4;
  background: #f3f8f4;
  color: #202622;
}

.download-link--primary:not(.is-disabled):hover,
.download-link--primary:not(.is-disabled):focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: #17201c;
  transform: translateY(-1px);
}

.download-link:not(.is-disabled):hover,
.download-link:not(.is-disabled):focus-visible {
  background: #26302b;
  outline: none;
}

.download-link.is-disabled {
  cursor: not-allowed;
  pointer-events: none;
}

.install-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.12fr) minmax(0, 0.95fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 251, 0.34);
}

.install-panel {
  min-width: 0;
  padding: clamp(22px, 3vw, 32px);
  transition:
    background-color 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.install-panel:hover {
  background: rgba(255, 255, 251, 0.44);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

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

.install-panel__header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}

.install-panel__header h3 {
  margin-bottom: 2px;
}

.install-panel__header p {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 740;
  text-transform: uppercase;
}

.install-panel ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  counter-reset: install-step;
  list-style: none;
}

.install-panel li {
  position: relative;
  min-height: 30px;
  min-width: 0;
  overflow-wrap: anywhere;
  padding-left: 42px;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.install-panel li::before {
  content: counter(install-step, decimal-leading-zero);
  counter-increment: install-step;
  position: absolute;
  top: 0;
  left: 0;
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 800;
}

.install-panel strong {
  color: var(--ink);
  font-weight: 760;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.72fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.feature-rows {
  border-top: 1px solid var(--line);
}

.feature-row {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  transition:
    background-color 220ms var(--ease),
    border-color 220ms var(--ease);
}

.feature-row::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: -14px;
  width: 3px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0;
  transform: scaleY(0.5);
  transform-origin: center;
  transition:
    opacity 220ms var(--ease),
    transform 220ms var(--ease);
}

.feature-row:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.feature-row__number {
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 820;
}

.feature-row__label {
  margin-bottom: 8px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

.feature-row p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.workflow-panel {
  position: sticky;
  top: 92px;
  overflow: hidden;
  border: 1px solid rgba(20, 31, 27, 0.14);
  border-radius: 12px;
  background:
    radial-gradient(circle at 18% 0%, rgba(77, 168, 144, 0.18), transparent 28%),
    #202622;
  color: #f3f8f4;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 50px rgba(20, 31, 27, 0.14);
}

.workflow-panel__header {
  display: flex;
  gap: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 13px 14px;
}

.workflow-panel__header span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(243, 248, 244, 0.34);
}

.workflow-panel__body {
  padding: clamp(24px, 4vw, 36px);
}

.workflow-panel__kicker {
  margin-bottom: 18px;
  color: rgba(243, 248, 244, 0.55);
  font-family: var(--font-mono);
  font-size: 0.76rem;
}

.workflow-panel h3 {
  max-width: 320px;
  margin-bottom: 30px;
  color: #f8fbf7;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 620;
  line-height: 0.98;
}

.mode-stack {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mode-stack div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 17px 0;
  transition: background-color 180ms var(--ease);
}

.mode-stack div:hover {
  background: rgba(255, 255, 255, 0.025);
}

.mode-stack span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 780;
}

.mode-stack p {
  margin: 0;
  color: rgba(243, 248, 244, 0.7);
  font-size: 0.93rem;
}

.notes-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.44fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(28px, 5vw, 54px) 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 251, 0.34), rgba(255, 255, 251, 0));
}

.notes-callout__intro {
  max-width: 820px;
}

.notes-callout h2 {
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 5vw, 4.8rem);
}

.notes-callout__intro p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.release-notes {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.release-notes article {
  display: grid;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding: 19px 0;
}

.release-notes span {
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 780;
  text-transform: uppercase;
}

.release-notes p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% - 36px), var(--max-width));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 26px 0 34px;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.site-footer__wordmark {
  width: 90px;
  height: auto;
}

.site-footer a {
  color: var(--ink);
  font-weight: 740;
  transition:
    color 180ms var(--ease),
    transform 180ms var(--ease);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent-ink);
  transform: translateY(-1px);
  outline: none;
}

.reveal {
  animation: reveal 680ms var(--ease) both;
  animation-delay: var(--delay, 0ms);
}

.js .reveal {
  opacity: 0;
  filter: blur(2px);
  transform: translateY(18px);
  animation: none;
  transition:
    opacity 720ms var(--ease-heavy),
    filter 720ms var(--ease-heavy),
    transform 720ms var(--ease-heavy);
  transition-delay: var(--delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

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

  .js .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero,
  .feature-layout,
  .install-grid,
  .section-heading--split {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 34px;
    padding-top: 72px;
  }

  .hero__copy {
    max-width: 740px;
  }

  .hero__visual {
    max-width: 920px;
  }

  .workflow-panel {
    position: relative;
    top: auto;
  }

  .notes-callout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .install-panel + .install-panel {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-top: 8px;
  }

  .site-header__inner {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 6px;
    width: calc(100% - 20px);
    min-height: 44px;
    border-color: rgba(20, 33, 27, 0.13);
    border-radius: 10px;
    background: rgba(251, 252, 246, 0.84);
    box-shadow:
      var(--shadow-inset),
      0 12px 26px rgba(55, 73, 64, 0.08);
    padding: 4px;
    backdrop-filter: blur(14px);
  }

  .brand {
    justify-content: flex-start;
  }

  .brand__tab {
    min-height: 36px;
    padding-inline: 8px 11px;
  }

  .site-nav {
    min-width: 0;
    width: 100%;
    justify-content: flex-start;
    justify-self: stretch;
    gap: 1px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 2px;
    font-size: 0.74rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    min-height: 30px;
    padding: 0 7px;
    white-space: nowrap;
  }

  .header-version {
    display: none;
  }

  .section {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .hero {
    gap: 30px;
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .hero__actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero__lede {
    max-width: 100%;
  }

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

  .hero__facts div {
    padding-right: 0;
  }

  .hero__facts div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-left: 0;
  }

  .download-console__main {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .download-console__copy,
  .download-console__switcher--inset,
  .download-link--primary,
  .download-console__checks {
    grid-column: auto;
    grid-row: auto;
  }

  .download-link--primary,
  .download-console__switcher--inset,
  .download-console__checks {
    justify-self: start;
    justify-content: flex-start;
  }

  .download-console__switcher--inset {
    width: 100%;
  }

  .download-console__checks {
    max-width: 100%;
  }

  .download-console__status {
    margin-bottom: 8px !important;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 25px 0;
  }

  .mode-stack div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .preview-caption {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .site-header__inner {
    width: calc(100% - 20px);
  }

  .section,
  .site-footer {
    width: calc(100% - 28px);
    margin-right: 14px;
    margin-left: 14px;
  }

  .brand__tab {
    min-height: 34px;
    padding-inline: 6px;
  }

  .brand__name {
    display: none;
  }

  .brand__mark {
    width: 28px;
    height: 28px;
  }

  .site-nav {
    font-size: 0.69rem;
  }

  .site-nav a {
    min-height: 32px;
    padding-inline: 5px;
  }

  h1 {
    max-width: 100%;
  }

  .hero__wordmark {
    width: 100%;
    max-width: min(320px, 100%);
  }

  .platform-tabs {
    width: 100%;
  }

  .download-console {
    padding: 10px;
  }

  .download-console__main {
    padding: 18px;
  }

  .download-console__copy {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .download-console__copy h3 {
    font-size: 2.22rem;
    line-height: 0.98;
  }

  .download-link--primary {
    width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 460px) {
  h2 {
    font-size: 2.12rem;
    line-height: 0.98;
  }

  .hero__lede {
    font-size: 1rem;
  }

  .markdown-scroll {
    top: 23%;
    bottom: 8%;
    width: 62%;
    font-size: 0.52rem;
    line-height: 1.54;
  }

  .markdown-panel {
    inset: 0;
  }

  .preview-caption {
    font-size: 0.62rem;
  }

  .platform-tab {
    min-height: 42px;
    padding: 7px 5px;
  }

  .download-item__copy p,
  .feature-row p:last-child,
  .mode-stack p,
  .notes-callout__intro p,
  .release-notes p {
    font-size: 0.94rem;
  }
}

@media (max-width: 360px) {
  .site-nav {
    font-size: 0.66rem;
  }

  .site-nav a {
    padding-inline: 4px;
  }
}
