/* Getting Started */

.getting-page {
  --getting-blue: #4aa3ff;
  --getting-blue-soft: #89bdff;
  --getting-green: #35d49a;
  --getting-text: #f3f7ff;
  --getting-muted: #9eb1cd;
  --getting-dim: #7f95b4;
  --getting-line: rgba(125, 175, 255, 0.15);
  min-height: calc(100vh - 200px);
  padding: 42px 14px 72px;
}

.getting-shell {
  width: min(1480px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.getting-hero,
.setup-guide-panel,
.connection-panel,
.client-note-panel,
.safety-panel,
.troubleshooting-panel,
.getting-support {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--getting-line);
  border-radius: 20px;
  background:
    radial-gradient(
      ellipse at 12% 0%,
      rgba(74, 163, 255, 0.105),
      transparent 44%
    ),
    linear-gradient(180deg, rgba(8, 17, 30, 0.9), rgba(5, 13, 25, 0.88));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(125%);
}

.getting-hero::before,
.setup-guide-panel::before,
.connection-panel::before,
.client-note-panel::before,
.safety-panel::before,
.troubleshooting-panel::before,
.getting-support::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(132, 196, 255, 0.48),
    transparent
  );
}

.getting-hero {
  min-height: 360px;
  padding: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  align-items: center;
  gap: 46px;
}

.getting-hero::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -150px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(53, 212, 154, 0.09),
    transparent 66%
  );
  pointer-events: none;
}

.getting-hero-copy,
.getting-hero-summary {
  position: relative;
  z-index: 1;
}

.getting-eyebrow,
.section-kicker,
.step-kicker {
  color: #78b7ff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.getting-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 11px;
  border: 1px solid rgba(74, 163, 255, 0.18);
  border-radius: 999px;
  background: rgba(74, 163, 255, 0.07);
}

.getting-hero h1 {
  max-width: none;
  margin: 0;
  color: var(--getting-text);
  font-size: clamp(2.35rem, 3.6vw, 3.35rem);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 0.98;
  white-space: nowrap;
}

.getting-hero h1 span {
  color: #78b7ff;
}

.getting-hero-copy > p {
  max-width: 720px;
  margin: 19px 0 0;
  color: #b7c8df;
  font-size: 1.05rem;
  line-height: 1.7;
}

