/* Стили раздела «Калибровка» (вынесено из nc-calibration.js для читаемости).
   Классы .ncc-* скоупятся контейнером .ncc — глобального влияния нет. */
.ncc {
  --l: var(--card-line);
  --ink: var(--ink);
  --mut: var(--grey);
  --acc: var(--accent);
}
.ncc * {
  box-sizing: border-box;
}
.ncc-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.4vw, 24px);
}
.ncc-caldone {
  max-width: 620px;
  margin: 2px 0 16px;
  padding: 14px 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: color-mix(in srgb, #15b36b 8%, transparent);
  border: 1px solid color-mix(in srgb, #15b36b 28%, transparent);
}
.ncc-caldone-ic {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #15b36b;
  color: #fff;
}
.ncc-caldone-ic svg {
  width: 20px;
  height: 20px;
}
.ncc-caldone-tx {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ncc-caldone-tx b {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.ncc-caldone-tx span {
  font-size: 12.5px;
  color: var(--grey);
}
.ncc-caldone-btn {
  flex: none;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .ncc-caldone {
    flex-wrap: wrap;
  }
  .ncc-caldone-btn {
    width: 100%;
  }
}
.ncc-nav {
  padding: 13px 16px 12px;
  margin: 0 0 14px;
  border-radius: 14px;
  background: var(--hover);
  border: 1px solid var(--card-line);
  overflow-x: auto;
  scrollbar-width: none;
}
.ncc-nav::-webkit-scrollbar {
  display: none;
}
.ncc-road {
  position: relative;
  display: flex;
  justify-content: space-between;
  min-width: 600px;
  padding: 0 0 32px;
}
.ncc-road:before {
  content: '';
  position: absolute;
  left: 17px;
  right: 17px;
  top: 17px;
  border-top: 1px dashed var(--line);
  z-index: 0;
}
.ncc-rprog {
  position: absolute;
  left: 17px;
  top: 17px;
  height: 0;
  border-top: 1.5px solid #15b36b;
  z-index: 0;
  transition: width 0.35s;
}
.ncc-rnode {
  position: relative;
  z-index: 1;
  width: 34px;
  background: none;
  border: 0;
  font: inherit;
  padding: 0;
  cursor: default;
  color: var(--grey);
  display: block;
}
.ncc-rdot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  background: color-mix(in srgb, var(--grey) 12%, var(--card-bg, #fff));
  transition:
    transform 0.2s,
    background 0.25s,
    color 0.25s;
}
.ncc-rdot svg,
.ncc-rdot .ncc-glyph {
  width: 16px;
  height: 16px;
  filter: none;
  color: inherit;
  opacity: 1;
}
.ncc-rnode.done .ncc-rdot {
  background: color-mix(in srgb, #15b36b 7%, var(--card-bg, #fff));
  box-shadow: inset 0 0 0 1.5px #15b36b;
  color: #15b36b;
}
.ncc-rnode.cur .ncc-rdot {
  background: color-mix(in srgb, var(--accent) 14%, var(--card-bg, #fff));
  color: var(--accent);
}
.ncc-rnode.done.cur .ncc-rdot {
  background: color-mix(in srgb, #15b36b 7%, var(--card-bg, #fff));
  box-shadow: inset 0 0 0 1.5px #15b36b;
  color: #15b36b;
}
.ncc-rlbl {
  position: absolute;
  top: calc(100% + 7px);
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 86px;
  font-size: 10.5px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--grey);
  text-align: center;
  letter-spacing: -0.01em;
}
.ncc-rprog + .ncc-rnode .ncc-rlbl {
  left: 0;
  transform: none;
  text-align: left;
}
.ncc-rnode:last-child .ncc-rlbl {
  left: auto;
  right: 0;
  transform: none;
  text-align: right;
}
.ncc-rnode.cur .ncc-rlbl {
  color: var(--ink);
  font-weight: 700;
}
.ncc-rnode.go {
  cursor: pointer;
}
.ncc-rnode.go:hover .ncc-rdot {
  transform: translateY(-2px);
  color: var(--accent);
}
.ncc-rnode.done.go:hover .ncc-rdot {
  filter: brightness(1.05);
  color: #15b36b;
}
.ncc-rnode.go:focus-visible {
  outline: 0;
}
.ncc-rnode.go:focus-visible .ncc-rdot {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.ncc-body {
  text-align: left;
  padding: clamp(4px, 1.5vw, 14px) 0;
}
.ncc-sum-body {
  padding-top: 0;
}
.ncc-sum-body .ncc-mr {
  margin-top: 2px;
}
.ncc-cue,
.ncc-big {
  text-align: center;
}
.ncc-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--acc);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ncc-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 750;
  color: var(--ink);
  margin: 0 0 14px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.ncc-desc {
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--grey);
  max-width: 640px;
  margin: 0 0 16px;
  text-wrap: pretty;
}
.ncc-nb-tx span,
.ncc-mr-hint,
.ncc-mr-sub,
.ncx-desc,
.ncc-cmd-card .cc-script,
.ncc-mr-sec p {
  text-wrap: pretty;
}
.ncc-tech {
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--grey);
  margin: 14px 0 16px;
}
.ncc-tech b {
  color: var(--ink);
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}
.ncc-ul {
  list-style: none;
  counter-reset: nccli;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin: 4px 0 18px;
  padding: 0;
  text-align: left;
}
.ncc-ul li {
  position: relative;
  background: var(--hover);
  border: 1px solid var(--card-line);
  border-radius: 13px;
  padding: 13px 15px 13px 47px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--grey);
  align-content: center;
  min-height: 56px;
  text-wrap: pretty;
}
.ncc-ul li b {
  color: var(--ink);
}
.ncc-ul li:before {
  counter-increment: nccli;
  content: counter(nccli);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  color: var(--accent);
  font-weight: 700;
  font-size: 11.5px;
}
.ncc-illo-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 8px auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ncc-illo-wrap > div:first-child {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(
    120% 120% at 32% 24%,
    color-mix(in srgb, #4a6fc4 22%, transparent),
    color-mix(in srgb, #2f4f7d 12%, transparent) 62%,
    transparent 74%
  );
  box-shadow:
    inset 0 2px 20px -6px color-mix(in srgb, #4a6fc4 45%, transparent),
    0 22px 46px -26px rgba(30, 50, 110, 0.55);
}
.ncc-illo-wrap > div:first-child:before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1.5px solid color-mix(in srgb, #4a6fc4 26%, transparent);
}
.ncc-illo-wrap > div:first-child:after {
  content: '';
  position: absolute;
  top: 20px;
  right: 30px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #37e0c8;
  box-shadow: 0 0 10px 2px rgba(55, 224, 200, 0.7);
  animation: nccLed 2.4s ease-in-out infinite;
}
@keyframes nccLed {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}
.ncc-glyph {
  width: 62px;
  height: 62px;
  color: #3a5db0;
  filter: drop-shadow(0 4px 10px rgba(47, 79, 125, 0.25));
}
[data-theme='dark'] .ncc-glyph {
  color: #9fbcff;
}
.ncc-focus {
  border: 2px dashed var(--line);
  border-radius: 16px;
  padding: 24px 16px;
  margin: 18px 0;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ncc-focus .ncc-cue {
  margin: 4px 0 0;
}
.ncc-mv {
  position: relative;
  perspective: 360px;
  width: 120px;
  height: 104px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.ncc-mv .head {
  width: 92px;
  height: 92px;
  color: var(--ink);
  transform-origin: 50% 62%;
}
@keyframes nccMvL {
  0%,
  100% {
    transform: rotateY(0);
  }
  35%,
  65% {
    transform: rotateY(-42deg) translateX(-10px);
  }
}
@keyframes nccMvR {
  0%,
  100% {
    transform: rotateY(0);
  }
  35%,
  65% {
    transform: rotateY(42deg) translateX(10px);
  }
}
@keyframes nccMvF {
  0%,
  100% {
    transform: rotateX(0);
  }
  35%,
  65% {
    transform: rotateX(-28deg) translateY(5px);
  }
}
@keyframes nccMvB {
  0%,
  100% {
    transform: rotateX(0);
  }
  35%,
  65% {
    transform: rotateX(26deg) translateY(-4px);
  }
}
.ncc-mvarrow {
  position: absolute;
  width: 28px;
  height: 28px;
  color: var(--accent);
  opacity: 0;
  pointer-events: none;
}
.ncc-mvarrow.left {
  left: -16px;
  top: 36px;
  transform: scaleX(-1);
}
.ncc-mvarrow.right {
  right: -16px;
  top: 36px;
}
.ncc-mvarrow.forward {
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%) rotate(90deg);
}
.ncc-mvarrow.back {
  left: 50%;
  top: -16px;
  transform: translateX(-50%) rotate(-90deg);
}
@keyframes nccMvA {
  0%,
  90%,
  100% {
    opacity: 0;
  }
  12%,
  70% {
    opacity: 1;
  }
}
.ncc-dotfix {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--acc);
  margin: 10px auto;
}
.ncc-breathe {
  animation: nccBreathe 8s ease-in-out infinite;
}
@keyframes nccBreathe {
  0%,
  100% {
    transform: scale(0.92);
  }
  50% {
    transform: scale(1.06);
  }
}
.ncc-cue {
  font-size: 16px;
  font-weight: 650;
  color: var(--ink);
  margin: 6px 0 2px;
  min-height: 22px;
}
.ncc-count {
  font-variant-numeric: tabular-nums;
  font-weight: 750;
  font-size: 34px;
  color: var(--ink);
}
.ncc-rec {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: clamp(280px, 40vh, 380px);
  gap: 6px;
}
.ncc-rec:not(.has-viz) .ncc-vbar {
  background: var(--hover);
  border-color: var(--card-line);
  box-shadow: none;
  color: var(--ink);
  text-shadow: none;
}
.ncc-rec:not(.has-viz) .ncc-vbar-prog,
.ncc-rec:not(.has-viz) .ncc-vbar-cue {
  color: var(--grey);
}
.ncc-rec-prog {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--grey);
  text-transform: uppercase;
  min-height: 16px;
}
.ncc-rec .ncc-big {
  font-size: clamp(28px, 4.5vw, 40px);
  letter-spacing: -0.03em;
  margin: 4px 0;
}
.ncc-rec .ncc-cue {
  font-size: 15px;
  color: var(--grey);
  font-weight: 500;
  max-width: 400px;
}
.ncc-rec .ncc-count {
  font-size: clamp(64px, 11vw, 104px);
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 8px 0 2px;
}
.ncc-rec.has-viz {
  min-height: auto;
  gap: 0;
}
.ncc-viz {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  min-height: clamp(260px, 42vh, 440px);
  border-radius: 20px;
  overflow: hidden;
  background: #0a1018;
  box-shadow: 0 20px 60px -30px rgba(10, 16, 24, 0.8);
}
.ncc-viz canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
  z-index: 0;
}
.ncc-rec-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  padding: 16px;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
  background: linear-gradient(
    to bottom,
    rgba(6, 10, 16, 0.42),
    transparent 26%,
    transparent 62%,
    rgba(6, 10, 16, 0.5)
  );
}
.ncc-vbar-wrap {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: calc(100% - 28px);
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}
.ncc-vbar {
  width: 100%;
  padding: 13px 20px 15px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.13);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  backdrop-filter: blur(20px) saturate(170%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 34px -14px rgba(0, 0, 0, 0.55);
  text-align: center;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}
.ncc-vbar-prog {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  min-height: 14px;
}
.ncc-vbar-cmd {
  font-size: 22px;
  font-weight: 750;
  line-height: 1.15;
  margin: 3px 0 2px;
  letter-spacing: -0.01em;
}
.ncc-vbar-cue {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.35;
}
.ncc-vbar-count {
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(10, 16, 24, 0.45);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}
.ncc-vbar-count:empty {
  display: none;
}
.ncc-rec:not(.has-viz) .ncc-vbar-wrap {
  position: static;
  transform: none;
  width: auto;
  max-width: 520px;
  margin: 0 auto 6px;
}
.ncc-rec:not(.has-viz) .ncc-vbar-count {
  background: var(--hover);
  color: var(--grey);
}
.ncc-viz .ncc-rec-overlay .ncc-big {
  color: #fff;
}
.ncc-viz .ncc-rec-overlay .ncc-cue {
  color: rgba(255, 255, 255, 0.86);
}
.ncc-viz .ncc-rec-overlay .ncc-count {
  color: #fff;
}
.ncc-viz .ncc-rec-overlay .ncc-rec-prog {
  color: rgba(255, 255, 255, 0.78);
}
.ncc-rec.has-viz #nccMiAct {
  margin-top: 14px;
  text-align: center;
}
.ncc-stim {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 14px auto;
  background: radial-gradient(circle at 40% 35%, #5aa0ff, #2f6fe0);
  box-shadow: 0 8px 30px -6px rgba(47, 111, 224, 0.7);
  opacity: 0;
  transform: scale(0.6);
  transition:
    opacity 0.12s,
    transform 0.18s;
}
.ncc-stim.on {
  opacity: 1;
  transform: scale(1);
}
.ncc-big {
  font-size: 30px;
  font-weight: 750;
  color: var(--ink);
  margin: 10px 0;
}
.ncc-sqi {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 4px 0 6px;
  text-align: left;
}
.ncc-ul:has(li:nth-child(odd):last-child) li:first-child {
  grid-column: span 2;
}
.ncc-checks:has(> :nth-child(odd):last-child) > :first-child {
  grid-column: span 2;
}
.ncc-sqi:has(> :nth-child(odd):last-child) > :first-child {
  grid-column: span 2;
}
@media (max-width: 560px) {
  .ncc-ul,
  .ncc-checks,
  .ncc-sqi {
    grid-template-columns: 1fr;
  }
  .ncc-ul li:first-child,
  .ncc-checks > :first-child,
  .ncc-sqi > :first-child {
    grid-column: auto;
  }
}
@media (min-width: 1300px) {
  .ncc-ul,
  .ncc-checks,
  .ncc-sqi {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .ncc-ul li:first-child,
  .ncc-ul li:last-child,
  .ncc-checks > :first-child,
  .ncc-checks > :last-child,
  .ncc-sqi > :first-child,
  .ncc-sqi > :last-child {
    grid-column: auto;
    grid-row: auto;
  }
  .ncc-ul:has(li:nth-child(4n + 1):last-child) li:first-child {
    grid-column: span 2;
    grid-row: span 2;
    font-size: 15.5px;
    line-height: 1.6;
    padding: 22px 26px 22px 64px;
    background: color-mix(in srgb, var(--accent) 6%, var(--hover));
    border-color: color-mix(in srgb, var(--accent) 16%, var(--card-line));
    color: var(--ink);
  }
  .ncc-ul:has(li:nth-child(4n + 1):last-child) li:first-child:before {
    left: 22px;
    width: 28px;
    height: 28px;
    font-size: 13px;
    background: color-mix(in srgb, var(--accent) 14%, transparent);
  }
  .ncc-checks:has(> :nth-child(4n + 1):last-child) > :first-child {
    grid-column: span 2;
    grid-row: span 2;
  }
  .ncc-sqi:has(> :nth-child(4n + 1):last-child) > :first-child {
    grid-column: span 2;
    grid-row: span 2;
  }
  .ncc-ul:has(li:nth-child(4n + 3):last-child) li:first-child {
    grid-column: span 2;
  }
  .ncc-checks:has(> :nth-child(4n + 3):last-child) > :first-child {
    grid-column: span 2;
  }
  .ncc-sqi:has(> :nth-child(4n + 3):last-child) > :first-child {
    grid-column: span 2;
  }
  .ncc-ul:has(li:nth-child(4n + 2):last-child) li:nth-child(1) {
    grid-column: 1/3;
    grid-row: 1;
  }
  .ncc-ul:has(li:nth-child(4n + 2):last-child) li:nth-child(2) {
    grid-column: 1/3;
    grid-row: 2;
  }
  .ncc-checks:has(> :nth-child(4n + 2):last-child) > :first-child {
    grid-column: span 2;
  }
  .ncc-checks:has(> :nth-child(4n + 2):last-child) > :last-child {
    grid-column: span 2;
  }
  .ncc-sqi:has(> :nth-child(4n + 2):last-child) > :first-child {
    grid-column: span 2;
  }
  .ncc-sqi:has(> :nth-child(4n + 2):last-child) > :last-child {
    grid-column: span 2;
  }
}
.ncc-hsmap {
  position: relative;
  width: min(540px, 100%);
  margin: 2px auto 6px;
}
.ncc-hsmap img {
  display: block;
  width: 100%;
  height: auto;
}
html.dark .ncc-hsmap {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 18px;
}
.ncc-el {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, #5d6b78 72%, transparent);
  color: #fff;
  box-shadow:
    0 4px 14px -4px rgba(0, 0, 0, 0.55),
    inset 0 0 0 2px rgba(255, 255, 255, 0.3);
  transition: background 0.4s;
  line-height: 1.05;
  text-align: center;
}
.ncc-el b {
  font-size: 14.5px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}
.ncc-el i {
  font-style: normal;
  font-size: 9.5px;
  font-weight: 650;
  opacity: 0.92;
  letter-spacing: 0.02em;
}
@media (max-width: 560px) {
  .ncc-el {
    width: 38px;
    height: 38px;
  }
  .ncc-el b {
    font-size: 12.5px;
  }
  .ncc-el i {
    font-size: 8.5px;
  }
}
.ncc-sqi .row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ncc-sqi .nm {
  width: 32px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
}
.ncc-sqi .bar {
  flex: 1;
  height: 9px;
  border-radius: 999px;
  background: var(--hover);
  overflow: hidden;
}
.ncc-sqi .bar > i {
  display: block;
  height: 100%;
  border-radius: 999px;
  transition:
    width 0.3s,
    background 0.3s;
}
.ncc-sqi .v {
  width: 30px;
  text-align: right;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--ink);
}
.ncc-sqi .row.crit .nm {
  color: var(--acc);
}
.ncc-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.ncc-navrow {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 520px;
  margin: 22px auto 0;
}
.ncc-navrow .sp {
  flex: 1;
}
.ncc-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font: inherit;
  font-weight: 650;
  font-size: 14px;
  border: 0;
  border-radius: 13px;
  padding: 12px 22px;
  cursor: pointer;
  background: var(--acc);
  color: #fff;
  box-shadow: 0 6px 18px -8px color-mix(in srgb, var(--accent) 80%, transparent);
  transition:
    filter 0.15s,
    opacity 0.15s,
    transform 0.12s,
    box-shadow 0.15s;
}
.ncc-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}
.ncc-btn:active {
  transform: translateY(0);
}
.ncc-btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
  box-shadow: none;
}
.ncc-btn.subtle {
  background: transparent;
  color: var(--grey);
  border: 0;
  padding: 12px 14px;
  box-shadow: none;
}
.ncc-btn:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  filter: none;
  transform: none;
  box-shadow: none;
}
.ncc-btn svg {
  width: 17px;
  height: 17px;
  flex: none;
}
.ncc-btn.ic-l {
  padding-left: 18px;
}
.ncc-btn.ic-r {
  padding-right: 18px;
}
.ncc-note {
  font-size: 12.5px;
  color: var(--grey);
  margin-top: 12px;
  line-height: 1.5;
}
.ncc-warn {
  color: #c9791f;
  font-weight: 600;
}
.ncc-ok {
  color: #15b36b;
  font-weight: 600;
}
.ncc-bad {
  color: #e0632a;
  font-weight: 600;
}
.ncc-erd {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 460px;
  margin: 14px auto 6px;
}
.ncc-erd-bar {
  flex: 1;
  height: 16px;
  border-radius: 999px;
  background: var(--hover);
  overflow: hidden;
}
.ncc-erd-bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: #e0632a;
  transition:
    width 0.35s ease,
    background 0.35s;
}
.ncc-erd-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  min-width: 78px;
  text-align: right;
}
.ncc-chips {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 460px;
  margin: 12px auto 0;
  text-align: left;
}
.ncc-chip {
  appearance: none;
  text-align: left;
  border: 1px solid var(--card-line);
  background: color-mix(in srgb, var(--bg-fade) 80%, transparent);
  color: var(--ink);
  border-radius: 14px;
  padding: 11px 14px;
  font-size: 13.5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.ncc-chip:disabled {
  opacity: 0.5;
  cursor: default;
}
.ncc-chip.best {
  border-color: #15b36b;
  background: rgba(21, 179, 107, 0.1);
}
.ncc-chip .sc {
  font-weight: 700;
  color: #15b36b;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.ncc-mi-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 2px 0 16px;
  font-size: 12.5px;
  color: var(--grey);
}
.ncc-mi-flow .step {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 11px;
  background: var(--hover);
  border: 1px solid var(--card-line);
  font-weight: 600;
  color: var(--ink);
}
.ncc-mi-flow .step i {
  font-style: normal;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--accent);
  font-size: 10.5px;
  font-weight: 700;
}
.ncc-mi-flow .arr {
  color: var(--grey);
  opacity: 0.55;
  font-size: 13px;
}
.ncc-mi-flow .meta {
  margin-left: auto;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 560px) {
  .ncc-mi-flow .meta {
    margin-left: 0;
    width: 100%;
  }
}
.ncc-cmd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 12px;
  margin: 0 0 14px;
}
.ncc-cmd-card {
  border: 1px solid var(--card-line);
  border-radius: 14px;
  padding: 15px 16px;
  background: var(--card-bg, #fff);
}
.ncc-cmd-card .cc-top {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 9px;
}
.ncc-cmd-card .cc-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, currentColor 18%, transparent);
}
.ncc-cmd-card .cc-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
}
.ncc-cmd-card .cc-badge {
  margin-left: auto;
  font-size: 11px;
  font-weight: 650;
  color: #15b36b;
  background: color-mix(in srgb, #15b36b 12%, transparent);
  border-radius: 999px;
  padding: 3px 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.ncc-cmd-card .cc-badge svg {
  width: 11px;
  height: 11px;
}
.ncc-cmd-card .cc-lab {
  font-size: 10.5px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 4px;
}
.ncc-cmd-card .cc-script {
  font-size: 13px;
  line-height: 1.5;
  color: var(--grey);
}
.ncx {
  width: 100%;
  margin: 2px 0 0;
  text-align: left;
}
.ncx-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 5px;
  flex-wrap: wrap;
}
.ncx-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.ncx-count {
  font-size: 12.5px;
  font-weight: 650;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.ncx-dots {
  display: flex;
  gap: 6px;
  margin-left: auto;
}
.ncx-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--card-line);
  transition: background 0.2s;
}
.ncx-dots span.on {
  background: var(--accent);
}
.ncx-dots span.done {
  background: #15b36b;
}
.ncx-desc {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.5;
  margin-bottom: 14px;
}
.ncx-meter {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid var(--card-line);
  border-radius: 14px;
  background: var(--hover);
  margin-bottom: 14px;
}
.ncx-meter-lab {
  font-size: 12.5px;
  font-weight: 650;
  color: var(--ink);
  white-space: nowrap;
}
.ncx-meter-bar {
  flex: 1;
  height: 14px;
  border-radius: 999px;
  background: var(--card-bg, #fff);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--card-line);
}
.ncx-meter-bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: #e0632a;
  transition:
    width 0.3s,
    background 0.3s;
}
.ncx-meter-val {
  font-size: 15px;
  font-weight: 750;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  min-width: 88px;
  text-align: right;
}
.ncx-opts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-bottom: 14px;
}
@media (min-width: 680px) {
  .ncx-opts {
    grid-template-columns: 1fr 1fr;
  }
}
.ncx-opt {
  position: relative;
  overflow: hidden;
  text-align: left;
  border: 1.5px solid var(--card-line);
  background: var(--card-bg, #fff);
  color: var(--ink);
  border-radius: 14px;
  padding: 13px 15px;
  font: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition:
    border-color 0.15s,
    background 0.15s,
    transform 0.15s;
}
.ncx-opt:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}
.ncx-opt:disabled {
  cursor: default;
  transform: none;
}
.ncx-opt.active {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 7%, var(--card-bg, #fff));
}
.ncx-opt.best {
  border-color: #15b36b;
  background: color-mix(in srgb, #15b36b 7%, var(--card-bg, #fff));
}
.ncx-opt .o-top {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ncx-opt .o-txt {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.4;
}
.ncx-opt .o-sc {
  margin-left: auto;
  font-size: 12.5px;
  font-weight: 700;
  color: #15b36b;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.ncx-opt .o-badge {
  font-size: 10.5px;
  font-weight: 700;
  color: #15b36b;
  background: color-mix(in srgb, #15b36b 14%, transparent);
  border-radius: 999px;
  padding: 2px 8px;
  white-space: nowrap;
}
.ncx-opt .o-hint {
  font-size: 11.5px;
  color: var(--grey);
}
.ncx-opt .o-top,
.ncx-opt .o-hint {
  position: relative;
  z-index: 1;
}
.ncx-opt .o-prog {
  position: absolute;
  inset: 0;
  width: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--accent) 4%, transparent) 0%,
    color-mix(in srgb, var(--accent) 10%, transparent) 55%,
    color-mix(in srgb, var(--accent) 24%, transparent) 100%
  );
  transition: width 0.2s linear;
}
.ncx-cmds {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 2px 0 16px;
}
.ncx-cmd {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--card-line);
  background: var(--hover);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--grey);
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s;
}
.ncx-cmd .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: none;
}
.ncx-cmd.on {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, var(--card-bg, #fff));
  color: var(--ink);
}
.ncx-cmd.done {
  border-color: color-mix(in srgb, #15b36b 45%, transparent);
  color: #15b36b;
}
.ncc-checks {
  margin: 6px 0 4px;
  text-align: left;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.ncc-check {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--card-line);
  border-radius: 14px;
  padding: 11px 14px;
  background: color-mix(in srgb, var(--bg-fade) 80%, transparent);
  transition:
    background 0.3s,
    border-color 0.3s;
}
.ncc-check.pass {
  background: color-mix(in srgb, #15b36b 8%, transparent);
  border-color: color-mix(in srgb, #15b36b 26%, var(--card-line));
}
.ncc-check.fail {
  background: color-mix(in srgb, #e0632a 7%, transparent);
  border-color: color-mix(in srgb, #e0632a 26%, var(--card-line));
}
.ncc-check .ci {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hover);
  color: var(--grey);
  transition:
    background 0.25s,
    color 0.25s;
}
.ncc-check .ci svg {
  width: 16px;
  height: 16px;
}
.ncc-check .ci.wait:after {
  content: '';
  position: absolute;
  inset: -3.5px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--accent);
  animation: nccSpin 0.9s linear infinite;
}
@keyframes nccSpin {
  to {
    transform: rotate(360deg);
  }
}
.ncc-check .ci.ok {
  background: #15b36b;
  color: #fff;
}
.ncc-check .ci.bad {
  background: #e0632a;
  color: #fff;
}
.ncc-check b {
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 600;
  display: block;
}
.ncc-check span {
  font-size: 12px;
  color: var(--grey);
}
.ncc-hero {
  display: flex;
  justify-content: center;
  margin-bottom: 4px;
}
.ncc-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ncc-badge.good {
  background: rgba(21, 179, 107, 0.14);
  color: #15b36b;
}
.ncc-badge.warn {
  background: rgba(230, 145, 42, 0.16);
  color: #c9791f;
}
.ncc-badge svg {
  width: 30px;
  height: 30px;
}
.ncc-sumgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  margin: 16px 0 4px;
  text-align: left;
}
.ncc-hub {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  padding: 13px 15px;
}
.ncc-hub .hub-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
.ncc-hub .hub-top b {
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 600;
}
.ncc-hub .hub-val {
  font-size: 13px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.ncc-qbar {
  height: 6px;
  border-radius: 999px;
  background: var(--hover);
  overflow: hidden;
  display: block;
}
.ncc-qbar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  transition: width 0.4s;
}
.ncc-hub .hub-hint {
  font-size: 11.5px;
  color: var(--grey);
  line-height: 1.4;
  min-height: 16px;
}
.ncc-hub .hub-go {
  align-self: flex-start;
  padding: 5px 12px;
  font-size: 12px;
}
.ncc-gamewrap {
  margin: 8px 0;
  border-radius: 16px;
  overflow: hidden;
  min-height: 360px;
}
.ncc-sum {
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid var(--card-line);
  border-radius: 14px;
  padding: 11px 13px;
  background: color-mix(in srgb, var(--bg-fade) 80%, transparent);
}
.ncc-sum .ico {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.ncc-sum .ico.done {
  background: #15b36b;
  color: #fff;
}
.ncc-sum .ico.miss {
  background: var(--hover);
  color: var(--grey);
}
.ncc-sum .ico.off {
  background: var(--hover);
  color: var(--grey);
  opacity: 0.6;
}
.ncc-sum b {
  font-size: 13px;
  color: var(--ink);
  font-weight: 600;
  display: block;
}
.ncc-sum span {
  font-size: 11.5px;
  color: var(--grey);
}
.ncc-report {
  max-width: 440px;
  margin: 14px 0 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ncc-rep {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13.5px;
  padding: 8px 2px;
  border-bottom: 1px solid var(--card-line);
}
.ncc-rep .k {
  color: var(--grey);
}
.ncc-rep .v {
  color: var(--ink);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.ncc-nb {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 16px;
  margin: 0 0 14px;
  border-radius: 14px;
  background: var(--hover);
  border: 1px solid var(--card-line);
  text-align: left;
}
.ncc-nb-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0%;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--accent) 4%, transparent) 0%,
    color-mix(in srgb, var(--accent) 10%, transparent) 55%,
    color-mix(in srgb, var(--accent) 24%, transparent) 100%
  );
  transition:
    width 0.45s linear,
    opacity 0.2s;
}
.ncc-nb-ic,
.ncc-nb-tx,
.ncc-nb-btns {
  position: relative;
  z-index: 1;
}
.ncc-nb-ph {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-right: 10px;
  font-size: 12.5px;
  font-weight: 650;
  color: var(--grey);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.ncc-rec-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e5484d;
  animation: nccRecBlink 1.1s ease-in-out infinite;
}
@keyframes nccRecBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}
.ncc-nb-timer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  padding: 7px 13px;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 11%, transparent);
}
.ncc-nb-ic {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
}
.ncc-nb-ic svg,
.ncc-nb-ic .ncc-glyph {
  width: 18px;
  height: 18px;
  filter: none;
  color: var(--accent);
  opacity: 1;
}
.ncc-nb-tx {
  flex: 1;
  min-width: 0;
}
.ncc-nb-tx b {
  display: block;
  font-size: 13.5px;
  font-weight: 650;
  color: var(--ink);
}
.ncc-nb-tx span {
  display: block;
  margin-top: 2px;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--grey);
}
.ncc-nb-btns {
  flex: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ncc-nb-b {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  border: 0;
  border-radius: 11px;
  padding: 9px 14px;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s,
    filter 0.15s;
}
.ncc-nb-b svg {
  width: 15px;
  height: 15px;
  flex: none;
}
.ncc-nb-b.primary {
  background: var(--accent);
  color: #fff;
}
.ncc-nb-b.primary:hover {
  filter: brightness(1.07);
}
.ncc-nb-b.ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
  padding: 8px 13px;
}
.ncc-nb-b.ghost:hover {
  background: var(--hover);
}
.ncc-nb-b.subtle {
  background: transparent;
  color: var(--grey);
  padding: 9px 10px;
}
.ncc-nb-b.subtle:hover {
  color: var(--ink);
  background: var(--hover);
}
.ncc-nb-b:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  filter: none;
}
.ncc-nb-b:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
@media (max-width: 640px) {
  .ncc-nb {
    flex-wrap: wrap;
  }
  .ncc-nb-btns {
    width: 100%;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
}
.ncc-mr {
  width: 100%;
  margin: 6px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ncc-mr-hero {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--card-line);
  background: var(--hover);
}
.ncc-mr-hero.good {
  background: color-mix(in srgb, #15b36b 8%, var(--hover));
  border-color: color-mix(in srgb, #15b36b 26%, var(--card-line));
}
.ncc-mr-hero.mid {
  background: color-mix(in srgb, #e6912a 8%, var(--hover));
  border-color: color-mix(in srgb, #e6912a 26%, var(--card-line));
}
.ncc-mr-hero.low {
  background: color-mix(in srgb, #e0632a 8%, var(--hover));
  border-color: color-mix(in srgb, #e0632a 26%, var(--card-line));
}
.ncc-mr-badge {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.ncc-mr-badge svg {
  width: 24px;
  height: 24px;
}
.ncc-mr-hero.good .ncc-mr-badge {
  background: #15b36b;
}
.ncc-mr-hero.mid .ncc-mr-badge {
  background: #e6912a;
}
.ncc-mr-hero.low .ncc-mr-badge {
  background: #e0632a;
}
.ncc-mr-htx {
  flex: 1;
  min-width: 0;
}
.ncc-mr-verdict {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.ncc-mr-sub {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.5;
  margin-top: 2px;
}
.ncc-mr-score {
  flex: none;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.ncc-mr-hero.good .ncc-mr-score {
  color: #15b36b;
}
.ncc-mr-hero.mid .ncc-mr-score {
  color: #e6912a;
}
.ncc-mr-hero.low .ncc-mr-score {
  color: #e0632a;
}
.ncc-mr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (min-width: 900px) {
  .ncc-mr-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.ncc-mr-card {
  padding: 14px 15px;
  border: 1px solid var(--card-line);
  border-radius: 14px;
  background: var(--card-bg, #fff);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ncc-mr-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ncc-mr-ic {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
}
.ncc-mr-ic svg {
  width: 15px;
  height: 15px;
}
.ncc-mr-k {
  font-size: 12px;
  font-weight: 650;
  color: var(--grey);
  line-height: 1.2;
}
.ncc-mr-v {
  font-size: 23px;
  font-weight: 750;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.ncc-mr-track {
  height: 6px;
  border-radius: 999px;
  background: var(--hover);
  overflow: hidden;
}
.ncc-mr-track > i {
  display: block;
  height: 100%;
  border-radius: 999px;
}
.ncc-mr-hint {
  font-size: 11.5px;
  color: var(--grey);
  line-height: 1.4;
}
.ncc-mr-sec {
  border: 1px solid var(--card-line);
  border-radius: 16px;
  padding: 16px 18px;
  background: var(--card-bg, #fff);
}
.ncc-mr-sec h4 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ncc-mr-sec h4 svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}
.ncc-mr-sec p {
  margin: 0 0 12px;
  font-size: 12.5px;
  color: var(--grey);
  line-height: 1.5;
}
.ncc-mr-conf {
  width: 100%;
  border-collapse: separate;
  border-spacing: 5px;
  font-size: 12.5px;
}
.ncc-mr-conf th {
  font-weight: 650;
  color: var(--grey);
  padding: 4px 6px;
  font-size: 11.5px;
}
.ncc-mr-conf td {
  text-align: center;
  padding: 10px 6px;
  border-radius: 9px;
  color: var(--ink);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.ncc-mr-conf .rh {
  text-align: right;
  font-weight: 650;
  color: var(--grey);
  white-space: nowrap;
  font-size: 11.5px;
}
.ncc-mr-tips ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.ncc-mr-tips li {
  position: relative;
  padding-left: 26px;
  font-size: 13px;
  color: var(--grey);
  line-height: 1.45;
}
.ncc-mr-tips li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
}
.ncc-mr-tips li svg {
  position: absolute;
  left: 3px;
  top: 4px;
  width: 11px;
  height: 11px;
  color: var(--accent);
}
.ncc-mr-note {
  font-size: 12px;
  color: var(--grey);
  line-height: 1.5;
}
.ncc-mr-hub {
  gap: 9px;
}
.ncc-mr-hub .ncc-mr-k {
  font-size: 12.5px;
  font-weight: 650;
  color: var(--ink);
}
.ncc-mr-hubbtn {
  margin-top: 2px;
  align-self: flex-start;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  border: 0;
  border-radius: 9px;
  padding: 6px 13px;
  cursor: pointer;
  transition: background 0.15s;
}
.ncc-mr-hubbtn:hover {
  background: color-mix(in srgb, var(--accent) 18%, transparent);
}
/* Замок подраздела «Тренировки» (до успешной калибровки) — премиальный
   empty-state: понятная иерархия «значок → заголовок → текст → действие»,
   мягкая глубина у значка (градиент + тень + гало-кольцо), спокойный ритм.
   Плавное появление (уважает prefers-reduced-motion). */
.ncc-lock {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  padding: clamp(30px, 5vw, 60px) 20px;
  max-width: 460px;
  margin: 0 auto;
  animation: nccLockIn 0.42s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.ncc-lock-ic {
  position: relative;
  width: 66px;
  height: 66px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 3px;
  background: linear-gradient(
    155deg,
    color-mix(in srgb, var(--accent) 20%, transparent),
    color-mix(in srgb, var(--accent) 8%, transparent)
  );
  box-shadow: 0 12px 28px -14px color-mix(in srgb, var(--accent) 60%, transparent);
}
/* мягкое кольцо-гало вокруг значка — тонкий акцент глубины */
.ncc-lock-ic::before {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 27px;
  border: 1px solid color-mix(in srgb, var(--accent) 15%, transparent);
  opacity: 0.75;
}
.ncc-lock-ic svg {
  width: 30px;
  height: 30px;
  position: relative;
}
.ncc-lock-h {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.ncc-lock-p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--grey);
  max-width: 42ch;
}
.ncc-lock .acct-btn {
  margin-top: 9px;
}
@keyframes nccLockIn {
  from {
    opacity: 0;
    transform: translateY(9px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ncc-lock {
    animation: none;
  }
}
