:root {
  color-scheme: light;
  --paper: #f7f8f5;
  --surface: #ffffff;
  --ink: #18201d;
  --muted: #5d6762;
  --line: #dce2dd;
  --skill: #16734a;
  --skill-soft: #e8f5ed;
  --mcp: #1769aa;
  --mcp-soft: #eaf3fa;
  --confirm: #9b6812;
  --confirm-soft: #fff5dc;
  --terminal: #17211d;
  --max-width: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

code {
  font-size: 0.92em;
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 64px;
  padding: 0 max(24px, calc((100vw - var(--max-width)) / 2));
  border-bottom: 1px solid rgb(220 226 221 / 88%);
  background: rgb(247 248 245 / 94%);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-weight: 760;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
}

nav {
  display: flex;
  gap: 30px;
  color: var(--muted);
  font-size: 14px;
}

nav a:hover,
.inline-link:hover,
.header-link:hover,
footer a:hover {
  color: var(--skill);
}

nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
}

.header-link {
  justify-self: end;
  font-size: 14px;
  font-weight: 700;
}

.hero,
.section,
.comparison-section,
footer {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 64px;
  align-items: center;
  min-height: max(620px, calc(100svh - 140px));
  padding: 64px 0 48px;
}

.eyebrow,
.section-kicker,
.note-label {
  margin: 0 0 18px;
  color: var(--skill);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-summary {
  max-width: 640px;
  margin-bottom: 30px;
  color: #39443f;
  font-size: 20px;
  line-height: 1.65;
}

.risk-notice {
  margin: 0 0 24px;
  padding: 13px 15px;
  border: 1px solid #e6aaa5;
  border-left: 4px solid #b42318;
  border-radius: 6px;
  color: #8f1d15;
  background: #fff1f0;
  font-size: 13px;
}

.risk-notice strong {
  display: block;
  margin-bottom: 3px;
  color: #8f1d15;
}

.risk-notice p {
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-weight: 740;
}

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

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

.button-secondary:hover {
  color: var(--skill);
  border-color: var(--skill);
  background: var(--surface);
}

.support-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  list-style: none;
}

.support-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--skill);
  vertical-align: 1px;
}

.product-preview {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid #cfd7d1;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 28px 70px rgb(25 47 36 / 15%);
}

.product-preview::after {
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  background: linear-gradient(to bottom, transparent, rgb(255 255 255 / 94%));
  content: "";
  pointer-events: none;
}

.preview-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 42px;
  padding: 0 15px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.preview-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c4ccc6;
}

.preview-bar span:first-child {
  background: #d58b72;
}

.preview-bar span:nth-child(2) {
  background: #d5ac5e;
}

.preview-bar span:nth-child(3) {
  background: #65a779;
}

.preview-bar strong {
  margin-left: 8px;
  font-weight: 650;
}

.product-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.comparison-section {
  padding: 44px 0 104px;
  border-top: 1px solid var(--line);
}

.comparison-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 72px;
  align-items: end;
}

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

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.comparison-step {
  min-height: 230px;
  padding: 28px 36px 30px 0;
}

.comparison-step + .comparison-step {
  padding-right: 0;
  padding-left: 36px;
  border-left: 1px solid var(--line);
}

.comparison-label {
  margin-bottom: 48px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.comparison-before .comparison-label {
  color: var(--confirm);
}

.comparison-after .comparison-label {
  color: var(--skill);
}

.comparison-flow {
  margin-bottom: 14px;
  font-size: 25px;
  font-weight: 730;
  line-height: 1.34;
}

.comparison-flow span {
  color: var(--mcp);
}

.comparison-step > p:last-child {
  max-width: 460px;
  margin-bottom: 0;
  color: var(--muted);
}

.homepage-workflow {
  padding-top: 92px;
  padding-bottom: 96px;
}

.section {
  padding: 104px 0;
  border-top: 1px solid var(--line);
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 72px;
  align-items: start;
}

h2 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: 42px;
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: 0;
}

