:root {
  color-scheme: light;
  --bg: #f7f8f5;
  --surface: #fff;
  --sidebar: #fcfcfa;
  --ink: #22332f;
  --muted: #6b7872;
  --faint: #87918c;
  --line: #e3e8e2;
  --green: #146b60;
  --green-dark: #0d5148;
  --green-soft: #eaf3ed;
  --radius: 16px;
  --sidebar-width: 244px;
  font-family: Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  font-synthesis: none;
  font-size: 14px;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

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

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

a,summary {
  touch-action: manipulation;
}

a:focus-visible,summary:focus-visible,[tabindex]:focus-visible {
  outline: 3px solid #268c7b;
  outline-offset: 5px;
  border-radius: 5px;
}

a:hover {
  color: var(--green-dark);
}

h1,h2,h3,h4,p {
  margin: 0;
}

h1,h2,h3,h4 {
  font-weight: 650;
}

h1 {
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: -1.05px;
}

h2 {
  font-size: 19px;
  letter-spacing: -.35px;
  line-height: 1.4;
}

h3 {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -.16px;
}

h4 {
  font-size: 14px;
  line-height: 1.5;
}

p {
  color: var(--muted);
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  vertical-align: middle;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  background: var(--green);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  transform: translateY(-180%);
}

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

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 20;
  width: var(--sidebar-width);
  background: var(--sidebar);
  border-right: 1px solid var(--line);
  padding: 29px 18px 22px;
  display: flex;
  flex-direction: column;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 6px;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  place-content: center;
  width: 43px;
  height: 45px;
  background: var(--green);
  border-radius: 12px;
  color: white;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.brand-mark span {
  font-size: 15px;
  font-weight: 500;
  margin: 0 1px;
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong {
  display: block;
  font-size: 13px;
  letter-spacing: -.3px;
  white-space: nowrap;
}

.version {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
  color: #63756b;
  font-size: 11px;
  letter-spacing: .15px;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: #4e9680;
  border-radius: 50%;
  display: inline-block;
  flex: none;
}

.nav-label {
  margin: 43px 14px 13px;
  color: var(--faint);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.main-nav {
  display: grid;
  gap: 6px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 45px;
  padding: 10px 14px;
  color: #6b7770;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  transition: background .15s,color .15s;
}

.nav-link:hover {
  background: #f0f3ed;
}

.nav-link.is-active {
  background: var(--green-soft);
  color: var(--green);
  font-weight: 650;
  border-color: #ddebe1;
}

.nav-link .icon {
  width: 18px;
  height: 18px;
}

.nav-active-dot {
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  margin-left: auto;
}

.sidebar-bottom {
  margin-top: auto;
  padding-top: 32px;
}

.sidebar-note {
  margin: 0 5px;
  padding: 17px 15px;
  background: #f1f4ed;
  border: 1px solid #e6ebe0;
  border-radius: 11px;
}

.note-icon {
  display: block;
  color: #638675;
  margin-bottom: 11px;
}

.sidebar-note strong {
  display: block;
  font-size: 12px;
  font-weight: 650;
}

.sidebar-note p {
  font-size: 11px;
  line-height: 1.65;
  margin-top: 5px;
  color: #788176;
}

.sidebar-note a {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 13px;
  font-size: 11px;
  font-weight: 650;
}

.sidebar-note a .icon {
  width: 15px;
  height: 15px;
}

.sidebar-footer {
  font-size: 10px;
  line-height: 1.75;
  letter-spacing: .1px;
  color: #8c958b;
  margin: 22px 19px 0;
}

.workspace {
  margin-left: var(--sidebar-width);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  height: 73px;
  border-bottom: 1px solid var(--line);
  padding: 0 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fcfdfa;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--faint);
  font-size: 11px;
}

.breadcrumb .icon {
  width: 12px;
  height: 12px;
  color: #a5afa7;
}

.breadcrumb-current {
  color: #45584d;
  font-weight: 500;
}

.topbar-help {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #788279;
  font-size: 11px;
}

.topbar-help .icon {
  width: 16px;
  height: 16px;
}

.main-content {
  width: 100%;
  max-width: 1330px;
  margin: 0 auto;
  padding: 37px 44px 29px;
  outline: none;
}

.page-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 29px;
}

.eyebrow {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 650;
  color: #8a968c;
  margin-bottom: 11px;
}

.page-description {
  margin-top: 12px;
  max-width: 660px;
  font-size: 13px;
  line-height: 1.75;
}

.soft-badge,.neutral-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 500;
  border: 1px solid #dfe9df;
  border-radius: 6px;
  padding: 6px 9px;
  color: #57806a;
  background: #f3f7f0;
  flex: none;
}

