.tabs {
  min-width: 0;
}

.tab-list {
  position: relative;
  display: flex;
  max-width: 100%;
  overflow-x: auto;
  border: var(--line-hairline) solid var(--color-border);
  background: var(--color-bg-panel);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.tab-list[role="tablist"] {
  isolation: isolate;
}

.tab-button,
[role="tab"].tab-button {
  position: relative;
  min-width: max-content;
  min-height: 50px;
  padding: 10px 22px;
  border: 0;
  border-right: var(--line-hairline) solid var(--color-border);
  background: var(--color-transparent);
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.tab-button[aria-selected="true"],
.tab-button.is-active {
  background: var(--color-accent-faint);
  color: var(--color-accent);
}

.tab-button[aria-selected="true"]::after,
.tab-button.is-active::after {
  position: absolute;
  right: 14px;
  bottom: 0;
  left: 14px;
  height: var(--line-strong);
  content: "";
  background: var(--color-accent);
}

.tab-panel {
  min-width: 0;
  padding: clamp(24px, 5vw, 54px);
  border: var(--line-hairline) solid var(--color-border);
  border-top: 0;
  background: var(--color-bg-panel);
  box-shadow: var(--shadow-panel);
}

.tab-panel[hidden] {
  display: none;
}

.feature-index {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  border: var(--line-hairline) solid var(--color-border);
  background: var(--color-bg-panel);
  box-shadow: var(--shadow-panel);
}

.feature-index .tab-list {
  display: flex;
  overflow: visible;
  border: 0;
  border-right: var(--line-hairline) solid var(--color-border);
  flex-direction: column;
}

.feature-index .tab-button {
  width: 100%;
  min-width: 0;
  min-height: 72px;
  padding: 16px 24px 16px 42px;
  border-right: 0;
  border-bottom: var(--line-hairline) solid var(--color-border);
  text-align: left;
}

.feature-index .tab-button::before {
  position: absolute;
  top: 50%;
  left: 17px;
  width: 7px;
  height: 7px;
  border: var(--line-hairline) solid var(--color-accent-dark);
  content: "";
  background: var(--color-bg);
  transform: translateY(-50%) rotate(45deg);
}

.feature-index .tab-button[aria-selected="true"]::before {
  border-color: var(--color-accent);
  background: var(--color-accent);
}

.feature-index .tab-button[aria-selected="true"]::after {
  top: 14px;
  right: auto;
  bottom: 14px;
  left: 0;
  width: var(--line-strong);
  height: auto;
}

.feature-index .tab-panel {
  border: 0;
  box-shadow: none;
}

.toc-tabs {
  display: flex;
  max-width: 100%;
  margin: 30px 0 46px;
  overflow-x: auto;
  border-top: var(--line-hairline) solid var(--color-border);
  border-bottom: var(--line-hairline) solid var(--color-border);
  background: var(--color-bg-soft);
  -webkit-overflow-scrolling: touch;
}

.toc-tabs a {
  display: inline-flex;
  min-width: max-content;
  min-height: 48px;
  padding: 10px 18px;
  border-right: var(--line-hairline) solid var(--color-border);
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  align-items: center;
  letter-spacing: 0.06em;
}

.toc-tabs a:hover,
.toc-tabs a:focus-visible {
  background: var(--color-accent-faint);
  color: var(--color-accent);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: var(--line-hairline) solid var(--color-border);
  background: var(--color-bg-panel);
  box-shadow: inset 0 1px 0 var(--color-highlight);
}

.faq-item summary {
  position: relative;
  display: flex;
  min-height: 62px;
  padding: 17px 54px 17px 20px;
  color: var(--color-text);
  font-weight: 600;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--color-accent);
  font-family: var(--font-mono);
  content: "+";
  transform: translateY(-50%);
}

.faq-item[open] summary {
  border-bottom: var(--line-hairline) solid var(--color-border);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 20px;
  color: var(--color-text-muted);
}

.faq-answer > :last-child {
  margin-bottom: 0;
}

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

.term-card {
  position: relative;
  min-width: 0;
  padding: 27px;
  border: var(--line-hairline) solid var(--color-border);
  background:
    linear-gradient(135deg, var(--color-accent-faint), var(--color-transparent) 52%),
    var(--color-bg-panel);
  box-shadow: 9px 9px 0 var(--color-shadow-soft);
}

.term-card::after {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 16px;
  height: 16px;
  border-top: var(--line-hairline) solid var(--color-accent);
  border-right: var(--line-hairline) solid var(--color-accent);
  content: "";
}

.term-card dt,
.term-title {
  margin-bottom: 8px;
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.term-card dd,
.term-card p {
  margin: 0;
  color: var(--color-text-muted);
}

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

.download-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 250px;
  padding: 28px;
  border: var(--line-hairline) solid var(--color-border);
  background: var(--color-bg-panel);
  box-shadow: var(--shadow-card);
  flex-direction: column;
}

.download-card.is-primary {
  border-color: var(--color-accent);
  background:
    linear-gradient(145deg, var(--color-accent-faint), var(--color-transparent) 60%),
    var(--color-bg-panel-2);
}

.download-card.is-archived {
  border-style: dashed;
}

.download-card-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.download-card-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
}