.section-heading-row > p,
.section-intro .section-heading-row p,
.example-copy > p,
.boundary-note p,
.install-copy > p {
  color: var(--muted);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.capability {
  min-height: 370px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.capability-skill {
  border-top: 4px solid var(--skill);
}

.capability-mcp {
  border-top: 4px solid var(--mcp);
}

.capability-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.capability h3 {
  margin-bottom: 14px;
  font-size: 28px;
}

.capability p,
.capability li {
  color: var(--muted);
}

.capability ul,
.scope-columns ul {
  padding-left: 20px;
}

.timing-feature {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1.65fr);
  gap: 42px;
  margin-top: 20px;
  padding: 28px 4px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.timing-label {
  display: flex;
  justify-content: space-between;
  color: var(--confirm);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.timing-feature h3 {
  margin-bottom: 8px;
}

.timing-feature p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
}

.workflow-section {
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100vw - var(--max-width)) / 2));
  color: #f3f6f3;
  background: var(--terminal);
  border-top: 0;
}

.workflow-section .section-kicker {
  color: #7cd8a4;
}

.workflow-section .section-heading-row > p,
.workflow-list p {
  color: #abb8b0;
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 54px 0 0;
  padding: 0;
  border-top: 1px solid #3c4942;
  list-style: none;
}

.workflow-list li {
  min-height: 230px;
  padding: 24px 24px 0 0;
  border-right: 1px solid #3c4942;
}

.workflow-list li:not(:first-child) {
  padding-left: 24px;
}

.workflow-list li:last-child {
  border-right: 0;
}

.step-number {
  display: block;
  margin-bottom: 54px;
  color: #7cd8a4;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
}

.workflow-list h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.workflow-list p {
  margin-bottom: 0;
  font-size: 14px;
}

.workflow-list code {
  color: #b6d7ff;
}

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

.workflow-section-light .section-kicker {
  color: var(--skill);
}

.workflow-section-light .section-heading-row > p,
.workflow-section-light .workflow-list p {
  color: var(--muted);
}

.workflow-section-light .workflow-list {
  border-color: var(--line);
}

.workflow-section-light .workflow-list li {
  border-color: var(--line);
}

.workflow-section-light .step-number {
  color: var(--skill);
}

.workflow-section-light .workflow-list code {
  color: var(--mcp);
}

.confirmation-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  gap: 72px;
  align-items: center;
}

.confirmation-copy > p {
  color: var(--muted);
}

.decision-list {
  margin: 30px 0 0;
}

.decision-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.decision-list div:last-child {
  border-bottom: 1px solid var(--line);
}

.decision-list dt {
  font-weight: 730;
}

.decision-list dd {
  margin: 0;
  color: var(--muted);
}

.confirmation-preview {
  display: flex;
  min-height: 430px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 34px;
  border-radius: 8px;
  background: rgb(15 23 42 / 42%);
}

.confirmation-dialog {
  display: grid;
  width: min(560px, 100%);
  gap: 14px;
  padding: 20px;
  border-radius: 8px;
  color: #111827;
  background: #fff;
  box-shadow: 0 24px 80px rgb(15 23 42 / 28%);
}

.confirmation-dialog h3 {
  margin: 0;
  font-size: 18px;
  line-height: 24px;
}

.confirmation-dialog > p {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
}

.confirmation-dialog pre {
  overflow: auto;
  max-height: 260px;
  margin: 0;
  padding: 12px;
  border-radius: 6px;
  background: #f3f4f6;
  font-size: 12px;
  line-height: 18px;
  white-space: pre-wrap;
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.dialog-actions span {
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  color: #111827;
  background: #fff;
  font-size: 14px;
  line-height: 20px;
}

.dialog-actions .dialog-primary {
  color: #fff;
  background: #111827;
}

.example-section {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 80px;
  align-items: end;
}

.example-copy > p {
  max-width: 690px;
  font-size: 18px;
}

.example-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 30px 0;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
}

.example-flow span {
  padding: 6px 9px;
}

.example-flow .flow-skill {
  color: var(--skill);
  background: var(--skill-soft);
}

.example-flow .flow-mcp {
  color: var(--mcp);
  background: var(--mcp-soft);
}

.text-link {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--ink);
  font-weight: 740;
}

.text-link:hover {
  color: var(--mcp);
  border-color: var(--mcp);
}

.boundary-note {
  padding: 28px;
  border: 1px solid #e7cf97;
  border-radius: 8px;
  background: var(--confirm-soft);
}

.boundary-note .note-label {
  color: var(--confirm);
}

