/* ==========================================================================
   竞博 CN · 共享样式表 /assets/site.css
   工业图纸 × 产品目录：粗边框、硬投影、刻度线、低位留白
   ========================================================================== */

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd, ol, ul, pre { margin: 0; padding: 0; }

ul, ol { list-style: none; }

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

button, input, select, textarea { font: inherit; color: inherit; }

a { color: inherit; }

:root {
  --blue: #1B4F8A;
  --blue-deep: #123A66;
  --blue-ink: #0A1E33;
  --blue-tint: #DCE6F0;
  --silver: #C0C7D0;
  --silver-line: #8B949E;
  --paper: #F7F9FB;
  --white: #FFFFFF;
  --charcoal: #1C1F24;
  --orange: #E86A2B;
  --orange-soft: #F6A97E;
  --muted: #5A6B7D;

  --font-sans: "Source Han Sans SC", "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "Source Han Mono SC", "Sarasa Mono SC", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --shell: 1360px;
  --gut: 32px;
  --hard: 8px 8px 0 rgba(10, 30, 51, .16);
  --ease: cubic-bezier(.2, .7, .3, 1);

  --bar-h: 64px;
  --bar-h-compact: 44px;
}

body {
  background-color: var(--paper);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

#main-content { scroll-margin-top: 96px; }

.skip-link {
  position: fixed;
  left: 14px;
  top: -96px;
  z-index: 300;
  padding: 13px 20px;
  background-color: var(--orange);
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  text-decoration: none;
  transition: top .16s linear;
}
.skip-link:focus { top: 14px; }

.shell {
  width: min(100% - (var(--gut) * 2), var(--shell));
  margin-inline: auto;
}

/* ---------- 章节与色彩分区 ---------- */

.section { padding-block: clamp(72px, 9vw, 120px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--ink { background-color: var(--blue-ink); color: var(--white); }
.section--blue { background-color: var(--blue); color: var(--white); }
.section--tint { background-color: var(--blue-tint); color: var(--charcoal); }
.section--paper { background-color: var(--paper); }
.section--ink a, .section--blue a { color: inherit; }
.section--ink .label, .section--blue .label { color: var(--silver); }
.section--ink :focus-visible,
.section--blue :focus-visible { outline-color: var(--orange-soft); }

/* ---------- 排版 ---------- */

.display {
  font-size: clamp(44px, 8.4vw, 128px);
  font-weight: 200;
  line-height: .92;
  letter-spacing: -.02em;
}
.display--heavy { font-weight: 900; letter-spacing: -.03em; }

.h-sec {
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.01em;
}
.h-sub {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.3;
}
.h-mini { font-size: 17px; font-weight: 700; line-height: 1.4; }

.lede {
  max-width: 62ch;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.7;
  color: #2A2F36;
}
.section--ink .lede,
.section--blue .lede { color: #D8E2EE; }

.prose { font-size: 16.5px; line-height: 1.75; }
.prose > * + * { margin-top: 1.05em; }
.prose p { max-width: 68ch; }
.prose strong { font-weight: 700; }

.label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: .01em;
}

.num-lg {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
}

/* ---------- 图纸语言：分割线与刻度 ---------- */

.rule {
  height: 0;
  border: 0;
  border-top: 2px solid var(--silver);
}
.rule--strong { border-top-color: var(--charcoal); }
.rule--accent { border-top-color: var(--orange); }
.section--ink .rule,
.section--blue .rule { border-top-color: rgba(192, 199, 208, .3); }

.gauge {
  height: 18px;
  border-bottom: 2px solid var(--silver-line);
  background-image: repeating-linear-gradient(
    to right,
    var(--silver-line) 0 1px,
    transparent 1px 12px
  );
}

/* ---------- 命令栏 ---------- */

.cmd-bar {
  position: sticky;
  top: 0;
  z-index: 90;
  background-color: var(--blue);
  color: var(--white);
  border-bottom: 2px solid var(--blue-ink);
  box-shadow: 0 2px 0 rgba(10, 30, 51, .35);
}

.cmd-bar__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(100% - 48px, 1440px);
  min-height: var(--bar-h);
  margin-inline: auto;
  transition: min-height .18s linear;
}
.cmd-bar[data-compact] .cmd-bar__inner { min-height: var(--bar-h-compact); }

.cmd-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  padding-right: 18px;
  border-right: 2px solid rgba(192, 199, 208, .3);
  color: var(--white);
  text-decoration: none;
}
.cmd-brand__mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background-color: var(--orange);
  color: var(--charcoal);
  border: 2px solid var(--blue-ink);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
}
.cmd-brand__text { display: flex; flex-direction: column; gap: 2px; }
.cmd-brand__name {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: .04em;
}
.cmd-brand__line {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: .1em;
  color: var(--silver);
}
.cmd-bar[data-compact] .cmd-brand__line { display: none; }