.neutral-badge {
  color: #859087;
  background: #fafbf8;
  border-color: #e4e9e2;
}

.welcome-card {
  min-height: 236px;
  display: grid;
  grid-template-columns: minmax(0,1.35fr) minmax(240px,.9fr);
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid #dfe8dd;
  background: #eef3e9;
  padding: 28px 34px;
  position: relative;
  margin-bottom: 34px;
}

.welcome-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.section-kicker {
  display: block;
  font-size: 10px;
  letter-spacing: .9px;
  font-weight: 650;
  text-transform: uppercase;
  color: #66816a;
  margin-bottom: 12px;
}

.welcome-copy h2 {
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -.7px;
  color: #2a4436;
}

.welcome-copy p {
  font-size: 12px;
  line-height: 1.8;
  color: #72816e;
  max-width: 440px;
  margin-top: 13px;
}

.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  margin-top: 16px;
}

.text-link .icon {
  width: 16px;
  height: 16px;
}

.welcome-art {
  height: 206px;
  position: relative;
  max-width: 340px;
  width: 100%;
  justify-self: end;
}

.art-grid {
  position: absolute;
  inset: -70px -120px -80px -40px;
  opacity: .42;
  background-image: linear-gradient(#d9e3d3 1px,transparent 1px),linear-gradient(90deg,#d9e3d3 1px,transparent 1px);
  background-size: 29px 29px;
  transform: rotate(-12deg);
  mask-image: radial-gradient(ellipse at center,#000 5%,transparent 66%);
}

.art-card {
  position: absolute;
  width: 202px;
  height: 190px;
  border-radius: 12px;
  border: 1px solid #d6e0d1;
  background: #fdfefb;
  box-shadow: 0 14px 24px #4c64420c;
  top: 7px;
  left: 63px;
}

.art-card-back {
  transform: rotate(13deg) translate(12px,2px);
  background: #e0e9d7;
}

.art-card-front {
  transform: rotate(-5deg);
  padding: 19px 20px;
}

.art-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.art-logo {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.7px;
  color: #376d57;
}

.art-dots {
  font-size: 21px;
  color: #a1b098;
  line-height: 1;
}

.art-line {
  height: 5px;
  border-radius: 2px;
  background: #dce5d7;
}

.art-line-title {
  width: 62%;
  margin: 14px 0 17px;
}

.art-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
}

.art-row span {
  width: 45%;
  height: 5px;
  background: #dfe7db;
  border-radius: 2px;
}

.art-row i {
  width: 20%;
  height: 5px;
  background: #eaf0e6;
  border-radius: 2px;
  margin-left: auto;
}

.art-row b {
  width: 22%;
  height: 5px;
  background: #dfe8d8;
  border-radius: 2px;
}

.art-row:nth-of-type(4) span {
  width: 34%;
}

.art-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e6ebe0;
  margin-top: 16px;
  padding-top: 13px;
}

.art-total span {
  height: 5px;
  width: 47%;
  border-radius: 2px;
  background: #c9d9c1;
}

.art-total b {
  height: 6px;
  width: 26%;
  border-radius: 2px;
  background: #6f9377;
}

.art-node {
  width: 47px;
  height: 47px;
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid #d0dfc8;
  box-shadow: 0 8px 16px #354f2710;
  background: #f8fbf3;
  color: #578366;
}

