:root {
  --ink: #07122c;
  --ink-soft: #34415f;
  --muted: #68718a;
  --paper: #f8f9fb;
  --paper-strong: #ffffff;
  --paper-soft: #f1f4f8;
  --line: rgba(7, 18, 44, 0.13);
  --line-strong: rgba(7, 18, 44, 0.22);
  --blue: #227fe5;
  --teal: #18a99a;
  --orange: #ff9b35;
  --violet: #8e53dc;
  --green: #20a46b;
  --code: #f6f8fa;
  --code-line: #d9dee8;
  --shadow: 0 12px 30px rgba(31, 44, 71, 0.08);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.58;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  background: var(--paper-strong);
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 248, 251, 0.9);
  border-bottom: 1px solid rgba(7, 18, 44, 0.08);
  backdrop-filter: blur(18px);
}

.site-nav {
  width: min(1180px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand img,
.footer-brand img {
  width: auto;
  object-fit: contain;
}

.brand img {
  height: 40px;
}

.footer-brand img {
  height: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.4vw, 1.25rem);
  color: rgba(7, 18, 44, 0.72);
  font-size: 0.93rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--paper-strong);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  display: none;
}

.hero-inner {
  position: relative;
  width: min(1060px, calc(100% - 40px));
  min-height: auto;
  margin: 0 auto;
  padding: clamp(3.1rem, 7vw, 5rem) 0 clamp(2.8rem, 6vw, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 330px);
  align-items: start;
  gap: clamp(2.2rem, 5vw, 4.5rem);
}

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

.eyebrow {
  margin: 0 0 0.95rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: normal;
}

p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 680px;
  font-size: clamp(2.8rem, 5.4vw, 4.35rem);
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.85rem);
}

h3 {
  font-size: 1.16rem;
}

.hero-text {
  max-width: 660px;
  margin: 0.95rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.5vw, 1.14rem);
}

.hero-tagline {
  max-width: 620px;
  margin: 0.75rem 0 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 780;
  line-height: 1.16;
  overflow-wrap: normal;
}

.hero-command {
  display: inline-flex;
  max-width: 100%;
  min-height: 42px;
  align-items: center;
  padding: 0.58rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}

.hero-command code {
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.72rem;
  margin-top: 1.45rem;
}

.community-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.button:hover {
  border-color: var(--line-strong);
}

.button.primary {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
}

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

.button.secondary.light {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
}

.community-section .button.secondary.light {
  color: var(--ink);
  border-color: var(--line);
}

.hero-meta {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0.2rem 0;
}

.hero-meta dl {
  margin: 0;
}