.getting-hero-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.getting-button {
  min-height: 46px;
  padding: 11px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.getting-button:hover {
  color: #fff;
  transform: translateY(-1px);
}

.getting-button.primary {
  border-color: rgba(119, 190, 255, 0.38);
  background: linear-gradient(135deg, #2995ff, #2563eb);
  box-shadow:
    0 8px 24px rgba(37, 99, 235, 0.25),
    inset 0 1px rgba(255, 255, 255, 0.2);
}

.getting-button.primary:hover {
  background: linear-gradient(135deg, #48a5ff, #2f6df0);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.34);
}

.getting-button.secondary {
  border-color: rgba(125, 175, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #dceaff;
}

.getting-button.secondary:hover {
  border-color: rgba(125, 175, 255, 0.35);
  background: rgba(74, 163, 255, 0.1);
}

.getting-button.discord {
  border-color: rgba(132, 145, 255, 0.3);
  background: rgba(88, 101, 242, 0.15);
  color: #cbd0ff;
}

.getting-button.compact {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 0.78rem;
}

.getting-hero-summary {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.042);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}

.hero-summary-lead {
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.hero-summary-icon,
.support-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(53, 212, 154, 0.22);
  border-radius: 13px;
  color: #5be0ae;
  background: rgba(53, 212, 154, 0.09);
  font-size: 1.2rem;
  line-height: 1;
}

.hero-summary-icon > i,
.support-icon > i {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.hero-summary-icon > i::before,
.support-icon > i::before {
  display: block;
  line-height: 1;
  vertical-align: 0;
}

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

.hero-summary-lead strong {
  color: var(--getting-text);
  font-size: 0.98rem;
}

.hero-summary-lead div span {
  margin-top: 3px;
  color: var(--getting-muted);
  font-size: 0.76rem;
}

.getting-hero-summary dl {
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.getting-hero-summary dl div {
  min-width: 0;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.getting-hero-summary dl .wide {
  grid-column: 1 / -1;
}

.getting-hero-summary dt {
  color: var(--getting-dim);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.getting-hero-summary dd {
  margin: 5px 0 0;
  overflow: hidden;
  color: var(--getting-text);
  font-size: 1rem;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.setup-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(360px, 0.65fr);
  gap: 18px;
  align-items: start;
}

.setup-guide-panel,
.connection-panel,
.client-note-panel,
.troubleshooting-panel,
.getting-support {
  padding: 28px;
}

.setup-guide-panel {
  scroll-margin-top: 112px;
}

.section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.section-heading h2,
.sidebar-heading h2,
.client-note-panel h2,
.getting-support h2 {
  margin: 4px 0 0;
  color: var(--getting-text);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.section-heading p {
  max-width: 720px;
  margin: 7px 0 0;
  color: var(--getting-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.section-count {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid rgba(74, 163, 255, 0.2);
  border-radius: 999px;
  background: rgba(74, 163, 255, 0.07);
  color: #82bbff;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.setup-steps {
  margin-top: 23px;
  display: grid;
}

.setup-step {
  min-width: 0;
  display: grid;
  grid-template-columns: 44px 48px minmax(0, 1fr);
  gap: 15px;
}

.step-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-rail span {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(125, 175, 255, 0.22);
  border-radius: 11px;
  background: rgba(74, 163, 255, 0.09);
  color: #7dbbff;
  font-size: 0.68rem;
  font-weight: 950;
}

.step-rail i {
  width: 1px;
  min-height: 34px;
  flex: 1 1 auto;
  background: linear-gradient(
    180deg,
    rgba(74, 163, 255, 0.4),
    rgba(74, 163, 255, 0.08)
  );
}

.step-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(125, 175, 255, 0.17);
  border-radius: 14px;
  background: rgba(74, 163, 255, 0.075);
  color: #75b6ff;
  font-size: 1.18rem;
}

.step-content {
  min-width: 0;
  margin-bottom: 13px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.032);
}

.setup-step:hover .step-content {
  border-color: rgba(125, 175, 255, 0.18);
  background: rgba(74, 163, 255, 0.045);
}

.featured-step .step-content {
  border-color: rgba(74, 163, 255, 0.2);
  background:
    radial-gradient(
      ellipse at 0% 0%,
      rgba(74, 163, 255, 0.09),
      transparent 48%
    ),
    rgba(255, 255, 255, 0.035);
}

.final-step .step-rail span {
  border-color: rgba(53, 212, 154, 0.23);
  background: rgba(53, 212, 154, 0.08);
  color: #59dda9;
}

.final-step .step-icon {
  border-color: rgba(53, 212, 154, 0.18);
  background: rgba(53, 212, 154, 0.065);
  color: #59d9aa;
}

.step-kicker {
  font-size: 0.62rem;
}

.step-content h3 {
  margin: 4px 0 0;
  color: #eef5ff;
  font-size: 1rem;
  font-weight: 900;
}

.step-content > p {
  margin: 6px 0 0;
  color: #a8bad2;
  font-size: 0.79rem;
  line-height: 1.6;
}

.step-content > p strong {
  color: #dceaff;
}

.step-actions {
  margin-top: 13px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
}

.getting-link {
  color: #84bcff;
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
}

.getting-link:hover {
  color: #b4d7ff;
}

.installation-choice {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.installation-choice > div {
  min-width: 0;
  padding: 10px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.13);
}

.installation-choice i {
  margin-top: 1px;
  color: #51d6a4;
}

.installation-choice > div:last-child i {
  color: #76b5ff;
}

.installation-choice strong,
.installation-choice small {
  display: block;
}

.installation-choice strong {
  color: #dce9f9;
  font-size: 0.71rem;
}

.installation-choice small {
  margin-top: 2px;
  color: #8498b4;
  font-size: 0.64rem;
  line-height: 1.4;
}

.copy-command {
  margin-top: 13px;
  padding: 11px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(125, 175, 255, 0.15);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
}

.copy-command small,
.copy-command code {
  display: block;
}

.copy-command small {
  margin-bottom: 3px;
  color: #6f86a5;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.copy-command code,
.primary-command code,
.config-item code,
.required-paths code,
.troubleshooting-grid code {
  color: #acd4ff;
  font-family: Consolas, Monaco, monospace;
}

.copy-command code {
  font-size: 0.8rem;
}

.copy-button {
  min-height: 36px;
  padding: 8px 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(125, 175, 255, 0.18);
  border-radius: 9px;
  background: rgba(74, 163, 255, 0.08);
  color: #7dbaff;
  font-size: 0.68rem;
  font-weight: 900;
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

.copy-button:hover {
  border-color: rgba(125, 175, 255, 0.35);
  background: rgba(74, 163, 255, 0.15);
  color: #dcecff;
}

.copy-button.copied {
  border-color: rgba(53, 212, 154, 0.25);
  background: rgba(53, 212, 154, 0.09);
  color: #58dba9;
}

.copy-button.icon-only {
  width: 36px;
  min-width: 36px;
  padding: 0;
}

.copy-button.icon-only.small {
  width: 32px;
  min-width: 32px;
  min-height: 32px;
}

.step-note {
  padding: 8px 10px;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  border-radius: 9px;
  background: rgba(74, 163, 255, 0.05);
  color: #91a7c3 !important;
  font-size: 0.68rem !important;
}

.step-note i {
  margin-top: 2px;
  color: #6eaff8;
}

.required-paths {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.required-paths > div {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.13);
}

.required-paths span,
.required-paths code {
  display: block;
}

.required-paths span {
  color: #d3e1f4;
  font-size: 0.68rem;
  font-weight: 850;
}

.required-paths span i {
  margin-right: 5px;
  color: #6faff8;
}

.required-paths code {
  margin-top: 4px;
  overflow: hidden;
  font-size: 0.62rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ready-callout {
  margin-top: 12px;
  padding: 11px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(53, 212, 154, 0.15);
  border-radius: 10px;
  background: rgba(53, 212, 154, 0.055);
}

.ready-callout > i {
  color: #52d8a7;
  font-size: 1.1rem;
}

.ready-callout strong,
.ready-callout small {
  display: block;
}

.ready-callout strong {
  color: #d7f3e9;
  font-size: 0.72rem;
}

.ready-callout small {
  margin-top: 2px;
  color: #8daea4;
  font-size: 0.64rem;
}

.setup-sidebar {
  display: grid;
  gap: 14px;
}

.sidebar-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sidebar-heading > span {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(125, 175, 255, 0.18);
  border-radius: 12px;
  background: rgba(74, 163, 255, 0.08);
  color: #76b6ff;
  font-size: 1.1rem;
}

.sidebar-heading h2 {
  font-size: 1.12rem;
}

.primary-command {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(74, 163, 255, 0.18);
  border-radius: 13px;
  background: rgba(74, 163, 255, 0.06);
}

.primary-command > span,
.config-item > span {
  color: #778daa;
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.primary-command > div,
.config-item > div {
  min-width: 0;
  margin-top: 6px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
}

.primary-command code,
.config-item code {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.primary-command code {
  color: #bdddff;
  font-size: 0.77rem;
  font-weight: 800;
}

.config-list {
  margin-top: 10px;
  display: grid;
  gap: 7px;
}

.config-item {
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.03);
}

.config-item code {
  color: #9fc6ee;
  font-size: 0.64rem;
}

.client-note-panel {
  min-height: 220px;
}

.client-note-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(125, 175, 255, 0.17);
  border-radius: 13px;
  background: rgba(74, 163, 255, 0.08);
  color: #79b8ff;
  font-size: 1.15rem;
}

.client-note-panel h2 {
  font-size: 1.12rem;
}

.client-note-panel p {
  margin: 8px 0 0;
  color: var(--getting-muted);
  font-size: 0.76rem;
  line-height: 1.6;
}

.client-note-panel > a {
  margin-top: 14px;
  display: inline-block;
  color: #7dbaff;
  font-size: 0.72rem;
  font-weight: 850;
  text-decoration: none;
}

.safety-panel {
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-color: rgba(53, 212, 154, 0.14);
  background: linear-gradient(
    180deg,
    rgba(8, 27, 31, 0.88),
    rgba(5, 19, 25, 0.88)
  );
}

.safety-panel > span {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(53, 212, 154, 0.09);
  color: #55d9a8;
}

.safety-panel strong {
  color: #ddf6ed;
  font-size: 0.76rem;
}

.safety-panel p {
  margin: 4px 0 0;
  color: #8eada6;
  font-size: 0.67rem;
  line-height: 1.5;
}

.troubleshooting-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.troubleshooting-grid details {
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.troubleshooting-grid details[open] {
  border-color: rgba(125, 175, 255, 0.18);
  background: rgba(74, 163, 255, 0.04);
}

.troubleshooting-grid summary {
  min-height: 48px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  color: #dce9f9;
  font-size: 0.75rem;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.troubleshooting-grid summary::-webkit-details-marker {
  display: none;
}

.troubleshooting-grid summary > span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.troubleshooting-grid summary > span i {
  color: #70b1fb;
}

.troubleshooting-grid summary > i {
  color: #6c829f;
  font-size: 0.66rem;
  transition: transform 0.18s ease;
}

.troubleshooting-grid details[open] summary > i {
  transform: rotate(180deg);
}

.troubleshooting-grid p {
  margin: 0;
  padding: 0 14px 14px;
  color: #97abc5;
  font-size: 0.72rem;
  line-height: 1.6;
}

.troubleshooting-grid code {
  padding: 2px 5px;
  border-radius: 5px;
  background: rgba(74, 163, 255, 0.07);
  overflow-wrap: anywhere;
}

.troubleshooting-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(125, 175, 255, 0.17);
  border-radius: 12px;
  background: rgba(74, 163, 255, 0.07);
  color: #74b4fb;
}

.getting-support {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.support-copy {
  display: flex;
  align-items: center;
  gap: 15px;
}

.getting-support h2 {
  font-size: 1.1rem;
}

.getting-support p {
  margin: 5px 0 0;
  color: var(--getting-muted);
  font-size: 0.76rem;
}

.support-actions {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.getting-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1100;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(53, 212, 154, 0.28);
  border-radius: 12px;
  background: rgba(5, 20, 28, 0.96);
  color: #dffaf0;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  font-size: 0.78rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.getting-toast i {
  color: #4fd7a5;
}

.getting-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.getting-toast[data-type="error"] {
  border-color: rgba(248, 113, 113, 0.3);
  color: #fee2e2;
}

.getting-toast[data-type="error"] i {
  color: #f87171;
}

.getting-page :is(a, button, summary):focus-visible {
  outline: 2px solid #78b7ff;
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .getting-hero {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    padding: 34px;
  }

  .setup-layout {
    grid-template-columns: 1fr;
  }

  .setup-sidebar {
    grid-template-columns: 1.25fr 0.75fr;
  }

  .safety-panel {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  .getting-page {
    padding: 24px 14px 52px;
  }

  .getting-hero {
    min-height: 0;
    padding: 27px;
    grid-template-columns: 1fr;
  }

  .getting-hero h1 {
    font-size: clamp(2rem, 7.5vw, 3rem);
    white-space: normal;
  }

  .getting-hero-summary {
    width: 100%;
  }

  .setup-guide-panel,
  .connection-panel,
  .client-note-panel,
  .troubleshooting-panel,
  .getting-support {
    padding: 20px;
  }

  .setup-sidebar,
  .troubleshooting-grid {
    grid-template-columns: 1fr;
  }

  .safety-panel {
    grid-column: auto;
  }

  .getting-support {
    align-items: flex-start;
    flex-direction: column;
  }

  .installation-choice,
  .required-paths {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .getting-hero {
    padding: 23px 20px;
  }

  .getting-hero-actions,
  .support-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .getting-hero-summary dl {
    grid-template-columns: 1fr;
  }

  .getting-hero-summary dl .wide {
    grid-column: auto;
  }

  .section-count,
  .troubleshooting-icon {
    display: none;
  }

  .setup-step {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
  }

  .step-rail span {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    font-size: 0.61rem;
  }

  .step-icon {
    display: none;
  }

  .step-content {
    padding: 15px;
  }

  .step-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .copy-command {
    grid-template-columns: 1fr;
  }

  .copy-command .copy-button {
    width: 100%;
  }

  .support-copy {
    align-items: flex-start;
  }

  .getting-toast {
    right: 16px;
    bottom: 16px;
    left: 16px;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .getting-page *,
  .getting-page *::before,
  .getting-page *::after,
  .getting-toast {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