.art-node-one {
  left: 34px;
  top: 123px;
  transform: rotate(-8deg);
}

.art-node-two {
  right: 32px;
  top: 17px;
  transform: rotate(8deg);
  background: #58846a;
  color: #fff;
  border-color: #58846a;
}

.art-node .icon {
  width: 23px;
  height: 23px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.section-heading h2 {
  font-size: 17px;
  letter-spacing: -.3px;
}

.section-heading p {
  font-size: 11px;
  line-height: 1.6;
  margin-top: 5px;
  color: #879187;
}

.empty-state {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  min-height: 287px;
  text-align: center;
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px #20352302;
}

.empty-icon {
  width: 50px;
  height: 50px;
  border: 1px solid #e2eae0;
  background: #f2f6ef;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #7a9880;
  position: relative;
  margin-bottom: 17px;
}

.empty-icon .icon {
  width: 24px;
  height: 24px;
}

.empty-icon-plus {
  position: absolute;
  right: -5px;
  bottom: -4px;
  width: 21px;
  height: 21px;
  background: #fff;
  border: 1px solid #dae6d6;
  color: #528168;
  border-radius: 7px;
  font-size: 17px;
  line-height: 18px;
}

.empty-state h3,.empty-state h2 {
  font-size: 17px;
}

.empty-state p {
  font-size: 12px;
  line-height: 1.85;
  margin-top: 7px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 41px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
  transition: background .15s,border-color .15s,box-shadow .15s;
}

.button .icon {
  width: 16px;
  height: 16px;
}

.button-primary {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 2px 3px #1c574514;
}

.button-primary:hover {
  color: #fff;
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 4px 10px #1c57451c;
}

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

.button-secondary:hover {
  background: #f5f8f2;
  border-color: #bfcec2;
}

.button-small {
  min-height: 34px;
  padding: 7px 11px;
  font-size: 10px;
  gap: 7px;
}

.empty-state>.button {
  margin-top: 19px;
}

.empty-caption {
  margin-top: 13px;
  color: #98a095;
  font-size: 9px;
}

.next-section {
  margin-top: 32px;
}

.section-meta {
  font-size: 10px;
  color: #929c92;
  white-space: nowrap;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-card {
  padding: 20px 20px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 17px;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  border-radius: 9px;
  border: 1px solid #e7ece3;
  background: #f6f8f2;
  color: #758b72;
}

.step-icon .icon {
  width: 18px;
  height: 18px;
}

.step-number {
  font-size: 11px;
  letter-spacing: .4px;
  color: #a3ad9f;
}

.step-card h3 {
  font-size: 12px;
  line-height: 1.6;
  font-weight: 650;
}

.step-card p {
  font-size: 11px;
  line-height: 1.8;
  margin-top: 7px;
  min-height: 40px;
  color: #85907f;
}

.step-status {
  display: block;
  border-top: 1px solid #edf0e9;
  margin-top: 16px;
  padding-top: 11px;
  color: #a0a89b;
  font-size: 9px;
}

.context-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
  color: #94a18f;
}

.context-note .icon {
  width: 14px;
  height: 14px;
}

.context-note p {
  font-size: 10px;
  color: #939c8e;
}

.context-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #68816b;
}

.page-footer {
  width: 100%;
  max-width: 1330px;
  margin: auto auto 0;
  display: flex;
  justify-content: space-between;
  padding: 18px 44px 24px;
  gap: 16px;
  font-size: 9px;
  color: #a0a99c;
}

.help-anchors {
  display: flex;
  gap: 8px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.help-anchors a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 7px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 11px;
  color: #657568;
}

.help-anchors a:hover {
  background: var(--green-soft);
  border-color: #d0dfd0;
}

.help-anchors .icon {
  width: 16px;
  height: 16px;
}

.help-section {
  margin-top: 31px;
  scroll-margin-top: 26px;
}

.help-section:first-of-type {
  margin-top: 0;
}

.about-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 25px;
}