.cmd-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-inline-start: auto;
}
.cmd-nav__list {
  display: flex;
  align-items: center;
  gap: 0;
}
.cmd-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .86);
  text-decoration: none;
  transition: background-color .14s linear, color .14s linear;
}
.cmd-nav__link:hover {
  background-color: rgba(255, 255, 255, .1);
  color: var(--white);
}
.cmd-nav__link[aria-current="page"] {
  background-color: rgba(10, 30, 51, .38);
  color: var(--white);
  box-shadow: inset 0 -3px 0 var(--orange);
}
.cmd-nav__idx {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .12em;
  color: var(--silver);
  opacity: .75;
}
.cmd-nav__cta-item { display: none; }

.cmd-nav__utility {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 8px;
  padding-left: 12px;
  border-left: 2px solid rgba(192, 199, 208, .3);
}
.cmd-nav__util {
  padding: 8px 9px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .1em;
  color: var(--silver);
  text-decoration: none;
  transition: color .14s linear, background-color .14s linear;
}
.cmd-nav__util:hover {
  color: var(--white);
  background-color: rgba(255, 255, 255, .08);
}

.cmd-readout {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .12em;
  color: var(--silver);
  white-space: nowrap;
}
.cmd-readout__dot {
  width: 7px;
  height: 7px;
  background-color: var(--orange);
  animation: cmd-pulse 2.4s linear infinite;
}
@keyframes cmd-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.cmd-cta {
  flex: 0 0 auto;
  padding: 10px 16px;
  font-size: 12.5px;
  letter-spacing: .06em;
  box-shadow: none;
}
.cmd-cta:hover { box-shadow: 3px 3px 0 var(--blue-ink); }
.cmd-bar[data-compact] .cmd-cta { padding: 8px 13px; font-size: 12px; }

.cmd-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  margin-left: auto;
  padding: 9px 12px;
  background-color: transparent;
  color: var(--white);
  border: 2px solid rgba(192, 199, 208, .55);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .12em;
  cursor: pointer;
  transition: background-color .14s linear, border-color .14s linear;
}
.cmd-toggle:hover { background-color: rgba(255, 255, 255, .1); }
.cmd-toggle__bars { display: grid; gap: 4px; width: 16px; }
.cmd-toggle__bars i {
  display: block;
  height: 2px;
  background-color: var(--orange);
  transition: transform .18s linear;
}
.cmd-toggle[aria-expanded="true"] .cmd-toggle__bars i:first-child { transform: translateY(3px) rotate(45deg); }
.cmd-toggle[aria-expanded="true"] .cmd-toggle__bars i:last-child { transform: translateY(-3px) rotate(-45deg); }

.cmd-bar__progress {
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--orange);
  transition: width .12s linear;
}

/* ---------- 按钮 ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 2px solid var(--charcoal);
  background-color: var(--white);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .06em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .14s linear, box-shadow .14s linear, background-color .14s linear, color .14s linear, border-color .14s linear;
}
.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--charcoal);
}
.btn:active { transform: none; box-shadow: none; }
.btn--accent { background-color: var(--orange); color: var(--charcoal); }
.btn--dark {
  background-color: var(--blue-ink);
  color: var(--white);
  border-color: var(--blue-ink);
}
.btn--dark:hover { box-shadow: 4px 4px 0 var(--orange); }
.btn--ghost {
  background-color: transparent;
  color: var(--white);
  border-color: var(--silver);
}
.btn--ghost:hover {
  background-color: rgba(255, 255, 255, .1);
  box-shadow: 4px 4px 0 rgba(192, 199, 208, .3);
}

/* ---------- 面包屑 ---------- */

.crumbs { padding-top: 20px; }
.crumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.crumbs__list > li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.crumbs__list > li + li::before {
  content: "/";
  color: var(--silver-line);
}
.crumbs__link { color: var(--blue); text-decoration: none; }
.crumbs__link:hover { text-decoration: underline; text-underline-offset: 4px; }
.crumbs__list [aria-current="page"] { color: var(--charcoal); }

