/* DSH Computer Use product site */

:root {
  --bg: #f7f8f8;
  --surface: #ffffff;
  --soft: #eef0f1;
  --text: #202329;
  --muted: #62686f;
  --line: #d9dddf;
  --line-strong: #b9c0c3;
  --green: #2c9b68;
  --green-dark: #217650;
  --green-soft: #e8f3ed;
  --coral: #df6255;
  --coral-soft: #faece9;
  --yellow: #d5a22a;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", "Hiragino Sans GB", "Segoe UI", sans-serif;
  --nav-height: 68px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 20px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button,
a {
  font: inherit;
}

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

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

code {
  font-family: var(--mono);
  font-size: 0.88em;
  overflow-wrap: anywhere;
}

.container {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-height);
  border-bottom: 1px solid transparent;
  background: rgba(247, 248, 248, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: border-color 160ms ease;
}

.nav.scrolled {
  border-bottom-color: var(--line);
}

.nav-inner {
  width: min(1160px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-weight: 700;
}

.brand img {
  border-radius: 7px;
}

.brand small {
  padding-left: 9px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-left: auto;
}

.nav-links a {
  padding: 8px 11px;
  color: var(--muted);
  font-size: 14px;
  border-radius: 6px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--soft);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  background: var(--text);
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.button {
  min-height: 44px;
  padding: 10px 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  font-weight: 650;
  line-height: 1.2;
  transition: background 140ms ease, border-color 140ms ease, transform 140ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

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

.button-primary:hover {
  background: var(--green-dark);
}

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

.button-quiet:hover {
  border-color: var(--text);
  background: #ffffff;
}

.button.compact {
  min-height: 36px;
  padding: 8px 13px;
  font-size: 13px;
}

.hero {
  margin-top: var(--nav-height);
  min-height: min(680px, calc(100svh - 120px));
  border-bottom: 1px solid var(--line);
  background-color: #f4f5f5;
  background-image: url("assets/setup-center.png");
  background-repeat: no-repeat;
  background-size: min(760px, 58vw) auto;
  background-position: calc(50% + 365px) center;
}

.hero-inner {
  min-height: inherit;
  padding-top: 96px;
  padding-bottom: 76px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.eyebrow,
.kicker,
.surface-label {
  margin: 0 0 15px;
  color: var(--green-dark);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.hero h1 {
  max-width: 560px;
  margin: 0 0 14px;
  font-size: 64px;
  line-height: 1.04;
  font-weight: 780;
}

.hero-lead {
  max-width: 560px;
  margin: 0 0 22px;
  font-size: 25px;
  line-height: 1.45;
  font-weight: 620;
}

.hero-copy {
  max-width: 520px;
  margin: 0 0 31px;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-footnote {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-family: var(--mono);
}

.signal-strip {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.signal-grid {
  min-height: 110px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.signal-grid p {
  min-width: 0;
  margin: 0;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-left: 1px solid var(--line);
}

.signal-grid p:last-child {
  border-right: 1px solid var(--line);
}

.signal-grid strong {
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: 22px;
}

.signal-grid span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 94px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 50px;
}

.section-heading h2,
.boundary-grid h2 {
  margin: 0 0 15px;
  font-size: 40px;
  line-height: 1.2;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.install {
  background: var(--surface);
}

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

.install-method {
  min-width: 0;
  padding: 34px 44px 38px 0;
  scroll-margin-top: calc(var(--nav-height) + 20px);
}

.install-method + .install-method {
  padding-right: 0;
  padding-left: 44px;
  border-left: 1px solid var(--line);
}

.method-label {
  margin: 0 0 15px;
  color: var(--coral);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
}

.install-method h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.install-method > p:not(.method-label) {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.install-method > .button {
  margin-top: 27px;
}

.install-method > small {
  margin-top: 12px;
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  overflow-wrap: anywhere;
}

.install-method .install-code {
  max-width: 500px;
  margin-top: 24px;
}

.install-method .install-code pre {
  padding: 16px 18px;
  font-size: 13px;
}

.install-steps {
  margin: 54px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid var(--line-strong);
}

.install-steps li {
  min-width: 0;
  min-height: 225px;
  padding: 30px 34px 30px 0;
  border-right: 1px solid var(--line);
}

.install-steps li:not(:first-child) {
  padding-left: 34px;
}

.install-steps li:last-child {
  padding-right: 0;
  border-right: none;
}

.step-index {
  color: var(--coral);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
}

.install-steps h3 {
  margin: 31px 0 9px;
  font-size: 20px;
}

.install-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.product-band {
  background: #202329;
  color: #f7f8f8;
}

.on-dark .kicker,
.product-band .surface-label {
  color: #62c896;
}

.on-dark > p:last-child {
  color: #b7bdc1;
}

.execution-flow {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid #43484d;
  border-bottom: 1px solid #43484d;
}

.execution-flow div {
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1px 12px;
  align-items: baseline;
}

.execution-flow span {
  grid-row: 1 / 3;
  color: #62c896;
  font-family: var(--mono);
  font-size: 12px;
}

.execution-flow strong {
  font-size: 18px;
}

.execution-flow small {
  color: #aeb4b8;
}

.execution-flow b {
  padding: 0 16px;
  color: #6b7277;
  font-weight: 400;
}

.surface-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.surface-grid article {
  min-width: 0;
  padding: 7px 54px 0 0;
}

.surface-grid article + article {
  padding: 7px 0 0 54px;
  border-left: 1px solid #43484d;
}

.surface-label.coral {
  color: #f08d82;
}

.surface-grid h3 {
  margin: 0 0 20px;
  font-size: 27px;
}

.surface-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.surface-grid li {
  padding: 12px 0;
  color: #c6cbce;
  border-top: 1px solid #34383d;
}

.architecture-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 95px;
}

.sticky-heading {
  align-self: start;
  position: sticky;
  top: calc(var(--nav-height) + 40px);
}

.text-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--green-dark);
  font-weight: 700;
}

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

.architecture-rows article {
  padding: 30px 0 33px;
  border-top: 1px solid var(--line-strong);
}

.architecture-rows article:last-child {
  border-bottom: 1px solid var(--line-strong);
}

.architecture-rows span {
  color: var(--coral);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
}

.architecture-rows h3 {
  margin: 13px 0 8px;
  font-size: 23px;
}

.architecture-rows p {
  margin: 0;
  color: var(--muted);
}

.boundary-band {
  padding: 68px 0;
  border-top: 1px solid #cbd8d0;
  border-bottom: 1px solid #cbd8d0;
  background: var(--green-soft);
}

.boundary-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.boundary-grid h2 {
  font-size: 32px;
}

.boundary-grid h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.boundary-grid p {
  margin: 0;
  color: #4d6055;
  font-size: 14px;
}

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

.tool-panel {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
}

.tool-panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.tool-panel header code {
  font-size: 18px;
  font-weight: 700;
}

.tool-panel header span {
  color: var(--green-dark);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
}

.tool-panel p {
  min-height: 78px;
  margin: 0 0 20px;
  color: var(--muted);
}

.tool-panel dl {
  margin: 0;
}

.tool-panel dl div {
  padding: 10px 0;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  border-top: 1px solid var(--line);
}

.tool-panel dt {
  font-family: var(--mono);
  font-size: 13px;
}

.tool-panel dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.action-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.action-list code {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--soft);
  font-size: 12px;
}

.developer {
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.developer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: start;
}

.developer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.code-stack {
  display: grid;
  gap: 14px;
}

.code-block {
  overflow: hidden;
  border: 1px solid #34383d;
  border-radius: 8px;
  background: #202329;
  color: #f5f6f6;
}

.code-block > div {
  min-height: 43px;
  padding: 8px 12px 8px 16px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #3c4146;
}

.code-block > div span {
  color: #aeb4b8;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.code-block pre {
  margin: 0;
  padding: 20px;
  overflow-x: auto;
  line-height: 1.8;
}

.code-block pre code {
  white-space: pre;
}

.copy {
  margin-left: auto;
  min-width: 60px;
  padding: 5px 9px;
  border: 1px solid #5a6167;
  border-radius: 5px;
  background: transparent;
  color: #d2d6d8;
  font-family: var(--mono);
  font-size: 11px;
  cursor: pointer;
}

.copy:hover,
.copy.copied {
  border-color: #62c896;
  color: #62c896;
}

.footer {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px 60px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  border-radius: 8px;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
}

.footer-brand span {
  color: var(--muted);
  font-size: 12px;
}

.footer-links {
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  font-size: 14px;
}

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

.footer-grid > p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.doc-page {
  background: var(--surface);
}

.doc-nav-actions {
  margin-left: auto;
}

.doc-header {
  margin-top: var(--nav-height);
  padding: 94px 0 70px;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.doc-header h1 {
  max-width: 820px;
  margin: 0 0 20px;
  font-size: 54px;
  line-height: 1.12;
}

.doc-header > .container > p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.doc-meta {
  margin-top: 34px;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  border-top: 1px solid var(--line-strong);
}

.doc-meta span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
}

.doc-main {
  padding: 74px 0 100px;
}

.doc-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 800px);
  justify-content: space-between;
  gap: 80px;
}

.doc-toc {
  align-self: start;
  position: sticky;
  top: calc(var(--nav-height) + 28px);
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-strong);
}

.doc-toc strong {
  padding: 16px 0 12px;
  font-size: 13px;
}

.doc-toc a {
  padding: 8px 0;
  color: var(--muted);
  font-size: 13px;
}

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

.doc-content,
.doc-content section,
.doc-code {
  min-width: 0;
  max-width: 100%;
}

.doc-content section {
  padding: 58px 0 62px;
  border-top: 1px solid var(--line-strong);
  scroll-margin-top: calc(var(--nav-height) + 20px);
}

.doc-content section:first-child {
  padding-top: 0;
  border-top: none;
}

.doc-content h2 {
  margin: 0 0 19px;
  font-size: 32px;
  line-height: 1.25;
}

.doc-content p {
  color: var(--muted);
}

.doc-content a {
  color: var(--green-dark);
  font-weight: 650;
}

.doc-steps {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: release-step;
  border-top: 1px solid var(--line);
}

.doc-steps li {
  counter-increment: release-step;
  padding: 20px 0;
  display: grid;
  grid-template-columns: 34px 190px minmax(0, 1fr);
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.doc-steps li::before {
  content: counter(release-step, decimal-leading-zero);
  color: var(--coral);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}

.doc-steps li strong {
  font-size: 15px;
}

.doc-steps li span {
  color: var(--muted);
  font-size: 14px;
}

.doc-note,
.doc-warning {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 3px solid var(--green);
  background: var(--green-soft);
}

.doc-warning {
  border-left-color: var(--coral);
  background: var(--coral-soft);
}

.doc-warning p {
  margin: 4px 0 0;
}

.doc-code {
  margin: 22px 0;
}

.result-line {
  margin: 16px 0;
  padding: 15px 17px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
}

.result-line code {
  white-space: pre;
}

.secret-table {
  margin-top: 26px;
  border-top: 1px solid var(--line-strong);
}

.secret-table > div {
  padding: 14px 0;
  display: grid;
  grid-template-columns: minmax(230px, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.secret-table span {
  color: var(--muted);
  font-size: 14px;
}

.doc-faq {
  margin: 28px 0 0;
}

.doc-faq div {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

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

.doc-faq dt {
  margin-bottom: 7px;
  font-weight: 700;
}

.doc-faq dd {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .doc-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .doc-toc {
    position: static;
    flex-flow: row wrap;
    gap: 2px 18px;
  }

  .doc-toc strong {
    flex: 1 1 100%;
  }

  .hero {
    background-size: 650px auto;
    background-position: calc(50% + 330px) center;
  }

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

  .hero-lead,
  .hero-copy {
    max-width: 470px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    padding: 12px 24px 18px;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .architecture-layout,
  .developer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .sticky-heading {
    position: static;
  }

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

  .boundary-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 740px) {
  .doc-header {
    padding: 64px 0 50px;
  }

  .doc-header h1 {
    font-size: 40px;
  }

  .doc-header > .container > p:not(.eyebrow) {
    font-size: 16px;
  }

  .doc-main {
    padding: 50px 0 74px;
  }

  .doc-content section {
    padding: 46px 0 50px;
  }

  .doc-content h2 {
    font-size: 28px;
  }

  .doc-steps li {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .doc-steps li span {
    grid-column: 2;
  }

  .secret-table > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .container,
  .nav-inner {
    width: min(100% - 32px, 1160px);
  }

  .nav-actions .button-quiet {
    display: none;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 740px;
    background-size: min(610px, calc(100% - 70px)) auto;
    background-position: center calc(100% - 20px);
  }

  .hero-inner {
    padding-top: 48px;
    padding-bottom: 300px;
    justify-content: flex-start;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-lead {
    font-size: 21px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .signal-grid,
  .install-methods,
  .install-steps,
  .surface-grid,
  .tool-grid,
  .boundary-grid {
    grid-template-columns: 1fr;
  }

  .signal-grid p,
  .signal-grid p:last-child {
    min-height: 84px;
    padding: 20px 0;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .signal-grid p:last-child {
    border-bottom: none;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading h2,
  .boundary-grid h2 {
    font-size: 32px;
  }

  .install-method,
  .install-method + .install-method {
    padding: 28px 0 32px;
    border-left: none;
    border-bottom: 1px solid var(--line);
  }

  .install-method:last-child {
    border-bottom: none;
  }

  .install-steps {
    margin-top: 38px;
  }

  .install-steps li,
  .install-steps li:not(:first-child),
  .install-steps li:last-child {
    min-height: 0;
    padding: 25px 0 30px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .install-steps h3 {
    margin-top: 16px;
  }

  .execution-flow {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .execution-flow b {
    padding: 0 0 0 12px;
    transform: rotate(90deg);
    justify-self: start;
  }

  .surface-grid article,
  .surface-grid article + article {
    padding: 36px 0 0;
    border-left: none;
  }

  .surface-grid article + article {
    margin-top: 36px;
    border-top: 1px solid #43484d;
  }

  .boundary-grid > div:first-child {
    grid-column: auto;
  }

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

  .footer-links {
    justify-self: start;
  }
}

@media (max-width: 440px) {
  .brand span {
    font-size: 14px;
  }

  .nav-actions .button-primary {
    display: none;
  }

  .hero {
    min-height: 735px;
  }

  .hero-inner {
    padding-bottom: 295px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-lead br {
    display: none;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .tool-panel {
    padding: 20px;
  }

  .tool-panel dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

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

  .button,
  .nav-toggle span {
    transition: none;
  }
}