.about-intro {
  display: flex;
  align-items: flex-start;
  gap: 17px;
}

.large-icon {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  border: 1px solid #e2eadd;
  border-radius: 12px;
  background: #f3f7ef;
  color: #728c70;
  flex: none;
}

.large-icon .icon {
  width: 23px;
  height: 23px;
}

.about-intro h3 {
  font-size: 15px;
  margin-top: 1px;
  margin-bottom: 9px;
}

.about-intro p {
  font-size: 12px;
  line-height: 1.85;
  max-width: 850px;
}

.about-intro p+p {
  margin-top: 10px;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 22px 28px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 24px;
}

.rule-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.rule-item>.icon {
  width: 16px;
  height: 16px;
  color: #619875;
  margin-top: 2px;
}

.rule-item h4 {
  font-size: 12px;
}

.rule-item p {
  font-size: 11px;
  line-height: 1.75;
  margin-top: 5px;
}

.privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #f7f9f3;
  border: 1px solid #e7ede0;
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: 25px;
  color: #829477;
}

.privacy-note .icon {
  width: 15px;
  height: 15px;
  margin-top: 2px;
}

.privacy-note p {
  font-size: 11px;
  line-height: 1.7;
  color: #7f8e75;
}

.release-list {
  display: grid;
  gap: 14px;
}

.release-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.release-card summary {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  list-style: none;
  padding: 21px 24px;
  min-height: 88px;
}

.release-card summary::-webkit-details-marker {
  display: none;
}

.release-marker {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: #eff5ed;
  color: #658c6d;
  border: 1px solid #e0eadb;
  border-radius: 10px;
  flex: none;
}

.release-marker .icon {
  width: 19px;
  height: 19px;
}

.release-summary-copy {
  min-width: 0;
  flex: 1;
}

.release-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.release-version {
  font-size: 11px;
  font-weight: 650;
  color: #43806a;
}

.current-label {
  font-size: 9px;
  color: #60856d;
  background: #eef5e9;
  border-radius: 4px;
  padding: 2px 6px;
}

.release-meta time {
  font-size: 10px;
  color: #919b8a;
}

.release-title {
  display: block;
  font-size: 14px;
  font-weight: 650;
  color: #3a4d3d;
}

.details-chevron {
  width: 17px;
  height: 17px;
  color: #94a18b;
  transition: transform .15s;
}

.release-card[open] .details-chevron {
  transform: rotate(90deg);
}

.release-body {
  padding: 1px 24px 24px;
}