/* ---------- 网格 ---------- */

.grid { display: grid; gap: clamp(20px, 2.4vw, 32px); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--aside {
  grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr);
  align-items: start;
}

/* ---------- 展签卡片 ---------- */

.plate {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(20px, 2.4vw, 30px);
  background-color: var(--white);
  border: 2px solid var(--charcoal);
  box-shadow: var(--hard);
}
.plate__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.plate__idx {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
}
.plate__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plate--ink {
  background-color: var(--blue-ink);
  color: var(--white);
  border-color: var(--blue-ink);
  box-shadow: 8px 8px 0 var(--silver);
}
.plate--ink .plate__idx { color: var(--orange-soft); }
.plate--tint { background-color: var(--blue-tint); box-shadow: 8px 8px 0 rgba(27, 79, 138, .22); }

.tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border: 2px solid currentColor;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.tag--data { color: var(--blue); background-color: var(--blue-tint); }
.tag--accent { color: var(--charcoal); background-color: var(--orange-soft); }
.tag--quiet { color: var(--muted); background-color: transparent; }

/* ---------- 图片容器（页面阶段放置图片） ---------- */

.img-frame {
  position: relative;
  display: block;
  overflow: hidden;
  border: 2px solid var(--charcoal);
  background-color: var(--blue-deep);
  background-image: repeating-linear-gradient(
    45deg,
    rgba(192, 199, 208, .16) 0 2px,
    transparent 2px 12px
  );
}
.img-frame__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-frame--16x9 { aspect-ratio: 16 / 9; }
.img-frame--4x3 { aspect-ratio: 4 / 3; }
.img-frame--1x1 { aspect-ratio: 1 / 1; }
.img-frame--3x4 { aspect-ratio: 3 / 4; }
.img-frame__tag {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 8px 12px;
  background-color: var(--orange);
  color: var(--charcoal);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ---------- 分段切换器 ---------- */

.seg {
  display: inline-flex;
  flex-wrap: wrap;
  border: 2px solid var(--charcoal);
  background-color: var(--white);
}
.seg__btn {
  appearance: none;
  border: 0;
  border-right: 2px solid var(--charcoal);
  background-color: transparent;
  color: var(--charcoal);
  padding: 12px 20px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .06em;
  cursor: pointer;
  transition: background-color .16s linear, color .16s linear, box-shadow .16s linear;
}
.seg__btn:last-child { border-right: 0; }
.seg__btn:hover { background-color: var(--blue-tint); }
.seg__btn[aria-selected="true"] {
  background-color: var(--blue);
  color: var(--white);
  box-shadow: inset 0 -4px 0 var(--orange);
}
.seg-panel { padding-top: clamp(24px, 3vw, 40px); }
.seg-panel[hidden] { display: none; }
.seg-panel:focus-visible { outline: 3px solid var(--orange); outline-offset: 6px; }

/* ---------- 参数表 ---------- */

.spec-wrap {
  overflow-x: auto;
  border: 2px solid var(--charcoal);
  background-color: var(--white);
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}
.spec-table caption {
  padding: 14px 16px;
  text-align: left;
  background-color: var(--paper);
  border-bottom: 2px solid var(--charcoal);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--muted);
}
.spec-table th {
  padding: 12px 14px;
  text-align: left;
  white-space: nowrap;
  background-color: var(--blue-deep);
  color: var(--white);
  border: 1px solid var(--blue-deep);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.spec-table td {
  padding: 11px 14px;
  border: 1px solid var(--silver);
  color: var(--charcoal);
  white-space: nowrap;
}
.spec-table tbody tr:nth-child(even) { background-color: var(--blue-tint); }
.spec-table tbody tr:hover {
  background-color: var(--white);
  box-shadow: inset 4px 0 0 var(--orange);
}

/* ---------- 显现 ---------- */

[data-reveal].is-armed {
  opacity: 0;
  transform: translateY(18px);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  transition: opacity .42s var(--ease), transform .42s var(--ease);
}

/* ---------- 页脚 ---------- */

.site-foot {
  position: relative;
  padding-top: clamp(48px, 6vw, 80px);
  background-color: var(--blue-ink);
  color: var(--silver);
  border-top: 6px solid var(--blue);
  font-size: 14px;
  line-height: 1.7;
}
.site-foot :focus-visible { outline-color: var(--orange-soft); }

.site-foot__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.7fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  width: min(100% - (var(--gut) * 2), var(--shell));
  margin-inline: auto;
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 2px solid rgba(192, 199, 208, .22);
}