.boundary-note h3 {
  margin-bottom: 12px;
}

.boundary-note p:last-child {
  margin-bottom: 0;
}

.scope-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: 80px;
}

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

.scope-columns h3 {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.scope-columns li {
  margin-bottom: 11px;
  color: var(--muted);
}

.check-list li::marker {
  color: var(--skill);
}

.plain-list li::marker {
  color: #8d9691;
}

.install-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
  gap: 80px;
  align-items: center;
}

.install-copy ol {
  padding-left: 22px;
}

.install-copy li {
  margin-bottom: 8px;
}

.install-download {
  margin-top: 14px;
}

.source-install > p {
  color: var(--muted);
}

.source-install > p:last-child {
  margin: 16px 0 0;
  font-size: 13px;
}

.terminal {
  overflow-x: auto;
  margin: 0;
  padding: 30px;
  border-radius: 8px;
  color: #e9f2ec;
  background: var(--terminal);
  font-size: 13px;
  line-height: 1.9;
}

.terminal span {
  color: #7cd8a4;
}

.page-hero {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
  padding: 104px 0 88px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(54px, 9vw, 104px);
}

.page-summary {
  max-width: 780px;
  margin-bottom: 34px;
  color: #39443f;
  font-size: 21px;
  line-height: 1.7;
}

.quick-start-hero {
  padding-bottom: 72px;
}

.quick-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 58px 0 0;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--line);
  list-style: none;
}

.quick-overview li {
  min-height: 118px;
  padding: 22px;
  background: var(--surface);
  font-weight: 720;
}

.quick-overview span {
  display: block;
  margin-bottom: 24px;
  color: var(--skill);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
}

.guide-section {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 52px;
}

.guide-index {
  color: #98a39d;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
}

.guide-content {
  min-width: 0;
}

.guide-content > h2 {
  margin-bottom: 20px;
}

.section-lead {
  max-width: 840px;
  margin-bottom: 40px;
  color: var(--muted);
  font-size: 18px;
}

.inline-link {
  color: var(--mcp);
  text-decoration: underline;
  text-decoration-color: rgb(23 105 170 / 34%);
  text-underline-offset: 3px;
}

.instruction-list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: instruction;
}

.instruction-list > li {
  position: relative;
  padding: 0 0 34px 54px;
  counter-increment: instruction;
}

.instruction-list > li:not(:last-child) {
  border-bottom: 1px solid var(--line);
  margin-bottom: 34px;
}

.instruction-list > li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--skill);
  background: var(--surface);
  content: counter(instruction);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 760;
}

.instruction-list h3 {
  margin-bottom: 8px;
}

.instruction-list p {
  max-width: 840px;
  color: var(--muted);
}

.guide-note,
.security-note {
  margin-top: 18px;
  padding: 18px 20px;
  border-left: 4px solid var(--confirm);
  border-radius: 6px;
  color: #775315;
  background: var(--confirm-soft);
  font-size: 14px;
}

.platform-panel .guide-note {
  margin-bottom: 0;
}

.security-note {
  border-color: #b42318;
  color: #8f1d15;
  background: #fff1f0;
}

.security-note p {
  margin: 5px 0 0;
}

.platform-grid,
.command-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.platform-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.platform-panel > p,
.platform-panel li {
  color: var(--muted);
}

.platform-panel ol {
  padding-left: 20px;
}

.platform-panel li {
  margin-bottom: 10px;
}

.platform-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.platform-heading h3 {
  margin: 0;
  font-size: 24px;
}

.platform-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mac-dot {
  background: var(--skill);
}

.windows-dot {
  background: var(--mcp);
}

.platform-panel .terminal,
.command-pair .terminal,
.instruction-list > li > .terminal {
  margin-top: 14px;
  padding: 22px;
}

.command-pair {
  margin: 18px 0;
}

.command-pair strong {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
}

.endpoint {
  overflow-x: auto;
  width: fit-content;
  max-width: 100%;
  margin: 16px 0 0;
  padding: 14px 18px;
  border: 1px solid #a9cce8;
  border-radius: 6px;
  color: #0d568d;
  background: var(--mcp-soft);
}

.result-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: end;
  margin-top: 42px;
  padding: 36px;
  border: 1px solid #a9d3ba;
  border-radius: 8px;
  background: var(--skill-soft);
}