.download-card-title {
  min-width: 0;
}

.download-card-title h3 {
  margin-bottom: 4px;
  font-size: 25px;
}

.download-card p {
  color: var(--color-text-muted);
}

.download-card-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  flex-wrap: wrap;
}

.client-badges {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.badge-featured {
  border-radius: var(--radius-square);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.badge-recommended::before {
  background: var(--color-success);
}

.badge-retired {
  border-color: var(--color-error);
  color: var(--color-text-muted);
}

.badge-retired::before {
  background: var(--color-error);
}

[data-cdnver] {
  display: none;
}

[data-cdnver].has-version {
  display: inline-flex;
}

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

.post-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 280px;
  padding: 28px;
  overflow: hidden;
  border: var(--line-hairline) solid var(--color-border);
  background: var(--color-bg-panel);
  box-shadow: var(--shadow-card);
  flex-direction: column;
}

.post-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 84px;
  height: var(--line-strong);
  content: "";
  background: var(--color-accent);
}

.post-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--color-accent-dark);
  font-family: var(--font-mono);
  font-size: 10px;
  align-items: center;
  letter-spacing: 0.08em;
  flex-wrap: wrap;
}

.post-card h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.post-card p {
  color: var(--color-text-muted);
}

.post-card-link {
  margin-top: auto;
  padding-top: 20px;
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.callout {
  position: relative;
  margin: 28px 0;
  padding: 22px 24px 22px 30px;
  border: var(--line-hairline) solid var(--color-border);
  border-left: 5px solid var(--color-accent);
  background:
    linear-gradient(90deg, var(--color-accent-faint), var(--color-transparent)),
    var(--color-bg-panel);
  color: var(--color-text-muted);
  box-shadow: inset 0 1px 0 var(--color-highlight);
}

.callout::before {
  position: absolute;
  top: 13px;
  left: -5px;
  width: 5px;
  height: 14px;
  content: "";
  background: var(--color-accent-dark);
}

.callout strong,
.callout-title {
  color: var(--color-text);
}

.callout-warning {
  border-left-color: var(--color-warning);
}

.callout-error {
  border-left-color: var(--color-error);
}

.article-download-card {
  display: grid;
  margin-top: 54px;
  padding: clamp(24px, 5vw, 44px);
  border: var(--line-strong) solid var(--color-accent-dark);
  outline: var(--line-hairline) solid var(--color-accent);
  outline-offset: -8px;
  background: var(--color-bg-panel-2);
  box-shadow: var(--shadow-panel);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.article-download-card p {
  margin-bottom: 0;
  color: var(--color-text-muted);
}

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

.dl-fab {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 80;
  display: inline-flex;
  max-width: calc(100vw - 36px);
  min-height: 54px;
  padding: 8px 17px 8px 10px;
  border: var(--line-hairline) solid var(--color-error);
  background: var(--color-error);
  color: var(--color-text);
  box-shadow: var(--shadow-button);
  align-items: center;
  gap: 11px;
}

.dl-fab-icon {
  display: grid;
  width: 34px;
  height: 34px;
  border: var(--line-hairline) solid var(--color-highlight-strong);
  background: var(--color-error-dark);
  font-family: var(--font-mono);
  place-items: center;
  flex-shrink: 0;
}

.dl-fab-copy {
  min-width: 0;
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.prose > .data-table {
  display: block;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.preview-hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
}

.preview-hero::before {
  position: absolute;
  inset: 28px 28px 106px;
  border: var(--line-hairline) solid var(--color-accent-soft);
  content: "";
  pointer-events: none;
}

.preview-hero::after {
  position: absolute;
  top: 28px;
  right: 49%;
  width: 88px;
  height: var(--line-hairline);
  content: "";
  background: var(--color-accent);
}

.hero-main {
  display: grid;
  width: 100%;
  max-width: calc(var(--page-width) + var(--gutter) * 2);
  min-height: calc(100vh - var(--header-height) - 92px);
  margin: 0 auto;
  padding-inline: var(--gutter);
  grid-template-columns: 46% 54%;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 4;
  min-width: 0;
  padding: 8px 0 46px 32px;
}

.hero-copy .eyebrow {
  margin-bottom: 20px;
}

.hero-copy h1 {
  max-width: 740px;
  margin-bottom: 0;
  font-size: clamp(64px, 7.2vw, 108px);
  line-height: 0.94;
}

.title-brand {
  position: relative;
  display: block;
  color: var(--color-text);
  text-shadow: 1px 0 0 var(--color-accent-dark);
}

.title-keyword {
  display: block;
  margin-top: 12px;
  color: var(--color-accent);
  font-size: 0.69em;
  letter-spacing: -0.025em;
  -webkit-text-stroke: var(--line-hairline) var(--color-accent);
  text-shadow:
    2px 2px 0 var(--color-bg),
    3px 3px 0 var(--color-accent-dark);
}

.hero-description {
  max-width: 548px;
  margin: 25px 0 0;
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.85;
}

.hero-description strong {
  color: var(--color-text);
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 27px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-chips {
  display: flex;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}

.hero-chips li {
  display: inline-flex;
  max-width: 100%;
  min-height: 27px;
  padding: 3px 12px;
  overflow: hidden;
  border: var(--line-hairline) solid var(--color-accent-medium);
  border-radius: var(--radius-chip);
  background: var(--color-accent-faint);
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 10px;
  align-items: center;
  letter-spacing: 0.06em;
}

.hero-chips li::before {
  width: 4px;
  height: 4px;
  margin-right: 8px;
  border-radius: var(--radius-chip);
  content: "";
  background: var(--color-success);
  flex-shrink: 0;
}

.machine-wrap {
  position: relative;
  z-index: 2;
  width: min(770px, 58vw);
  height: 640px;
  margin-left: -76px;
  align-self: center;
}

.machine-serial {
  position: absolute;
  top: 35px;
  right: 13px;
  color: var(--color-accent-dark);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: var(--tracking-mono);
  writing-mode: vertical-rl;
}

.machine-svg {
  width: 100%;
  height: 570px;
  overflow: visible;
  filter: drop-shadow(0 26px 24px var(--color-shadow));
}

.machine-frame,
.machine-line,
.gear-brass circle,
.gear-brass path,
.gear-brass line,
.gear-brass rect {
  fill: none;
  stroke: var(--color-accent);
}

.machine-frame {
  stroke-width: 1;
  opacity: 0.38;
}

.machine-frame-heavy {
  fill: var(--color-bg-soft);
  stroke: var(--color-border);
  stroke-width: 2;
}

.machine-line {
  stroke-width: 1;
  opacity: 0.55;
}

.machine-tick {
  stroke: var(--color-accent-dark);
  stroke-width: 1;
}

.spring-track {
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 4;
  stroke-linecap: square;
  opacity: 0.9;
}

.spring-shadow {
  fill: none;
  stroke: var(--color-accent-dark);
  stroke-width: 10;
  opacity: 0.16;
}

.spring-core {
  fill: var(--color-bg-panel-2);
  stroke: var(--color-accent);
  stroke-width: 2;
}

.hub-hole {
  fill: var(--color-bg);
  stroke: var(--color-accent-dark);
  stroke-width: 1;
}

.gear-brass circle,
.gear-brass path,
.gear-brass line,
.gear-brass rect {
  stroke-width: 2;
}

.gear-red circle,
.gear-red path,
.gear-red line,
.gear-red rect {
  fill: none;
  stroke: var(--color-error);
  stroke-width: 2;
}

.gear-fill {
  fill: var(--color-bg-panel);
  stroke: var(--color-border);
  stroke-width: 2;
}

.gear-label {
  fill: var(--color-text);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-anchor: middle;
}

.gear-label-red {
  fill: var(--color-error);
}

.micro-label {
  fill: var(--color-accent-dark);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.core-label {
  fill: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-anchor: middle;
}

.rivet {
  fill: var(--color-accent-dark);
  stroke: var(--color-accent);
  stroke-width: 1;
}

.spin-direct,
.spin-proxy,
.spin-reject {
  transform-box: fill-box;
  transform-origin: center;
}

.spin-direct {
  animation: gear-clockwise var(--motion-direct) linear infinite;
}

.spin-proxy {
  animation: gear-counter var(--motion-proxy) linear infinite;
}

.spin-reject {
  animation: gear-counter var(--motion-reject) linear infinite;
}

@keyframes gear-clockwise {
  to {
    transform: rotate(360deg);
  }
}

@keyframes gear-counter {
  to {
    transform: rotate(-360deg);
  }
}

.machine-plaque {
  position: absolute;
  right: 91px;
  bottom: 12px;
  width: 376px;
  height: 82px;
  border: var(--line-strong) solid var(--color-accent-dark);
  outline: var(--line-hairline) solid var(--color-accent);
  outline-offset: -7px;
  background:
    linear-gradient(90deg, var(--color-transparent), var(--color-highlight), var(--color-transparent)),
    var(--color-bg-panel-2);
  box-shadow: var(--shadow-panel);
  text-align: center;
}

.machine-plaque::before,
.machine-plaque::after {
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border: var(--line-hairline) solid var(--color-accent);
  border-radius: var(--radius-chip);
  content: "";
  background: var(--color-accent-dark);
  transform: translateY(-50%);
}

.machine-plaque::before {
  left: 16px;
}

.machine-plaque::after {
  right: 16px;
}

.plaque-kicker {
  display: block;
  margin-top: 14px;
  color: var(--color-accent-dark);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.3em;
}

.plaque-name {
  display: block;
  margin-top: 5px;
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-shadow: 1px 1px 0 var(--color-bg);
}

.facts-band {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  height: 92px;
  border-top: var(--line-hairline) solid var(--color-border);
  background: var(--color-bg-deep);
  box-shadow: inset 0 1px 0 var(--color-highlight);
}

.facts-inner {
  display: grid;
  width: 100%;
  max-width: calc(var(--page-width) + var(--gutter) * 2);
  height: 100%;
  margin: 0 auto;
  padding-inline: var(--gutter);
  grid-template-columns: 1.15fr repeat(3, 1fr);
  align-items: center;
}

.fact-intro {
  padding-left: 31px;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.7;
  letter-spacing: var(--tracking-mono);
}

.fact-intro strong {
  display: block;
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 500;
}

.fact {
  position: relative;
  display: flex;
  height: 48px;
  border-left: var(--line-hairline) solid var(--color-border);
  align-items: center;
  justify-content: center;
}

.fact::before {
  position: absolute;
  top: 0;
  left: -3px;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--color-accent);
  transform: rotate(45deg);
}

.fact-code {
  margin-right: 14px;
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 22px;
  letter-spacing: -0.04em;
}

.fact-copy {
  color: var(--color-text);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.fact-copy small {
  display: block;
  color: var(--color-text-muted);
  font-size: 8px;
  letter-spacing: var(--tracking-wide);
}

.preview-section-head {
  display: flex;
  margin-bottom: 38px;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.swatch {
  min-width: 0;
  border: var(--line-hairline) solid var(--color-border);
  background: var(--color-bg-panel);
}

.swatch-color {
  height: 96px;
  border-bottom: var(--line-hairline) solid var(--color-border);
}

.swatch-bg {
  background: var(--color-bg);
}

.swatch-panel {
  background: var(--color-bg-panel);
}

.swatch-panel-2 {
  background: var(--color-bg-panel-2);
}

.swatch-border {
  background: var(--color-border);
}

.swatch-accent {
  background: var(--color-accent);
}

.swatch-accent-dark {
  background: var(--color-accent-dark);
}

.swatch-text {
  background: var(--color-text);
}

.swatch-muted {
  background: var(--color-text-muted);
}

.swatch-success {
  background: var(--color-success);
}

.swatch-warning {
  background: var(--color-warning);
}

.swatch-error {
  background: var(--color-error);
}

.swatch-copy {
  padding: 13px;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 10px;
  overflow-wrap: anywhere;
}

.type-specimen {
  display: grid;
  gap: 24px;
}

.type-row {
  padding-bottom: 24px;
  border-bottom: var(--line-hairline) solid var(--color-border);
}

.type-display {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 900;
  line-height: 1;
}

.type-body {
  max-width: 780px;
  color: var(--color-text-muted);
  font-size: 17px;
}

.type-mono {
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: var(--tracking-mono);
}

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

@media (max-width: 1000px) {
  .hero-main {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 160px;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    padding-left: 0;
  }

  .machine-wrap {
    width: min(760px, 100%);
    height: 590px;
    margin: 0 auto;
  }

  .facts-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .fact-intro {
    display: none;
  }
}

@media (max-width: 760px) {
  .feature-index {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-index .tab-list {
    overflow-x: auto;
    border-right: 0;
    border-bottom: var(--line-hairline) solid var(--color-border);
    flex-direction: row;
  }

  .feature-index .tab-button {
    width: auto;
    min-width: max-content;
    min-height: 54px;
    padding: 10px 18px;
    border-right: var(--line-hairline) solid var(--color-border);
    border-bottom: 0;
  }

  .feature-index .tab-button::before {
    display: none;
  }

  .term-grid,
  .download-grid,
  .blog-grid,
  .preview-component-grid,
  .swatch-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .article-download-card {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .preview-hero {
    min-height: auto;
  }

  .preview-hero::before {
    inset: 14px 8px 142px;
  }

  .preview-hero::after {
    top: 14px;
    right: 22%;
  }

  .hero-main {
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 166px;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 15vw, 70px);
  }

  .hero-description {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.75;
  }

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

  .machine-wrap {
    width: 590px;
    max-width: none;
    height: 390px;
    margin-top: 20px;
    margin-left: calc(50% - 295px);
    overflow: hidden;
    transform: none;
  }

  .machine-svg {
    height: 420px;
  }

  .machine-serial {
    display: none;
  }

  .machine-plaque {
    right: 50%;
    bottom: 0;
    width: min(330px, calc(100vw - 42px));
    height: 72px;
    transform: translateX(50%);
  }

  .plaque-kicker {
    margin-top: 11px;
  }

  .plaque-name {
    font-size: 21px;
  }

  .facts-band {
    height: 142px;
  }

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

  .fact {
    height: 68px;
    padding: 6px;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .fact-code {
    margin: 0;
    font-size: 16px;
  }

  .fact-copy {
    font-size: 9px;
  }

  .fact-copy small {
    font-size: 7px;
  }

  .preview-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .download-card,
  .post-card {
    padding: 21px;
  }

  .dl-fab {
    right: 12px;
    bottom: 12px;
    max-width: calc(100vw - 24px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .spin-direct,
  .spin-proxy,
  .spin-reject {
    animation: none;
  }
}