.site-foot__logo {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: .04em;
  color: var(--white);
}
.site-foot__line {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange-soft);
}
.site-foot__signoff {
  margin-top: 20px;
  max-width: 30ch;
  font-size: 13px;
  line-height: 1.75;
  color: var(--silver-line);
}

.site-foot__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 26px 28px;
}
.site-foot__title {
  padding-bottom: 10px;
  margin-bottom: 14px;
  border-bottom: 2px solid rgba(192, 199, 208, .28);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
}
.site-foot__list { display: flex; flex-direction: column; gap: 10px; }
.site-foot__link {
  color: var(--silver);
  font-size: 14px;
  text-decoration: none;
  transition: color .14s linear;
}
.site-foot__link:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-foot__phone {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--white);
}
.site-foot__mail {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--orange-soft);
  word-break: break-all;
}
.site-foot__addr {
  margin-top: 12px;
  font-size: 13px;
  color: var(--silver);
}
.site-foot__note {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.75;
  color: var(--silver-line);
}

.site-foot__base {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 24px;
  width: min(100% - (var(--gut) * 2), var(--shell));
  margin-inline: auto;
  padding-block: 20px 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--silver-line);
}
.site-foot__copy { margin: 0; }
.site-foot__icp { margin: 0; color: var(--silver); }
.site-foot__top {
  appearance: none;
  margin-left: auto;
  padding: 9px 14px;
  border: 2px solid var(--silver);
  background-color: transparent;
  color: var(--silver);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 1;
  cursor: pointer;
  transition: background-color .14s linear, color .14s linear, border-color .14s linear;
}
.site-foot__top:hover {
  background-color: var(--orange);
  border-color: var(--orange);
  color: var(--charcoal);
}

/* ---------- 断点 ---------- */

@media (max-width: 1280px) {
  .cmd-nav__utility { display: none; }
}

@media (max-width: 1140px) {
  .cmd-bar__inner { width: min(100% - 32px, 1440px); gap: 12px; }
  .cmd-nav__idx { display: none; }
  .cmd-readout { display: none; }
}

@media (max-width: 980px) {
  .cmd-bar__inner { justify-content: space-between; }
  .cmd-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: block;
    margin: 0;
    padding: 8px 0 20px;
    background-color: var(--blue-ink);
    border-bottom: 3px solid var(--orange);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .18s linear, transform .18s linear, visibility .18s linear;
  }
  .cmd-nav[data-open] {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .cmd-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .cmd-nav__link {
    justify-content: space-between;
    padding: 15px 22px;
    font-size: 15px;
    border-bottom: 1px solid rgba(192, 199, 208, .14);
  }
  .cmd-nav__link:hover { background-color: rgba(27, 79, 138, .45); }
  .cmd-nav__link[aria-current="page"] {
    background-color: rgba(27, 79, 138, .55);
    box-shadow: inset 4px 0 0 var(--orange);
  }
  .cmd-nav__idx { display: inline; font-size: 10px; }
  .cmd-nav__cta-item { display: block; padding: 18px 22px 4px; }
  .cmd-nav__cta-item .btn { width: 100%; }
  .cmd-nav__utility {
    display: flex;
    margin: 14px 22px 0;
    padding: 14px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(192, 199, 208, .2);
  }
  .cmd-toggle { display: inline-flex; }
  .cmd-cta { display: none; }
}

@media (max-width: 1024px) {
  .site-foot__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  }
  .site-foot__contact { grid-column: 1 / -1; }
}

@media (max-width: 1000px) {
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--aside { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 720px) {
  :root { --gut: 20px; --shell: 100%; }
  body { font-size: 16px; }
  .grid--2, .grid--3 { grid-template-columns: minmax(0, 1fr); }
  .seg { width: 100%; flex-wrap: nowrap; overflow-x: auto; }
  .seg__btn { flex: 0 0 auto; }
  .site-foot__inner { grid-template-columns: minmax(0, 1fr); }
  .site-foot__brand { padding-bottom: 8px; }
}

@media (max-width: 560px) {
  .cmd-brand__line { display: none; }
  .cmd-brand { padding-right: 12px; }
  .cmd-toggle__text { display: none; }
  .site-foot__top { margin-left: 0; }
  .spec-table { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal].is-armed { opacity: 1; transform: none; }
}