.hero-meta div {
  display: grid;
  grid-template-columns: minmax(92px, 0.7fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}

.hero-meta div:last-child {
  border-bottom: 0;
}

.hero-meta dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.section {
  padding: clamp(3.4rem, 7vw, 5.8rem) 0;
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.74fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.two-column > *,
.overview-grid > *,
.community-layout > * {
  min-width: 0;
}

.section p {
  color: var(--ink-soft);
}

.section h2 + p,
.section-heading p {
  max-width: 760px;
  margin: 1rem 0 0;
  font-size: 1.04rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2rem;
}

.section-heading.compact {
  max-width: 700px;
}

.overview-section {
  background: var(--paper-strong);
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.overview-copy p {
  margin: 0;
  font-size: 1.06rem;
}

.proof-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.proof-list div {
  display: grid;
  grid-template-columns: minmax(110px, 0.3fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.proof-list strong {
  color: var(--ink);
}

.proof-list span {
  color: var(--ink-soft);
}

.fit-section {
  background: var(--paper);
}

.fit-grid,
.first-run-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.fit-grid > *,
.first-run-grid > * {
  min-width: 0;
}

.fit-section p,
.first-run-section p {
  max-width: 720px;
}

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

.fit-lists article {
  min-width: 0;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.fit-lists h3 {
  font-size: 1.06rem;
}

.fit-lists ul {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
}

.fit-lists li + li {
  margin-top: 0.7rem;
}

.install-section {
  background: var(--paper-strong);
}

.install-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.install-notes div {
  min-height: 78px;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.install-notes strong,
.install-notes span {
  display: block;
}

.install-notes strong {
  color: var(--ink);
  font-size: 0.86rem;
}

.install-notes span {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.code-panel,
.example-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  box-shadow: none;
}

.code-panel {
  min-width: 0;
  overflow: hidden;
  position: sticky;
  top: 96px;
  padding: 1rem;
}

.code-tabs {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.code-tabs button {
  min-height: 34px;
  padding: 0.36rem 0.72rem;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 650;
}

.code-tabs button[aria-selected="true"] {
  background: #ffffff;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}

pre {
  max-width: 100%;
  margin: 0;
  overflow-x: auto;
  white-space: pre;
  font-size: 0.92rem;
  line-height: 1.62;
}

.code-panel pre {
  margin: 1rem 0 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--code);
  color: var(--ink);
}

.copy-button {
  width: 100%;
  min-height: 38px;
  margin-top: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 650;
}

.command-note {
  margin: 0.8rem 0 0;
  color: var(--muted) !important;
  font-size: 0.9rem;
}

.first-run-section {
  background: var(--paper-strong);
}

.first-run-points {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.first-run-points div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.first-run-points strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.82rem;
}

.first-run-points span {
  color: var(--ink-soft);
}

.first-run-card {
  box-shadow: none;
}

.quickstart-section,
.ecosystem-section,
.concepts-section {
  background: var(--paper-soft);
}

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

.example-card {
  min-width: 0;
  overflow: hidden;
  padding: 1.1rem;
}

.example-card h3 {
  margin: 0 0 0.95rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 650;
}

.example-card pre {
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--code);
  color: var(--ink);
}

.concept-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.concept-flow article {
  position: relative;
  min-width: 0;
  min-height: 230px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.concept-flow article::after {
  content: "";
  position: absolute;
  top: 2.15rem;
  right: -0.75rem;
  z-index: 2;
  width: 0.75rem;
  height: 2px;
  background: var(--line-strong);
}

.concept-flow article:last-child::after {
  display: none;
}

.concept-flow span,
.route-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.concept-flow span {
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 850;
}

.concept-flow p {
  margin: 0.7rem 0 0;
  font-size: 0.95rem;
}

.route-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.route-strip strong {
  margin-right: 0.25rem;
}

.route-strip span {
  min-height: 30px;
  padding: 0.28rem 0.58rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 750;
}

.feature-section {
  background: var(--paper-strong);
}

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

.feature-grid article {
  min-width: 0;
  min-height: 220px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.feature-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  margin-bottom: 1.05rem;
  border-radius: 999px;
  background: var(--paper);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 850;
}

.feature-grid article:nth-child(2) span,
.feature-grid article:nth-child(6) span {
  background: var(--paper);
  color: #08786e;
}

.feature-grid article:nth-child(3) span {
  background: var(--paper);
  color: #a95600;
}

.feature-grid article:nth-child(4) span {
  background: var(--paper);
  color: var(--violet);
}

.feature-grid p {
  margin: 0.75rem 0 0;
}

.examples-section {
  background: var(--paper-strong);
}

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

.example-links a,
.resource-grid a {
  min-width: 0;
  min-height: 150px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  text-decoration: none;
}

.example-links a:hover,
.resource-grid a:hover {
  border-color: var(--line-strong);
  box-shadow: none;
}

.example-links strong,
.example-links span,
.resource-grid strong,
.resource-grid span {
  display: block;
}

.example-links strong,
.resource-grid strong {
  color: var(--ink);
  font-size: 1.04rem;
}

.example-links span,
.resource-grid span {
  margin-top: 0.55rem;
  color: var(--ink-soft);
}

.release-hero {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.release-hero-inner {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(3.2rem, 8vw, 5.6rem) 0 clamp(2.6rem, 6vw, 4.2rem);
}

.release-hero h1 {
  max-width: 820px;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

.release-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
}

.release-actions,
.release-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.release-actions {
  margin-top: 1.45rem;
}

.release-summary {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.release-summary-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.release-summary-inner div {
  min-height: 84px;
  padding: 1rem 1.15rem;
  border-left: 1px solid var(--line);
}

.release-summary-inner div:last-child {
  border-right: 1px solid var(--line);
}

.release-summary strong,
.release-summary span {
  display: block;
}

.release-summary strong {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.release-summary span {
  margin-top: 0.2rem;
  color: var(--ink);
  font-weight: 750;
}

.release-section {
  background: var(--paper-strong);
}

.release-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.release-index {
  position: sticky;
  top: 100px;
  min-width: 0;
}

.release-index h2 {
  font-size: 1.15rem;
}

.release-index a {
  display: block;
  margin-top: 0.8rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
}

.release-index strong,
.release-index span {
  display: block;
}

.release-index strong {
  color: var(--ink);
}

.release-index span,
.release-index p {
  color: var(--muted);
  font-size: 0.92rem;
}

.release-index p {
  margin: 1rem 0 0;
}

.release-notes {
  display: grid;
  gap: 1.2rem;
  min-width: 0;
}

.release-card {
  min-width: 0;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.release-card header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.release-card h2 {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.release-card time {
  color: var(--muted);
  font-weight: 750;
  white-space: nowrap;
}

.release-card > p {
  max-width: 780px;
  margin: 1rem 0 0;
}

.release-kicker {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.release-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.release-note-grid section {
  min-width: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.release-note-grid h3 {
  font-size: 1.02rem;
}

.release-note-grid p {
  margin: 0.55rem 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.release-links {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.release-links a,
.text-link {
  color: var(--ink);
  font-weight: 850;
}

.release-source-section {
  background: var(--paper);
}

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

.source-links a {
  min-width: 0;
  min-height: 130px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  text-decoration: none;
}

.source-links strong,
.source-links span {
  display: block;
}

.source-links strong {
  color: var(--ink);
  font-size: 1.04rem;
}

.source-links span {
  margin-top: 0.55rem;
  color: var(--ink-soft);
}

.modules-section {
  background: var(--paper);
}

.module-list {
  display: grid;
  gap: 0.75rem;
}

.module-list a {
  display: grid;
  grid-template-columns: minmax(160px, 0.45fr) minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  min-height: 72px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.module-list a:hover {
  border-color: var(--line-strong);
  background: #ffffff;
}

.module-list code {
  color: var(--blue);
  font-size: 0.96rem;
  font-weight: 850;
}

.module-list span {
  color: var(--ink-soft);
}

.docs-section {
  background: var(--paper-strong);
}

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

.extras-grid div {
  min-width: 0;
  min-height: 70px;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.extras-grid code {
  color: var(--ink);
  font-weight: 850;
}

.extras-grid span {
  display: block;
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.facts-section {
  background: var(--paper-strong);
}

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

.package-facts div {
  min-height: 82px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.package-facts strong,
.package-facts span {
  display: block;
}

.package-facts strong {
  color: var(--ink);
}

.package-facts span {
  margin-top: 0.2rem;
  color: var(--muted);
}

.maturity-section {
  background: var(--paper);
}

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

.maturity-grid article {
  min-width: 0;
  min-height: 170px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.maturity-grid strong {
  color: var(--ink);
  font-size: 1.04rem;
}

.maturity-grid p {
  margin: 0.7rem 0 0;
}

.text-link {
  display: inline-flex;
  margin-top: 1.1rem;
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.community-section {
  background: var(--paper-strong);
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.community-section h2,
.community-section .eyebrow {
  color: var(--ink);
}

.community-section p {
  color: var(--ink-soft);
}

.community-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
}

.community-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  padding: 2rem 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.68);
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1.4rem;
}

.footer-brand {
  color: #ffffff;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-self: end;
  justify-content: flex-end;
  gap: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Professional package-site pass: quieter hierarchy, flatter surfaces, and docs-like code blocks. */
:root {
  --ink: #111827;
  --ink-soft: #374151;
  --muted: #6b7280;
  --paper: #f7f8fa;
  --paper-strong: #ffffff;
  --paper-soft: #f3f5f8;
  --line: #d9dee8;
  --line-strong: #b8c0ce;
  --blue: #2563eb;
  --teal: #0f766e;
  --orange: #b45309;
  --violet: #6d28d9;
  --green: #15803d;
  --code: #f6f8fa;
  --code-line: #d9dee8;
  --shadow: none;
  --radius: 6px;
}

body {
  background: #ffffff;
  line-height: 1.55;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.site-nav {
  min-height: 60px;
}

.brand,
.footer-brand {
  font-weight: 700;
}

.brand img {
  width: auto;
  height: 36px;
}

.footer-brand img {
  width: auto;
  height: 30px;
}

.nav-links {
  gap: clamp(0.55rem, 1.1vw, 1rem);
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 600;
}

.hero-inner {
  width: min(1100px, calc(100% - 40px));
  padding: clamp(2.4rem, 6vw, 4rem) 0 clamp(2.2rem, 5vw, 3.3rem);
  grid-template-columns: minmax(0, 1fr) minmax(250px, 310px);
}

.eyebrow,
.release-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

h1 {
  font-size: clamp(2.55rem, 4.3vw, 3.7rem);
}

h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
}

h3 {
  font-size: 1rem;
}

.hero-tagline {
  max-width: 600px;
  font-size: clamp(1.2rem, 2vw, 1.68rem);
  font-weight: 650;
}

.hero-text {
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
}

.button {
  min-height: 38px;
  padding: 0.52rem 0.78rem;
  font-size: 0.92rem;
  font-weight: 650;
}

.button.primary {
  border-color: var(--blue);
  background: var(--blue);
}

.button.secondary {
  background: #ffffff;
}

.hero-command {
  min-height: 38px;
  padding: 0.5rem 0.66rem;
  background: #ffffff;
}

.hero-meta {
  background: #ffffff;
}

.hero-meta dt,
.release-summary strong {
  font-weight: 700;
  letter-spacing: 0.035em;
}

.hero-meta dd,
.release-summary span {
  font-weight: 650;
}

.section {
  padding: clamp(2.6rem, 6vw, 4.3rem) 0;
}

.section-inner,
.footer-inner,
.release-summary-inner {
  width: min(1100px, calc(100% - 40px));
}

.section h2 + p,
.section-heading p {
  font-size: 0.98rem;
}

.section-heading {
  margin-bottom: 1.45rem;
}

.argument-section {
  background: var(--paper-strong);
}

.argument-grid,
.surface-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.9fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.argument-grid > *,
.surface-layout > * {
  min-width: 0;
}

.claim-list,
.link-list {
  margin-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.claim-list div,
.link-list a {
  display: grid;
  grid-template-columns: minmax(120px, 0.32fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.link-list a {
  text-decoration: none;
}

.claim-list strong,
.link-list strong {
  color: var(--ink);
  font-weight: 650;
}

.claim-list span,
.link-list span {
  color: var(--ink-soft);
}

.link-list a:hover strong {
  color: var(--blue);
}

.proof-card {
  align-self: start;
}

.proof-card pre {
  border-top: 1px solid var(--line);
}

.benchmarks-section {
  background: var(--paper-soft);
}

.bench-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

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

.bench-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bench-card,
.bench-rules {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.bench-card {
  padding: 1rem;
}

.bench-card h3 {
  margin: 0;
  color: var(--ink);
  font-weight: 650;
}

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

.bench-card-head span {
  color: var(--muted);
  font-size: 0.8rem;
  text-align: right;
}

.bench-table-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--line);
}

.bench-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.bench-table th,
.bench-table td {
  padding: 0.62rem 0.7rem;
  border-bottom: 1px solid var(--line);
  text-align: right;
  white-space: nowrap;
}

.bench-table th:first-child,
.bench-table td:first-child {
  text-align: left;
}

.bench-table th {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.bench-table td {
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}

.bench-table strong {
  color: var(--green);
  font-weight: 700;
}

.bench-note {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.bench-note.tight {
  margin-top: 0.85rem;
}

.bench-rules {
  border-bottom: 0;
}

.bench-rules div {
  display: grid;
  grid-template-columns: minmax(120px, 0.36fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
}

.bench-rules strong {
  color: var(--ink);
  font-weight: 650;
}

.bench-rules span {
  color: var(--ink-soft);
}

.bench-list {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.bench-list li + li {
  margin-top: 0.55rem;
}

.proof-list div,
.fit-lists article,
.install-notes div,
.first-run-points div,
.concept-flow article,
.feature-grid article,
.example-links a,
.resource-grid a,
.source-links a,
.release-note-grid section,
.module-list a,
.extras-grid div,
.package-facts div,
.maturity-grid article {
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: none;
}

.proof-list div,
.fit-lists article,
.install-notes div,
.first-run-points div {
  padding: 0.85rem 0;
  border-width: 1px 0 0;
  background: transparent;
}

.fit-lists article,
.install-notes div {
  padding: 1rem;
  border-width: 1px;
}

.proof-list strong,
.fit-lists h3,
.feature-grid h3,
.example-links strong,
.resource-grid strong,
.source-links strong,
.maturity-grid strong,
.module-list code,
.extras-grid code {
  font-weight: 650;
}

pre {
  font-size: 0.86rem;
  line-height: 1.58;
}

.concept-flow article {
  min-height: auto;
}

.concept-flow article::after {
  display: none;
}

.concept-flow span,
.first-run-points strong,
.feature-grid span,
.route-strip span {
  display: inline;
  width: auto;
  height: auto;
  margin: 0 0 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.feature-grid article {
  min-height: 180px;
  padding: 1.1rem;
}

.feature-grid p,
.concept-flow p {
  font-size: 0.92rem;
}

.route-strip {
  border-radius: var(--radius);
  background: #ffffff;
}

.release-hero-inner {
  width: min(1100px, calc(100% - 40px));
  padding: clamp(2.25rem, 5vw, 3.25rem) 0 clamp(2rem, 4.5vw, 2.8rem);
}

.release-hero h1 {
  max-width: 760px;
  font-size: clamp(2.05rem, 3.4vw, 3rem);
}

.release-summary-inner div {
  min-height: 72px;
  padding: 0.85rem 1rem;
}

.release-card {
  padding: clamp(1.1rem, 2.4vw, 1.55rem);
}

.release-note-grid section {
  padding: 0.9rem;
}

.site-footer {
  background: #ffffff;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand {
  color: var(--ink);
}

.footer-links a {
  color: var(--ink-soft);
  font-weight: 600;
}

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

@media (max-width: 980px) {
  .hero-inner,
  .two-column,
  .overview-grid,
  .fit-grid,
  .first-run-grid,
  .argument-grid,
  .surface-layout,
  .bench-layout,
  .community-layout,
  .release-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 4rem;
  }

  h1 {
    max-width: 760px;
  }

  .feature-grid,
  .extras-grid,
  .concept-flow,
  .example-links,
  .resource-grid,
  .maturity-grid,
  .release-summary-inner,
  .release-note-grid,
    .source-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bench-grid,
  .bench-grid.three {
    grid-template-columns: 1fr;
  }

  .release-index {
    position: static;
  }

  .concept-flow article::after {
    display: none;
  }

  .code-panel {
    position: static;
  }

  .community-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 760px) {
  .site-nav {
    width: min(100% - 28px, 1180px);
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: grid;
    gap: 0;
    padding: 0.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .site-header[data-open="true"] .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 0.82rem 0.9rem;
    border-radius: 6px;
  }

  .nav-links a:hover {
    background: var(--paper-soft);
  }

  .hero-inner,
  .section-inner,
  .footer-inner,
  .release-hero-inner,
  .release-summary-inner {
    width: min(100% - 28px, 1180px);
  }

  .hero-inner {
    padding: 2rem 0 1.6rem;
    gap: 1.2rem;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(1.78rem, 9vw, 2.7rem);
  }

  .hero-tagline {
    font-size: clamp(1.28rem, 6vw, 1.72rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 1.2rem;
  }

  .quickstart-grid,
  .feature-grid,
  .extras-grid,
  .concept-flow,
  .example-links,
  .resource-grid,
  .release-summary-inner,
  .release-note-grid,
  .source-links,
  .install-notes,
  .package-facts,
  .fit-lists,
  .maturity-grid {
    grid-template-columns: 1fr;
  }

  .claim-list div,
  .link-list a,
  .bench-rules div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .module-list a {
    grid-template-columns: 1fr;
    gap: 0.28rem;
  }

  .feature-grid article {
    min-height: auto;
  }
}

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