.result-band h2 {
  margin-bottom: 12px;
  font-size: 32px;
}

.result-band p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: #3e6450;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 38px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

footer p {
  margin: 0;
  text-align: center;
}

footer > div {
  display: flex;
  justify-self: end;
  gap: 18px;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .product-preview {
    width: min(100%, 760px);
  }

  .comparison-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .workflow-list li:nth-child(2) {
    border-right: 0;
  }

  .workflow-list li:nth-child(n + 3) {
    border-top: 1px solid #3c4942;
  }

  .workflow-section-light .workflow-list li:nth-child(n + 3) {
    border-color: var(--line);
  }

  .example-section,
  .confirmation-section,
  .scope-section,
  .install-section {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .boundary-note {
    max-width: 620px;
  }

  .confirmation-preview {
    min-height: 390px;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 58px;
    padding: 10px 16px 0;
  }

  .site-header nav {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    width: 100%;
    gap: 22px;
    overflow-x: auto;
    padding: 9px 0 10px;
    white-space: nowrap;
    scrollbar-width: none;
  }

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

  .site-header .header-link {
    grid-column: 2;
    grid-row: 1;
  }

  .hero,
  .section,
  .page-hero,
  .comparison-section,
  footer {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .hero {
    gap: 20px;
    min-height: calc(100svh - 138px);
    padding: 28px 0 12px;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-summary {
    margin-bottom: 20px;
    font-size: 17px;
  }

  .hero {
    gap: 20px;
  }

  .product-preview img {
    height: 64px;
    object-fit: cover;
    object-position: center;
  }

  .risk-notice {
    margin-bottom: 16px;
    padding: 10px 12px;
    font-size: 12px;
    line-height: 1.45;
  }

  .risk-notice strong {
    display: inline;
    margin: 0 6px 0 0;
  }

  .risk-notice p {
    display: inline;
  }

  .section {
    padding: 76px 0;
  }

  .hero-actions {
    margin-bottom: 26px;
  }

  .workflow-section {
    width: 100%;
    padding-inline: 16px;
  }

  .section-heading-row,
  .capability-grid,
  .scope-columns,
  .timing-feature,
  .guide-section,
  .command-pair,
  .result-band,
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .comparison-section {
    padding: 32px 0 76px;
  }

  .comparison-step,
  .comparison-step + .comparison-step {
    min-height: 0;
    padding: 22px 0;
    border-left: 0;
  }

  .comparison-step + .comparison-step {
    border-top: 1px solid var(--line);
  }

  .comparison-label {
    margin-bottom: 24px;
  }

  .comparison-flow {
    font-size: 21px;
  }

  .homepage-workflow {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .page-hero {
    padding: 62px 0 54px;
  }

  .page-hero h1 {
    font-size: 52px;
  }

  .page-summary {
    font-size: 17px;
  }

  .quick-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 38px;
  }

  .quick-overview li {
    min-height: 100px;
    padding: 17px;
  }

  .quick-overview span {
    margin-bottom: 15px;
  }

  .guide-index {
    display: none;
  }

  .instruction-list > li {
    padding-left: 46px;
  }

  .platform-panel,
  .result-band {
    padding: 22px;
  }

  .timing-label {
    justify-content: flex-start;
    gap: 18px;
  }

  .capability {
    min-height: auto;
    padding: 25px;
  }

  .capability-label {
    margin-bottom: 38px;
  }

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

  .workflow-list li,
  .workflow-list li:not(:first-child) {
    display: grid;
    grid-template-columns: 44px 1fr;
    min-height: auto;
    padding: 22px 0;
    border-top: 1px solid #3c4942;
    border-right: 0;
  }

  .workflow-list li:first-child {
    border-top: 0;
  }

  .workflow-section-light .workflow-list li,
  .workflow-section-light .workflow-list li:not(:first-child) {
    border-color: var(--line);
  }

  .step-number {
    margin-bottom: 0;
  }

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

  .confirmation-preview {
    min-height: 0;
    padding: 16px;
  }

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

  .example-flow {
    align-items: flex-start;
  }

  .terminal {
    padding: 22px;
    font-size: 11px;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  footer p {
    text-align: left;
  }

  footer > div {
    justify-self: start;
    flex-wrap: wrap;
  }
}

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