.decision-list {
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

.decision-list>div {
  display: grid;
  grid-template-columns: 110px minmax(0,1fr);
  gap: 14px;
  padding-top: 14px;
}

.decision-list dt {
  font-size: 11px;
  color: #829078;
  font-weight: 600;
}

.decision-list dd {
  margin: 0;
  color: #687a63;
  font-size: 12px;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.release-outcomes {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 24px;
  border-top: 1px solid var(--line);
  margin-top: 21px;
  padding-top: 20px;
}

.release-outcomes h4 {
  font-size: 12px;
  color: #4c6550;
  margin-bottom: 10px;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  color: #75876d;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.check-list .icon {
  width: 14px;
  height: 14px;
  color: #7da474;
  margin-top: 3px;
}

.git-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.git-graph {
  overflow: auto;
  padding: 20px;
  max-height: 640px;
}

.git-graph>svg {
  display: block;
  max-width: none;
  min-width: 100%;
  height: auto;
}

.git-caption {
  border-top: 1px solid var(--line);
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: #8a9780;
  font-size: 10px;
  background: #fcfdf9;
}

.git-caption>span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.git-caption .icon {
  width: 14px;
  height: 14px;
}

.git-caption code {
  font: 10px ui-monospace,SFMono-Regular,Consolas,monospace;
  background: #f0f4e9;
  padding: 2px 5px;
  border-radius: 4px;
  color: #687d5d;
}

.compact-empty {
  padding: 38px 24px;
  text-align: center;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
}

.git-card>.compact-empty {
  border: 0;
  border-radius: 0;
}

.compact-empty>.icon {
  width: 29px;
  height: 29px;
  color: #8fa781;
  margin-bottom: 12px;
}

.compact-empty h3 {
  font-size: 14px;
}

.compact-empty p {
  font-size: 12px;
  margin-top: 7px;
  line-height: 1.8;
}

.not-found-state {
  margin-top: 36px;
  padding: 62px 25px;
}

.button-group {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
}

@media(min-width:1600px) {
  .main-content {
    padding-top: 46px;
  }

  .welcome-card {
    min-height: 265px;
  }

  .welcome-copy h2 {
    font-size: 29px;
  }

  .welcome-copy p {
    font-size: 13px;
  }

  .empty-state {
    min-height: 300px;
  }

}

@media(max-width:1150px) {
  :root {
    --sidebar-width: 225px;
  }

  .sidebar {
    padding-left: 12px;
    padding-right: 12px;
  }

  .brand {
    gap: 9px;
  }

  .brand-copy strong {
    font-size: 12px;
  }

  .main-content {
    padding-left: 29px;
    padding-right: 29px;
  }

  .topbar {
    padding-left: 29px;
    padding-right: 29px;
  }

  .page-footer {
    padding-left: 29px;
    padding-right: 29px;
  }

  .page-heading {
    align-items: flex-start;
  }

  .page-heading>.soft-badge {
    margin-top: 31px;
  }

  .welcome-card {
    padding: 25px;
    grid-template-columns: minmax(0,1.3fr) minmax(190px,.8fr);
  }

  .welcome-copy h2 {
    font-size: 24px;
  }

  .welcome-art {
    transform: scale(.86);
    transform-origin: center right;
    margin-left: -20px;
  }

  .art-card {
    left: 20px;
  }

  .art-node-one {
    left: 0;
  }

  .art-node-two {
    right: -8px;
  }

  .step-card {
    padding: 17px 16px;
  }

  .step-card p {
    min-height: 58px;
  }

  .steps-grid {
    gap: 11px;
  }

  .context-note {
    align-items: flex-start;
  }

  .context-note .icon {
    margin-top: 1px;
  }

}

@media(max-width:900px) {
  :root {
    --sidebar-width: 207px;
  }

  .sidebar {
    padding-left: 10px;
    padding-right: 10px;
  }

  .brand {
    gap: 8px;
    padding: 0 4px;
  }

  .brand-mark {
    width: 36px;
    height: 40px;
    border-radius: 10px;
    font-size: 16px;
  }

  .brand-copy strong {
    font-size: 11px;
  }

  .version {
    font-size: 10px;
  }

  .nav-label {
    font-size: 9px;
    letter-spacing: .6px;
  }

  .main-content {
    padding: 28px 24px;
  }

  .topbar {
    padding: 0 24px;
    height: 65px;
  }

  .page-footer {
    padding: 15px 24px 22px;
  }

  .page-heading {
    flex-wrap: wrap;
    gap: 12px;
  }

  .page-heading>.soft-badge {
    margin: 0;
  }

  h1 {
    font-size: 28px;
  }

  .welcome-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 26px;
  }

  .welcome-art {
    display: none;
  }

  .welcome-copy h2 br {
    display: none;
  }

  .welcome-copy h2 {
    font-size: 24px;
    max-width: 440px;
  }

  .welcome-copy p {
    max-width: 550px;
  }

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

  .step-card {
    display: grid;
    grid-template-columns: 36px minmax(0,1fr);
    gap: 0 14px;
    position: relative;
    padding: 18px;
  }

  .step-top {
    grid-column: 1;
    grid-row: 1/4;
    display: block;
    margin: 0;
  }

  .step-number {
    display: block;
    text-align: center;
    margin-top: 9px;
    font-size: 10px;
  }

  .step-card h3 {
    grid-column: 2;
    font-size: 13px;
  }

  .step-card p {
    grid-column: 2;
    min-height: 0;
    margin-top: 5px;
  }

  .step-status {
    grid-column: 2;
    margin-top: 12px;
    padding-top: 9px;
  }

  .rules-grid,.release-outcomes {
    grid-template-columns: 1fr;
  }

  .rules-grid {
    gap: 20px;
  }

  .release-outcomes {
    gap: 20px;
  }

  .page-footer span:last-child {
    display: none;
  }

  .release-card summary {
    padding: 18px;
  }

  .release-body {
    padding: 1px 18px 21px;
  }

  .decision-list>div {
    grid-template-columns: 83px minmax(0,1fr);
    gap: 12px;
  }

  .about-card {
    padding: 21px;
  }

  .about-intro {
    gap: 13px;
  }

  .about-intro>.large-icon {
    width: 39px;
    height: 39px;
  }

  .section-heading p {
    font-size: 11px;
  }

  .breadcrumb {
    gap: 8px;
  }

  .breadcrumb>span:first-child {
    font-size: 10px;
  }

  .topbar-help span {
    display: none;
  }

}

@media(max-width:640px) {
  html {
    scroll-padding-top: 144px;
  }

  .sidebar {
    position: sticky;
    inset: auto;
    top: 0;
    min-height: 0;
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 13px 18px 10px;
    display: block;
    background: #fcfcfaf5;
    backdrop-filter: blur(12px);
  }

  .brand {
    width: max-content;
    padding: 0;
    gap: 10px;
  }

  .brand-mark {
    width: 35px;
    height: 37px;
    border-radius: 9px;
    font-size: 16px;
  }

  .brand-copy strong {
    font-size: 12px;
  }

  .version {
    font-size: 10px;
    margin-top: 1px;
  }

  .nav-label,.sidebar-bottom {
    display: none;
  }

  .main-nav {
    display: flex;
    gap: 6px;
    margin-top: 13px;
  }

  .nav-link {
    flex: 1;
    justify-content: center;
    min-height: 37px;
    padding: 8px 12px;
    font-size: 11px;
    border-radius: 6px;
    gap: 8px;
  }

  .nav-link .icon {
    width: 16px;
    height: 16px;
  }

  .nav-active-dot {
    display: none;
  }

  .workspace {
    margin-left: 0;
    min-height: calc(100vh - 111px);
  }

  .topbar {
    height: 44px;
    padding: 0 20px;
    background: transparent;
    border-bottom: 0;
  }

  .breadcrumb {
    font-size: 10px;
  }

  .breadcrumb>span:first-child {
    font-size: 10px;
  }

  .topbar-help .icon {
    width: 15px;
    height: 15px;
  }

  .main-content {
    padding: 17px 20px 24px;
  }

  .page-heading {
    margin-bottom: 23px;
    gap: 14px;
  }

  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.1px;
    margin-bottom: 9px;
  }

  h1 {
    font-size: 27px;
    letter-spacing: -.9px;
  }

  .page-description {
    font-size: 12px;
    line-height: 1.8;
    margin-top: 10px;
  }

  .soft-badge {
    font-size: 9px;
    padding: 5px 8px;
  }

  .welcome-card {
    padding: 23px;
    border-radius: 13px;
    margin-bottom: 27px;
  }

  .section-kicker {
    font-size: 9px;
    letter-spacing: .6px;
    margin-bottom: 11px;
  }

  .welcome-copy h2 {
    font-size: 23px;
    line-height: 1.35;
    letter-spacing: -.7px;
  }

  .welcome-copy p {
    font-size: 11px;
    line-height: 1.85;
    margin-top: 12px;
  }

  .text-link {
    font-size: 11px;
    margin-top: 17px;
  }

  .section-heading {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
  }

  .section-heading h2 {
    font-size: 16px;
  }

  .section-heading p {
    font-size: 10px;
    line-height: 1.8;
    margin-top: 4px;
  }

  .neutral-badge {
    font-size: 9px;
    padding: 5px 7px;
  }

  .empty-state {
    min-height: 298px;
    border-radius: 13px;
    padding: 30px 18px;
  }

  .empty-state h3 {
    font-size: 16px;
  }

  .empty-state p {
    font-size: 11px;
    line-height: 1.85;
    margin-top: 8px;
  }

  .desktop-break {
    display: none;
  }

  .empty-state>.button {
    font-size: 10px;
    padding: 10px 13px;
  }

  .empty-caption {
    font-size: 8px;
    max-width: 240px;
    line-height: 1.7;
  }

  .next-section {
    margin-top: 26px;
  }

  .section-meta {
    display: none;
  }

  .steps-grid {
    gap: 10px;
  }

  .step-card {
    border-radius: 11px;
  }

  .context-note {
    justify-content: flex-start;
    margin-top: 22px;
    gap: 7px;
  }

  .context-note p {
    font-size: 9px;
    line-height: 1.75;
  }

  .context-note .icon {
    margin-top: 2px;
  }

  .page-footer {
    padding: 13px 20px 24px;
    font-size: 9px;
  }

  .help-anchors {
    gap: 6px;
    padding-bottom: 22px;
    margin-bottom: 23px;
  }

  .help-anchors a {
    font-size: 10px;
    padding: 8px 9px;
    gap: 5px;
  }

  .help-anchors .icon {
    width: 14px;
    height: 14px;
  }

  .help-section {
    scroll-margin-top: 135px;
    margin-top: 26px;
  }

  .about-card {
    padding: 19px;
    border-radius: 13px;
  }

  .about-intro {
    display: block;
  }

  .about-intro>.large-icon {
    margin-bottom: 14px;
  }

  .about-intro h3 {
    font-size: 14px;
  }

  .about-intro p {
    font-size: 11px;
  }

  .rules-grid {
    padding-top: 21px;
    margin-top: 21px;
    gap: 18px;
  }

  .rule-item h4 {
    font-size: 11px;
  }

  .rule-item p {
    font-size: 10px;
  }

  .privacy-note {
    padding: 11px;
    margin-top: 22px;
  }

  .privacy-note p {
    font-size: 10px;
  }

  .release-card {
    border-radius: 13px;
  }

  .release-card summary {
    gap: 10px;
    padding: 17px 15px;
  }

  .release-marker {
    width: 31px;
    height: 34px;
    border-radius: 8px;
  }

  .release-marker .icon {
    width: 17px;
    height: 17px;
  }

  .release-meta {
    gap: 5px 8px;
  }

  .release-version {
    font-size: 10px;
  }

  .current-label {
    font-size: 8px;
  }

  .release-meta time {
    font-size: 9px;
  }

  .release-title {
    font-size: 12px;
    line-height: 1.65;
  }

  .release-body {
    padding: 0 17px 21px;
  }

  .decision-list>div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding-top: 15px;
  }

  .decision-list dt {
    font-size: 10px;
  }

  .decision-list dd {
    font-size: 11px;
  }

  .release-outcomes {
    padding-top: 18px;
    margin-top: 18px;
  }

  .release-outcomes h4 {
    font-size: 11px;
  }

  .check-list li {
    font-size: 10px;
  }

  .check-list .icon {
    width: 13px;
    height: 13px;
  }

  .details-chevron {
    width: 14px;
    height: 14px;
  }

  .git-card {
    border-radius: 13px;
  }

  .git-graph {
    padding: 14px;
  }

  .git-caption {
    padding: 12px 15px;
    font-size: 9px;
    gap: 8px;
  }

  .button-small {
    font-size: 9px;
    padding: 7px 8px;
    min-height: 32px;
    gap: 5px;
    white-space: nowrap;
  }

  .button-small .icon {
    width: 13px;
    height: 13px;
  }

  .compact-empty {
    padding: 29px 18px;
  }

  .compact-empty p {
    font-size: 11px;
  }

  .not-found-state {
    margin-top: 20px;
  }

  .button-group {
    gap: 8px;
  }

  .button-group .button {
    font-size: 10px;
  }

}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }

  *,*::before,*::after {
    transition: none!important;
    animation: none!important;
  }

}
