
body[data-page='integrations'] .page-hero h1 {
  font-size: clamp(2.5rem, 5.4vw, 5rem);
  max-width: 15ch;
}
.ig-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  border: 1px solid;
}
.ig-pill::before {
  content: '';
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.ig-pill-live {
  color: #37e6a0;
  background: rgba(55, 230, 160, 0.1);
  border-color: rgba(55, 230, 160, 0.3);
}
.ig-pill-wait {
  color: #ffc36b;
  background: rgba(255, 195, 107, 0.1);
  border-color: rgba(255, 195, 107, 0.32);
}
.ig-pill-info {
  color: #7fb6ff;
  background: rgba(127, 182, 255, 0.1);
  border-color: rgba(127, 182, 255, 0.3);
}
.ig-pill-road {
  color: var(--fg-2);
  background: transparent;
  border-style: dashed;
  border-color: var(--bd-2);
}
.ig-pill-road::before {
  background: none;
  border: 1.5px dashed currentColor;
  width: 7px;
  height: 7px;
}
.theme-paper .ig-pill-live {
  color: #0a7a52;
  background: rgba(18, 184, 134, 0.12);
  border-color: rgba(10, 122, 82, 0.4);
}
.theme-paper .ig-pill-wait {
  color: #8a5300;
  background: rgba(255, 170, 40, 0.16);
  border-color: rgba(138, 83, 0, 0.42);
}
.theme-paper .ig-pill-info {
  color: #0b57d0;
  background: rgba(11, 87, 208, 0.08);
  border-color: rgba(11, 87, 208, 0.36);
}
.theme-paper .ig-pill-road {
  color: #39456f;
  border-color: rgba(20, 30, 90, 0.4);
}
.ig-hub {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 1;
  margin-inline: auto;
}
.ig-hub-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(160, 176, 255, 0.26);
}
.ig-hub-ring.r1 {
  inset: 13%;
  animation: spin 120s linear infinite;
}
.ig-hub-ring.r2 {
  inset: 30%;
  border-style: solid;
  border-color: rgba(160, 176, 255, 0.12);
}
.ig-hub-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.ig-hub-ln {
  fill: none;
  stroke: rgba(160, 176, 255, 0.34);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 3 5;
}
.ig-hub-pk {
  fill: #5eeaff;
  filter: drop-shadow(0 0 3px rgba(94, 234, 255, 0.9));
}
.ig-hub-pk.in {
  fill: #c58bff;
  filter: drop-shadow(0 0 3px rgba(197, 139, 255, 0.9));
}
.ig-hub-pk.rev {
  fill: #fff;
}
.ig-hub-core {
  position: absolute;
  inset: 38%;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #212c86, #0a1040);
  border: 1px solid var(--bd-2);
  box-shadow: 0 0 0 10px rgba(120, 130, 255, 0.08), 0 0 60px rgba(90, 90, 255, 0.5);
}
.ig-hub-core img {
  width: 46%;
  height: auto;
}
.ig-hub-core span {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(0.66rem, 1.3vw, 0.86rem);
}
.ig-hub-node {
  --ico: 52px;
  position: absolute;
  z-index: 3;
  width: 112px;
  display: grid;
  justify-items: center;
  gap: 3px;
  text-align: center;
  translate: -50% calc(var(--ico) / -2);
}
.ig-hub-ico {
  display: grid;
  place-items: center;
  width: var(--ico);
  height: var(--ico);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(12, 18, 60, 0.94);
  border: 1px solid var(--bd-2);
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.7);
  animation: ighubn 8.4s ease-in-out infinite;
  animation-delay: calc(var(--i) * 1.2s);
}
.ig-hub-node b {
  margin-top: 6px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.15;
}
.ig-hub-node small {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
  line-height: 1.2;
}
@keyframes ighubn {
  0%,
  14%,
  100% {
    border-color: rgba(150, 170, 255, 0.32);
    box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.7);
    color: var(--cyan);
  }
  4%,
  10% {
    border-color: #5eeaff;
    box-shadow: 0 0 0 6px rgba(94, 234, 255, 0.14), 0 0 26px rgba(94, 234, 255, 0.35);
    color: #fff;
  }
}
.ig-hub:not(.is-live) * {
  animation-play-state: paused !important;
}
@media (max-width: 560px) {
  .ig-hub-node {
    --ico: 44px;
    width: 84px;
  }
  .ig-hub-node b {
    font-size: 0.72rem;
  }
  .ig-hub-node small {
    display: none;
  }
}
.ig-legend {
  flex-basis: 100%;
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.ig-legend-i {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 12px;
}
.ig-legend-i small {
  font-size: 0.84rem;
  color: var(--fg-3);
}
.ig-index {
  position: sticky;
  top: 84px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: calc(100% - var(--gutter) * 2);
  margin: -28px auto -28px;
  padding: 6px 8px 6px 20px;
  border-radius: 999px;
  border: 1px solid var(--bd-2);
  background: rgba(7, 11, 36, 0.8);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 16px 40px -18px rgba(0, 0, 0, 0.75);
  color: var(--fg-2);
}
.ig-index-l {
  flex: none;
  padding-right: 10px;
  color: var(--fg-3);
  border-right: 1px solid var(--bd);
}
.ig-index ul {
  display: flex;
  gap: 2px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.ig-index ul::-webkit-scrollbar {
  display: none;
}
.ig-index a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  white-space: nowrap;
  color: var(--fg-2);
  transition: color 0.18s ease, background-color 0.18s ease;
}
.ig-index a span {
  font-size: 0.6rem;
  opacity: 0.55;
  letter-spacing: 0.08em;
}
@media (hover: hover) and (pointer: fine) {
  .ig-index a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
  }
}
.ig-index a[aria-current='true'] {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}
.ig-index a[aria-current='true'] span {
  color: var(--cyan);
  opacity: 1;
}
@media (max-width: 900px) {
  .ig-index {
    padding-left: 8px;
    width: calc(100% - var(--gutter) * 2);
  }
  .ig-index-l {
    display: none;
  }
  .ig-index ul {
    -webkit-mask-image: linear-gradient(90deg, #000 85%, transparent);
    mask-image: linear-gradient(90deg, #000 85%, transparent);
    padding-right: 18px;
  }
}
.ig-cat {
  padding-block: clamp(84px, 9.5vw, 148px);
}
.ig-cat.theme-paper {
  border-radius: clamp(28px, 4vw, 64px) clamp(28px, 4vw, 64px) 0 0;
  margin-top: calc(clamp(28px, 4vw, 64px) * -1);
  z-index: 2;
}
.ig-cat h2,
.ig-faq h2 {
  font-size: clamp(2rem, 3.9vw, 3.5rem);
  letter-spacing: -0.038em;
}
.ig-lead {
  margin-top: 1.4rem;
  max-width: 46ch;
  color: var(--fg-2);
  font-size: 1.08em;
}
.ig-cat-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 5vw, 96px);
  align-items: start;
}
.ig-cat-head {
  position: sticky;
  top: 156px;
}
.ig-cat-head .link-arrow {
  margin-top: 1.6rem;
}
.ig-cat-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(18px, 2.2vw, 28px);
  min-width: 0;
}
.ig-compact {
  padding-block: clamp(64px, 7.5vw, 112px);
}
@media (max-width: 1000px) {
  .ig-cat-grid {
    grid-template-columns: 1fr;
  }
  .ig-cat-head {
    position: static;
  }
}
.ig-cards {
  display: grid;
  gap: 16px;
}
.ig-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px 16px;
  margin-bottom: 18px;
}
.ig-card-id {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.ig-card .card-ico,
.ig-gyg-top .card-ico {
  flex: none;
  width: 44px;
  height: 44px;
  margin: 0;
}
.ig-card h3,
.ig-gyg-top h3 {
  font-size: clamp(1.25rem, 1.7vw, 1.5rem);
}
.ig-role {
  display: block;
  margin-top: 5px;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.ig-card p {
  margin-top: 0;
}
.ig-card .ig-more {
  margin-top: 0.8rem;
  font-size: 0.92rem;
  color: var(--fg-3);
}
.ig-feats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.ig-feats li {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--bd);
  background: rgba(255, 255, 255, 0.03);
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  color: var(--fg-2);
}
.theme-paper .ig-feats li {
  background: rgba(255, 255, 255, 0.6);
}
@media (max-width: 560px) {
  .ig-card-top {
    flex-direction: column;
  }
}
.ig-win {
  --fg: #eaf0ff;
  --fg-2: #aab5dd;
  --fg-3: #8a97cc;
  --bd: rgba(150, 170, 255, 0.16);
  --bd-2: rgba(150, 170, 255, 0.32);
  --card: rgba(255, 255, 255, 0.035);
  --accent: var(--cyan);
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(120, 130, 255, 0.3);
  background: var(--ink-900);
  color: var(--fg);
  box-shadow: 0 50px 90px -40px rgba(20, 24, 120, 0.7);
}
.theme-paper .ig-win {
  box-shadow: 0 50px 90px -40px rgba(20, 24, 120, 0.7), 0 0 0 8px rgba(255, 255, 255, 0.45);
}
.ig-win .win-bar span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ig-fade {
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out), visibility 0s linear 0s;
}
.ig-loop.is-armed .ig-fade:not(.on) {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0s linear 0.3s;
}
.ig-loop:not(.is-armed) .ig-tmp {
  display: none;
}
.ig-wide {
  overflow: clip;
}
.ig-wide .wrap {
  position: relative;
  z-index: 2;
}
.ig-wide .aurora {
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 25%, #000 75%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 25%, #000 75%, transparent);
}
.ig-wide-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: 24px clamp(24px, 5vw, 80px);
  align-items: end;
}
.ig-wide-head .ig-lead {
  margin: 0 0 0.5rem;
}
.ig-gyg-card {
  margin-top: clamp(40px, 5vw, 72px);
}
.ig-gyg-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  margin-bottom: 20px;
}
.ig-gyg-note {
  flex: 1 1 320px;
  max-width: 64ch;
  padding-left: 20px;
  border-left: 1px solid var(--bd-2);
  color: var(--fg-2);
  font-size: 0.95rem;
}
.ig-gyg-body {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
}
.ig-seq {
  padding: 22px clamp(16px, 2.4vw, 32px) 26px;
  border-right: 1px solid var(--bd);
}
.ig-lanes {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.ig-lane {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 10px;
  align-items: center;
  text-align: left;
}
.ig-lane i {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--bd-2);
}
.ig-lane.r {
  direction: rtl;
}
.ig-lane.r > * {
  direction: ltr;
}
.ig-lane.r b,
.ig-lane.r small {
  text-align: right;
}
.ig-lane b {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.96rem;
  line-height: 1.1;
}
.ig-lane small {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.ig-msgs {
  position: relative;
  margin-top: 6px;
}
.ig-msgs::before,
.ig-msgs::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  border-left: 1px dashed rgba(160, 176, 255, 0.3);
}
.ig-msgs::before {
  left: 18px;
}
.ig-msgs::after {
  right: 18px;
}
.ig-msg {
  position: relative;
  padding: 14px 0 12px;
  transition: opacity 0.4s var(--ease-out);
}
.ig-loop.is-armed .ig-msg:not(.on) {
  opacity: 0.28;
}
.ig-loop.is-armed .ig-msg.on {
  opacity: 0.55;
}
.ig-loop.is-armed .ig-msg.on.cur {
  opacity: 1;
}
.ig-msg-t {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 8px;
  text-align: center;
}
.ig-msg-t b {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}
.ig-msg-t code {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  color: var(--cyan);
}
.ig-ln {
  position: relative;
  display: block;
  height: 18px;
  margin-inline: 18px;
}
.ig-ln i {
  position: absolute;
  left: 0;
  right: 0;
  top: 8px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
  transform-origin: left center;
  transition: transform 0.7s var(--ease-out);
}
.ig-ln.d-l i {
  transform-origin: right center;
}
.ig-ln.ret i {
  background: repeating-linear-gradient(90deg, rgba(169, 184, 255, 0.75) 0 6px, transparent 6px 11px);
}
.ig-ln .ah {
  position: absolute;
  top: 3px;
  width: 9px;
  height: 12px;
  background: #5eeaff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transition: opacity 0.2s ease 0.5s;
}
.ig-ln.ret .ah {
  background: #a9b8ff;
}
.ig-ln.d-r .ah {
  right: -2px;
}
.ig-ln.d-l .ah {
  left: -2px;
  transform: scaleX(-1);
}
.ig-ln em {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0 10px;
  background: var(--ink-900);
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  color: var(--fg-2);
  white-space: nowrap;
  transition: opacity 0.35s ease 0.3s;
}
.ig-ln u {
  position: absolute;
  top: 5px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px 2px rgba(94, 234, 255, 0.9);
  opacity: 0;
  pointer-events: none;
}
.ig-loop.is-armed .ig-ln.on u {
  animation: igpk-r 0.75s var(--ease-out) both;
}
.ig-loop.is-armed .ig-ln.d-l.on u {
  animation-name: igpk-l;
}
@keyframes igpk-r {
  from {
    left: 0;
    opacity: 1;
  }
  to {
    left: calc(100% - 8px);
    opacity: 0;
  }
}
@keyframes igpk-l {
  from {
    left: calc(100% - 8px);
    opacity: 1;
  }
  to {
    left: 0;
    opacity: 0;
  }
}
.ig-loop.is-armed .ig-ln:not(.on) i {
  transform: scaleX(0);
}
.ig-loop.is-armed .ig-ln:not(.on) .ah,
.ig-loop.is-armed .ig-ln:not(.on) em {
  opacity: 0;
  transition-delay: 0s;
}
.ig-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px clamp(16px, 2vw, 26px) 26px;
  background: rgba(255, 255, 255, 0.02);
}
.ig-panel-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  color: var(--fg-3);
}
.ig-live .dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #37e6a0;
  animation: pulse 2s ease-out infinite;
}
.ig-panel-cols {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 10px;
  padding: 0 14px;
  font-size: 0.6rem;
  color: var(--fg-3);
}
.ig-prows {
  display: grid;
  gap: 10px;
}
.ig-prow {
  border-radius: 14px;
  border: 1px solid var(--bd);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
}
.ig-prow.ghost {
  display: grid;
  gap: 8px;
  padding: 16px 14px;
  opacity: 0.7;
}
.ig-prow.live {
  border-color: rgba(94, 234, 255, 0.4);
  background: rgba(94, 234, 255, 0.05);
}
.ig-prow-main {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}
.ig-ref {
  font-size: 0.7rem;
  color: #c9d4ff;
  letter-spacing: 0.04em;
}
.ig-src {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 6px;
  align-items: center;
  font-size: 0.86rem;
  font-weight: 600;
  min-width: 0;
}
.ig-src svg {
  color: var(--cyan);
}
.ig-src small {
  grid-column: 2;
  font-weight: 400;
  font-size: 0.72rem;
  color: var(--fg-3);
}
.ig-stack {
  display: grid;
  justify-items: end;
}
.ig-stack > * {
  grid-area: 1 / 1;
}
.ig-st {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}
.st-wait {
  color: #ffc36b;
  background: rgba(255, 195, 107, 0.1);
  border-color: rgba(255, 195, 107, 0.32);
}
.st-ok {
  color: #37e6a0;
  background: rgba(55, 230, 160, 0.1);
  border-color: rgba(55, 230, 160, 0.3);
}
.st-info {
  color: #7fb6ff;
  background: rgba(127, 182, 255, 0.1);
  border-color: rgba(127, 182, 255, 0.3);
}
.st-err,
.st-cancel {
  color: #ff8fb0;
  background: rgba(255, 143, 176, 0.1);
  border-color: rgba(255, 143, 176, 0.3);
}
.ig-pnotes {
  display: grid;
  margin-top: 10px;
}
.ig-pnote {
  grid-area: 1 / 1;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.76rem;
  line-height: 1.4;
  color: var(--fg-2);
}
.ig-pnote svg {
  flex: none;
  margin-top: 1px;
  color: #ffc36b;
}
.ig-pnote.warn {
  color: #ffb3c8;
}
.ig-pnote.warn svg {
  color: #ff8fb0;
}
.ig-gyg:not(.is-live) *,
.ig-pf-win:not(.is-live) *,
.ig-queue:not(.is-live) * {
  animation-play-state: paused !important;
}
@media (max-width: 900px) {
  .ig-gyg-body {
    grid-template-columns: 1fr;
  }
  .ig-seq {
    border-right: 0;
    border-bottom: 1px solid var(--bd);
  }
  .ig-gyg-note {
    padding-left: 0;
    border-left: 0;
  }
  .ig-wide-head {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .ig-prow-main {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .ig-ref {
    grid-column: 1 / -1;
  }
  .ig-panel-cols {
    display: none;
  }
  .ig-ln em {
    font-size: 0.6rem;
    padding: 0 6px;
  }
}
.ig-flowlist {
  margin-top: clamp(44px, 5.5vw, 80px);
}
.ig-flowlist h3 {
  margin-bottom: 20px;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.ig-flowlist ol {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0 clamp(18px, 2.4vw, 36px);
  border-top: 1px solid var(--bd-2);
}
.ig-flowlist li {
  padding-top: 20px;
}
.ig-flowlist li > span {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.ig-flowlist h4 {
  margin-top: 10px;
  font-family: var(--f-display);
  font-weight: 650;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.ig-flowlist p {
  margin-top: 8px;
  font-size: 0.92rem;
  color: var(--fg-2);
}
@media (max-width: 1100px) {
  .ig-flowlist ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 28px;
  }
  .ig-flowlist li {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--bd);
  }
}
@media (max-width: 560px) {
  .ig-flowlist ol {
    grid-template-columns: 1fr;
  }
}
.ig-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(28px, 4vw, 48px);
}
.ig-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid var(--bd);
  border-radius: var(--radius);
  background: var(--card);
}
.ig-tile-viz {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  min-height: 190px;
  margin-bottom: 22px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(120, 130, 255, 0.22);
  background: var(--ink-900);
  overflow: hidden;
}
.ig-tile h3 {
  font-size: 1.25rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.ig-tile p {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: var(--fg-2);
}
@media (max-width: 1000px) {
  .ig-tiles {
    grid-template-columns: 1fr;
  }
}
.ig-tier-h {
  display: flex;
  justify-content: space-between;
  color: var(--fg-3);
}
.ig-tier-bar {
  position: relative;
  height: 14px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}
.ig-tier-bar .fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 88%;
  border-radius: 8px;
  background: var(--grad);
  transition: width 1s var(--ease-out);
}
.ig-tier-bar s {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  margin-left: -1.5px;
  background: var(--ink-900);
}
.ig-loop.is-armed[data-t='-1'] .ig-tier-bar .fill {
  width: 0;
}
.ig-loop.is-armed[data-t='0'] .ig-tier-bar .fill {
  width: 14%;
}
.ig-loop.is-armed[data-t='1'] .ig-tier-bar .fill {
  width: 30%;
}
.ig-loop.is-armed[data-t='2'] .ig-tier-bar .fill {
  width: 55%;
}
.ig-loop.is-armed[data-t='3'] .ig-tier-bar .fill {
  width: 88%;
}
.ig-tier-lbls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.ig-tier-lbls li {
  padding: 6px 4px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid var(--bd);
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  color: var(--fg-3);
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
.ig-tier-lbls li.on,
.ig-loop:not(.is-armed) .ig-tier-lbls li:last-child {
  color: #fff;
  border-color: rgba(94, 234, 255, 0.55);
  background: rgba(94, 234, 255, 0.12);
}
.ig-tier-push {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-size: 0.72rem;
  color: var(--fg-2);
}
.ig-tier-push svg {
  color: #37e6a0;
}
.ig-tier-push code,
.ig-key code {
  font-family: var(--f-mono);
  color: var(--cyan);
}
.ig-rt {
  width: 100%;
  height: auto;
}
.ig-rt-ln {
  fill: none;
  stroke: rgba(160, 176, 255, 0.4);
  stroke-width: 1.4;
  stroke-dasharray: 3 5;
}
.ig-rt-src circle {
  fill: rgba(94, 234, 255, 0.12);
  stroke: #5eeaff;
  stroke-width: 1.4;
}
.ig-rt-src text {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 9px;
  fill: #dff8ff;
}
.ig-rt-cap {
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  fill: #8b98cf;
}
.ig-rt-hub rect {
  fill: #3b56f5;
  stroke: #9bb0ff;
  stroke-width: 1;
}
.ig-rt-hub circle {
  fill: #fff;
}
.ig-rt-biz rect {
  fill: rgba(255, 255, 255, 0.05);
  stroke: rgba(160, 176, 255, 0.45);
}
.ig-rt-biz text {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 10.5px;
  fill: #e6ebff;
}
.ig-rt-pk {
  fill: #5eeaff;
  filter: drop-shadow(0 0 4px rgba(94, 234, 255, 0.9));
}
.ig-rt-pk.b {
  fill: #c58bff;
  filter: drop-shadow(0 0 4px rgba(197, 139, 255, 0.9));
}
.ig-logs ul {
  display: grid;
  gap: 6px;
}
.ig-logrow {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--f-mono);
  font-size: 0.7rem;
}
.ig-logrow .dir {
  font-weight: 600;
  letter-spacing: 0.06em;
}
.ig-logrow .dir.in {
  color: #7fb6ff;
}
.ig-logrow .dir.out {
  color: #c58bff;
}
.ig-logrow code {
  overflow: hidden;
  text-overflow: ellipsis;
  color: #dbe3ff;
}
.ig-logrow span {
  color: #37e6a0;
}
.ig-key {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px dashed rgba(255, 195, 107, 0.45);
  color: #ffc36b;
  font-size: 0.7rem;
}
.ig-key code {
  color: #ffd699;
}
.ig-tile:not(.is-live) * {
  animation-play-state: paused !important;
}
.ig-road {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 14px 26px;
  align-items: center;
  margin-top: 16px;
  padding: 20px 24px;
  border-radius: 20px;
  border: 1px dashed var(--bd-2);
}
.ig-road-l {
  color: var(--fg-3);
}
.ig-road-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ig-road-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 5px 6px 5px 16px;
  border-radius: 999px;
  border: 1px dashed var(--bd-2);
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--fg);
}
.ig-road p {
  margin: 0;
  color: var(--fg-2);
  font-size: 0.94rem;
}
.ig-road p strong {
  color: var(--fg);
}
@media (max-width: 900px) {
  .ig-road {
    grid-template-columns: 1fr;
  }
}
.ig-pf {
  display: grid;
  grid-template-columns: repeat(var(--n, 4), minmax(0, 1fr));
  padding: 26px clamp(16px, 2vw, 28px) 30px;
}
.ig-pfs {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 18px;
  transition: opacity 0.4s var(--ease-out);
}
.ig-loop.is-armed .ig-pfs:not(.on) {
  opacity: 0.32;
}
.ig-pf-node {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--bd-2);
  background: var(--ink-850);
  color: var(--fg-3);
  transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
.ig-pf-node i {
  display: grid;
}
.ig-pfs.on .ig-pf-node,
.ig-loop:not(.is-armed) .ig-pf-node {
  color: #fff;
  border-color: transparent;
  background: var(--grad-btn);
}
.ig-pf-ln {
  position: absolute;
  top: 21px;
  left: 50px;
  right: 6px;
  height: 2px;
  background: rgba(160, 176, 255, 0.2);
}
.ig-pf-ln::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad);
  transform-origin: left center;
  transition: transform 0.9s var(--ease-out);
}
.ig-loop.is-armed .ig-pf-ln:not(.on)::after {
  transform: scaleX(0);
}
.ig-pf-n {
  display: none;
}
.ig-pf h4 {
  margin-top: 10px;
  font-family: var(--f-display);
  font-weight: 650;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}
.ig-pf p {
  font-size: 0.88rem;
  color: var(--fg-2);
}
.ig-pf-mock {
  flex: 1;
  display: grid;
  align-content: start;
  gap: 6px;
  margin-top: 10px;
  min-height: 104px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--bd);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.8rem;
}
.ig-pf-mock .amt {
  font-family: var(--f-display);
  font-weight: 650;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}
.ig-pf-mock .ref {
  font-family: var(--f-mono);
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.ig-pf-mock .num {
  font-family: var(--f-mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}
.ig-pf-mock .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ig-pf-mock .chips em {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid var(--bd-2);
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.03em;
  color: var(--fg-2);
}
.ig-pf-mock .chips em.ok {
  color: #37e6a0;
  border-color: rgba(55, 230, 160, 0.4);
  background: rgba(55, 230, 160, 0.08);
}
.ig-pf-mock .chips.lock {
  align-items: center;
  color: #ffc36b;
}
.ig-pf-mock .chips.lock em {
  color: #ffc36b;
  border-color: rgba(255, 195, 107, 0.4);
}
.ig-pf-mock.hook code {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  color: var(--cyan);
}
.ig-pf-mock.post li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--fg);
}
.ig-pf-mock.post li svg {
  color: #37e6a0;
}
.ig-quote {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--bd-2);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.3vw, 1.85rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.ig-quote svg {
  flex: none;
  padding: 9px;
  box-sizing: content-box;
  border-radius: 14px;
  background: var(--grad-soft);
  border: 1px solid var(--bd);
  color: var(--accent);
}
.ig-quote strong {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.06em;
}
@media (max-width: 900px) {
  .ig-pf {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .ig-pfs {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 16px;
    row-gap: 6px;
    padding-right: 0;
  }
  .ig-pfs > * {
    grid-column: 2;
  }
  .ig-pfs .ig-pf-node {
    grid-column: 1;
    grid-row: 1 / span 4;
  }
  .ig-pf-n {
    display: none;
  }
  .ig-pf h4 {
    margin-top: 2px;
  }
  .ig-pf-ln {
    top: 48px;
    bottom: -22px;
    left: 21px;
    right: auto;
    width: 2px;
    height: auto;
    grid-column: auto;
  }
  .ig-pf-ln::after {
    transform-origin: center top;
  }
  .ig-loop.is-armed .ig-pf-ln:not(.on)::after {
    transform: scaleY(0);
  }
  .ig-pf-mock {
    min-height: 0;
  }
}
.ig-qrows li {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(150, 170, 255, 0.1);
}
.ig-qk {
  justify-self: start;
  padding: 3px 9px;
  border-radius: 6px;
  border: 1px solid var(--bd-2);
  font-size: 0.62rem;
  color: var(--fg-2);
}
.ig-qn {
  font-size: 0.96rem;
  color: #e6ebff;
}
.ig-st-btns {
  display: inline-flex;
  gap: 8px;
}
.ig-st-btns em {
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--bd-2);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 600;
}
.ig-st-btns .acc {
  border-color: transparent;
  color: #fff;
  background: var(--grad-btn);
  animation: igbtn 1.3s ease-in-out infinite;
}
@keyframes igbtn {
  50% {
    box-shadow: 0 0 0 5px rgba(94, 110, 255, 0.28);
  }
}
.ig-fx {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  padding: 16px 20px 20px;
}
.ig-fx > .mono {
  color: var(--fg-3);
}
.ig-fx ul {
  display: flex;
  gap: 8px;
}
.ig-fx li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid var(--bd-2);
  font-family: var(--f-mono);
  font-size: 0.7rem;
  color: var(--fg-2);
}
.ig-fx li svg {
  color: #37e6a0;
}
.ig-fx-ok {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #37e6a0;
}
@media (max-width: 560px) {
  .ig-qrows li {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .ig-qk {
    grid-column: 1 / -1;
  }
}
.ig-map {
  position: relative;
  overflow: hidden;
  aspect-ratio: 520 / 320;
  border-radius: 22px;
  border: 1px solid rgba(120, 130, 255, 0.3);
  background: var(--ink-900);
  color: #eaf0ff;
  box-shadow: 0 50px 90px -40px rgba(20, 24, 120, 0.7), 0 0 0 8px rgba(255, 255, 255, 0.45);
}
.ig-map svg {
  display: block;
  width: 100%;
  height: 100%;
}
.ig-mp-flow {
  animation: igflow 1.2s linear infinite;
}
@keyframes igflow {
  to {
    stroke-dashoffset: -32;
  }
}
.ig-mp-ping {
  transform-box: fill-box;
  transform-origin: center;
  animation: ping 3.6s ease-out infinite;
}
.ig-mp-drop {
  animation: igdrop 2.6s ease-in-out infinite;
}
@keyframes igdrop {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.ig-mp-sh {
  transform-box: fill-box;
  transform-origin: center;
  animation: igsh 2.6s ease-in-out infinite;
}
@keyframes igsh {
  50% {
    transform: scale(0.7);
    opacity: 0.6;
  }
}
.ig-map-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(160, 176, 255, 0.3);
  background: rgba(10, 16, 52, 0.82);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: 0.8rem;
  color: #eaf0ff;
  white-space: nowrap;
}
.ig-map-chip.tl {
  left: 16px;
  top: 16px;
}
.ig-map-chip.tl .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #37e6a0;
  animation: pulse 2s ease-out infinite;
}
.ig-map-chip.tr {
  right: 16px;
  top: 16px;
  font-size: 0.62rem;
  color: #aab5dd;
}
.ig-map-chip.bl {
  left: 16px;
  bottom: 16px;
  padding: 8px 16px;
}
.ig-map-chip.bl small {
  font-size: 0.74rem;
  color: #aab5dd;
}
.ig-map-chip.bl2 {
  left: 24%;
  top: 22%;
  font-size: 0.62rem;
  color: #d9c2ff;
}
.ig-map-chip.bl2 i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a23dff;
}
.ig-map-attr {
  position: absolute;
  right: 14px;
  bottom: 12px;
  font-size: 0.56rem;
  color: #6f7cb4;
}
.ig-eta {
  position: relative;
  display: inline-block;
  width: 1.5em;
  height: 1.3em;
  text-align: center;
  font-family: var(--f-display);
  font-weight: 650;
  font-size: 1.15rem;
  line-height: 1.3;
  color: #5eeaff;
}
.ig-eta b {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: igeta 12s infinite;
  animation-delay: calc(var(--k) * 3s);
}
@keyframes igeta {
  0% {
    opacity: 0;
    transform: translateY(5px);
  }
  3%,
  23% {
    opacity: 1;
    transform: none;
  }
  25%,
  100% {
    opacity: 0;
    transform: translateY(-5px);
  }
}
.ig-map:not(.is-live) * {
  animation-play-state: paused !important;
}
@media (max-width: 560px) {
  .ig-map {
    aspect-ratio: 1 / 0.86;
  }
  .ig-map svg {
    object-fit: cover;
  }
  .ig-map-chip.tr,
  .ig-map-chip.bl2,
  .ig-map-attr {
    display: none;
  }
  .ig-map-chip {
    padding: 6px 11px;
    font-size: 0.72rem;
  }
  .ig-map-chip.tl {
    left: 10px;
    top: 10px;
  }
  .ig-map-chip.bl {
    left: 10px;
    bottom: 10px;
  }
}
.ig-nts {
  display: grid;
  gap: 10px;
  padding: 18px;
}
.ig-nt {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--bd);
  background: rgba(255, 255, 255, 0.035);
}
.ig-nt-ico {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: #fff;
  background: var(--grad-btn);
}
.ig-nt-tx {
  display: grid;
  min-width: 0;
  line-height: 1.3;
}
.ig-nt-tx b {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.95rem;
}
.ig-nt-tx small {
  font-size: 0.78rem;
  color: var(--fg-3);
}
.ig-nt-ch {
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid var(--bd-2);
  font-size: 0.6rem;
  color: var(--fg-2);
}
.ig-no {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 2px 18px 20px;
}
.ig-no .mono {
  color: var(--fg-3);
  margin-right: 4px;
}
.ig-no em {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px dashed rgba(255, 143, 176, 0.5);
  font-style: normal;
  font-size: 0.78rem;
  color: #ffb3c8;
  text-decoration: line-through;
  text-decoration-color: rgba(255, 143, 176, 0.7);
}
.ig-no em svg {
  color: #ff8fb0;
}
.ig-notif:not(.is-live) * {
  animation-play-state: paused !important;
}
@media (max-width: 560px) {
  .ig-nt {
    grid-template-columns: 40px minmax(0, 1fr);
  }
  .ig-nt-ch {
    display: none;
  }
}
.ig-print {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px clamp(20px, 4vw, 56px);
  padding: 30px clamp(18px, 3.4vw, 44px) 0;
}
.ig-print-flow {
  display: flex;
  align-items: flex-start;
  min-width: 0;
  padding-bottom: 30px;
}
.ig-pn {
  display: grid;
  justify-items: center;
  gap: 8px;
  flex: none;
  font-family: var(--f-mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.ig-pn i {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: #fff;
  border: 1px solid var(--bd-2);
  background: rgba(255, 255, 255, 0.05);
}
.ig-pn:last-child i {
  background: var(--grad-btn);
  border-color: transparent;
}
.ig-pl {
  position: relative;
  flex: 1 1 24px;
  min-width: 24px;
  height: 2px;
  margin: 22px 8px 0;
  background: rgba(160, 176, 255, 0.25);
}
.ig-pl b {
  position: absolute;
  top: -3px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5eeaff;
  box-shadow: 0 0 10px rgba(94, 234, 255, 0.9);
  animation: igpl 2.4s linear infinite;
  animation-delay: calc(var(--k) * 1.2s);
}
@keyframes igpl {
  0% {
    left: 0;
    opacity: 0;
  }
  12%,
  88% {
    opacity: 1;
  }
  100% {
    left: calc(100% - 8px);
    opacity: 0;
  }
}
.ig-printer {
  position: relative;
  width: 200px;
}
.ig-printer-body {
  position: relative;
  z-index: 2;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(180deg, #1b2566, #0e1540);
  border: 1px solid rgba(160, 176, 255, 0.4);
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.7);
}
.ig-printer-body .led {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #37e6a0;
  animation: pulse 2s ease-out infinite;
}
.ig-printer-body .slot {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 12px;
  height: 6px;
  border-radius: 3px;
  background: #04061a;
}
.ig-paper {
  position: relative;
  z-index: 1;
  width: 168px;
  height: 236px;
  margin: -4px auto 0;
  animation: igfeed 9s infinite;
}
.ig-paper-in {
  display: grid;
  gap: 6px;
  padding: 14px 14px 22px;
  background: #f4f6ff;
  color: #0b1140;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  line-height: 1.35;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6px), 90% 100%, 80% calc(100% - 6px), 70% 100%, 60% calc(100% - 6px), 50% 100%, 40% calc(100% - 6px), 30% 100%, 20% calc(100% - 6px), 10% 100%, 0 calc(100% - 6px));
}
.ig-paper-in .ph {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}
.ig-paper-in .rule {
  display: block;
  border-top: 1px dashed rgba(11, 17, 64, 0.4);
}
.ig-paper-in em {
  font-style: normal;
  font-size: 0.62rem;
  color: #4a5686;
}
@keyframes igfeed {
  0% {
    clip-path: inset(0 0 100% 0);
    opacity: 1;
    animation-timing-function: steps(16, end);
  }
  34%,
  88% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  96%,
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 0;
  }
}
.ig-print:not(.is-live) * {
  animation-play-state: paused !important;
}
.ig-fine {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--fg-2);
}
.ig-fine svg {
  flex: none;
  color: var(--accent);
}
@media (max-width: 720px) {
  .ig-print {
    grid-template-columns: 1fr;
    padding-inline: 18px;
  }
  .ig-printer {
    justify-self: center;
  }
  .ig-print-flow {
    padding-bottom: 0;
  }
}
.ig-ts {
  display: grid;
  place-items: center;
  padding: 36px 20px;
}
.ig-ts-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(100%, 360px);
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(160, 176, 255, 0.35);
  background: #0a1030;
}
.ig-ts-check {
  position: relative;
  flex: none;
  width: 28px;
  height: 28px;
}
.ig-ts-check i {
  position: absolute;
  inset: 0;
  border-radius: 6px;
}
.ig-ts-check .idle {
  border: 2px solid rgba(160, 176, 255, 0.55);
  animation: igts-idle 7s infinite;
}
.ig-ts-check .busy {
  border: 3px solid rgba(94, 234, 255, 0.25);
  border-top-color: #5eeaff;
  border-radius: 50%;
  opacity: 0;
  animation: igts-busy 7s infinite, spin 0.8s linear infinite;
}
.ig-ts-check .ok {
  display: grid;
  place-items: center;
  color: #04061a;
  background: #37e6a0;
  opacity: 0;
  animation: igts-ok 7s infinite;
}
.ig-ts-txt {
  position: relative;
  flex: 1;
  height: 1.4em;
  font-size: 0.95rem;
}
.ig-ts-txt b {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 500;
  white-space: nowrap;
}
.ig-ts-txt .idle {
  animation: igts-idle 7s infinite;
}
.ig-ts-txt .busy {
  opacity: 0;
  color: var(--fg-2);
  animation: igts-busy 7s infinite;
}
.ig-ts-txt .ok {
  opacity: 0;
  color: #37e6a0;
  animation: igts-ok 7s infinite;
}
.ig-ts-brand {
  flex: none;
  font-size: 0.56rem;
  color: var(--fg-3);
}
@keyframes igts-idle {
  0%,
  20% {
    opacity: 1;
  }
  24%,
  94% {
    opacity: 0;
  }
  98%,
  100% {
    opacity: 1;
  }
}
@keyframes igts-busy {
  0%,
  20% {
    opacity: 0;
  }
  24%,
  44% {
    opacity: 1;
  }
  48%,
  100% {
    opacity: 0;
  }
}
@keyframes igts-ok {
  0%,
  44% {
    opacity: 0;
  }
  48%,
  90% {
    opacity: 1;
  }
  94%,
  100% {
    opacity: 0;
  }
}
.ig-ts:not(.is-live) * {
  animation-play-state: paused !important;
}
.ig-build-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 96px);
  align-items: center;
}
.ig-build .btn-row {
  margin-top: 2rem;
}
.ig-sock {
  position: relative;
  padding: 8px 0 0;
}
.ig-sk-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.ig-sk {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  text-align: center;
}
.ig-sk b {
  font-family: var(--f-display);
  font-weight: 650;
  font-size: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--fg);
}
.ig-sk .ig-pill {
  white-space: normal;
  padding: 4px 9px;
  font-size: 0.66rem;
  text-align: left;
}
.ig-plug {
  position: relative;
  width: 46px;
  height: 58px;
  margin-top: 26px;
}
.ig-plug::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 34px;
  border-radius: 12px 12px 8px 8px;
  background: linear-gradient(180deg, #2c3896, #171f62);
  border: 1px solid rgba(160, 176, 255, 0.5);
}
.ig-plug i {
  position: absolute;
  bottom: 0;
  width: 6px;
  height: 24px;
  border-radius: 2px;
  background: #7a8bea;
}
.ig-plug i:nth-child(1) {
  left: 11px;
}
.ig-plug i:nth-child(2) {
  right: 11px;
}
.ig-sk.s-wait .ig-plug::before {
  box-shadow: 0 0 22px rgba(94, 110, 255, 0.6);
  border-color: #5eeaff;
}
.ig-sk.s-road .ig-plug,
.ig-sk.s-ask .ig-plug {
  opacity: 0.6;
  animation: igplug 4.4s ease-in-out infinite;
  animation-delay: calc(var(--i) * -1.1s);
}
.ig-sk.s-road .ig-plug::before,
.ig-sk.s-ask .ig-plug::before {
  border-style: dashed;
  background: rgba(23, 31, 98, 0.35);
}
@keyframes igplug {
  0%,
  100% {
    transform: translateY(-20px);
  }
  46%,
  56% {
    transform: translateY(-9px);
  }
}
.ig-layer {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  margin-top: -8px;
  padding: 34px 20px 22px;
  border-radius: 20px;
  border: 1px solid rgba(120, 130, 255, 0.45);
  background: var(--ink-900);
  color: #eaf0ff;
  text-align: center;
  box-shadow: 0 40px 70px -36px rgba(20, 24, 120, 0.8);
}
.ig-layer b {
  font-family: var(--f-display);
  font-weight: 650;
  font-size: 1.1rem;
}
.ig-layer small {
  font-family: var(--f-mono);
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8b98cf;
}
.ig-layer-slots {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.ig-layer-slots i {
  justify-self: center;
  width: 30px;
  height: 9px;
  margin-top: -1px;
  border-radius: 0 0 5px 5px;
  background: #04061a;
  border: 1px solid rgba(160, 176, 255, 0.3);
  border-top: 0;
}
.ig-sock:not(.is-live) * {
  animation-play-state: paused !important;
}
@media (max-width: 1000px) {
  .ig-build-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .ig-sk-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .ig-sk-row,
  .ig-layer-slots {
    gap: 6px;
  }
  .ig-sk-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ig-layer-slots {
    left: 0;
    right: 0;
  }
  .ig-sk b {
    font-size: 0.8rem;
  }
  .ig-sk .ig-pill {
    font-size: 0.58rem;
    padding: 3px 6px;
    gap: 4px;
  }
  .ig-sk .ig-pill::before {
    display: none;
  }
  .ig-plug {
    transform: scale(0.8);
  }
}
.ig-faq {
  background: var(--ink-900);
  color: #eaf0ff;
  padding-bottom: clamp(56px, 7vw, 100px);
}
.ig-faq .ig-lead {
  margin: 1.4rem 0 1.6rem;
}
.ig-no em,
.ig-st-btns em,
.ig-pf-mock .chips em {
  font-family: var(--f-body);
}
.ig-pf-mock .chips em {
  font-family: var(--f-mono);
}
body[data-page='security'] .page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  max-width: 17ch;
}
.sx-note {
  flex-basis: 100%;
  margin-top: 4px;
  font-size: 0.84rem;
  color: var(--fg-3);
  max-width: 52ch;
}
.sx-hero-art {
  max-width: 640px;
  margin-inline: auto;
}
.sx-facts {
  background: var(--ink-900);
  border-block: 1px solid var(--bd);
  padding-block: clamp(36px, 5vw, 64px);
  color: var(--fg);
}
.sx-facts ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.sx-facts li {
  padding: 4px clamp(16px, 2.4vw, 36px);
  border-left: 1px solid var(--bd);
}
.sx-facts li:first-child {
  padding-left: 0;
  border-left: 0;
}
.sx-facts b {
  display: block;
  font-family: var(--f-display);
  font-weight: 650;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.sx-facts span {
  display: block;
  margin-top: 8px;
  color: var(--fg);
}
.sx-facts p {
  margin-top: 6px;
  font-size: 0.86rem;
  color: var(--fg-3);
}
@media (max-width: 800px) {
  .sx-facts ul {
    grid-template-columns: 1fr 1fr;
    gap: 28px 0;
  }
  .sx-facts li:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }
}
.sx-wide-viz {
  margin-top: clamp(40px, 5vw, 72px);
}
.sx-fine {
  margin-top: 26px;
}
.sx-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px clamp(20px, 3vw, 44px);
  margin-top: clamp(36px, 4.5vw, 64px);
}
.sx-points li {
  padding-top: 24px;
  border-top: 1px solid var(--bd-2);
}
.sx-points .card-ico {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
}
.sx-points h3 {
  font-size: 1.15rem;
}
.sx-points p {
  margin-top: 8px;
  font-size: 0.94rem;
  color: var(--fg-2);
}
.sx-defs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 32px;
  margin-top: 10px;
}
.sx-defs li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-top: 20px;
  border-top: 1px solid var(--bd-2);
}
.sx-defs .card-ico {
  flex: none;
  width: 40px;
  height: 40px;
  margin: 0;
}
.sx-defs h3 {
  font-size: 1.08rem;
}
.sx-defs p {
  margin-top: 6px;
  font-size: 0.92rem;
  color: var(--fg-2);
}
@media (max-width: 900px) {
  .sx-points {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .sx-defs {
    grid-template-columns: 1fr;
  }
}
.sx-iso:not(.is-live) *,
.sx-lockwin:not(.is-live) *,
.sx-tokwin:not(.is-live) *,
.sx-permwin:not(.is-live) *,
.sx-auditwin:not(.is-live) *,
.sx-cardwin:not(.is-live) * {
  animation-play-state: paused !important;
}
.sx-cn {
  position: relative;
  display: block;
  height: 18px;
}
.sx-cn i {
  position: absolute;
  left: 0;
  right: 0;
  top: 8px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
}
.sx-cn b {
  position: absolute;
  right: -2px;
  top: 3px;
  width: 9px;
  height: 12px;
  background: #5eeaff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.sx-run {
  display: grid;
  justify-items: start;
  padding: 16px 22px 0;
  color: var(--cyan);
}
.sx-run > * {
  grid-area: 1 / 1;
}
.sx-run .bad {
  color: #ff8fb0;
}
.sx-stgs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding: 14px 22px 22px;
}
.sx-stg {
  position: relative;
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--bd);
  background: rgba(255, 255, 255, 0.03);
  transition: opacity 0.4s var(--ease-out), border-color 0.3s ease, background-color 0.3s ease;
}
.ig-loop.is-armed .sx-stg:not(.on) {
  opacity: 0.28;
}
.sx-stg.on {
  border-color: rgba(94, 234, 255, 0.5);
  background: rgba(94, 234, 255, 0.05);
}
.sx-stg.off {
  border-color: rgba(255, 143, 176, 0.65);
  background: rgba(255, 143, 176, 0.07);
}
.sx-stg-h {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sx-stg-h i {
  display: grid;
  place-items: center;
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--bd-2);
}
.sx-stg.off .sx-stg-h i {
  color: #ff8fb0;
}
.sx-stg h4 {
  font-family: var(--f-display);
  font-weight: 650;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}
.sx-stg code {
  font-family: var(--f-mono);
  font-size: 0.76rem;
  color: var(--cyan);
  overflow-wrap: anywhere;
}
.sx-stg code.bad {
  color: #ff8fb0;
}
.sx-codes {
  display: grid;
}
.sx-codes > * {
  grid-area: 1 / 1;
}
.sx-stg p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--fg-2);
}
.sx-stg > .sx-cn {
  position: absolute;
  top: 25px;
  right: -20px;
  width: 20px;
}
.sx-dbs {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.sx-dbs li {
  position: relative;
  flex: 1;
  display: grid;
  justify-items: center;
  gap: 2px;
  padding: 8px 4px 6px;
  border-radius: 10px;
  border: 1px solid var(--bd);
  color: var(--fg-3);
  opacity: 0.55;
  transition: opacity 0.35s ease, color 0.35s ease, border-color 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease;
}
.sx-dbs li b {
  font-family: var(--f-mono);
  font-size: 0.7rem;
}
.sx-dbs li i {
  position: absolute;
  top: 4px;
  right: 4px;
  display: grid;
}
.sx-dbs li.on,
.ig-loop:not(.is-armed) .sx-dbs li.hit {
  opacity: 1;
  color: #fff;
  border-color: #5eeaff;
  background: rgba(94, 234, 255, 0.12);
  box-shadow: 0 0 22px rgba(94, 234, 255, 0.3);
}
.sx-deny {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 22px 22px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 143, 176, 0.4);
  background: rgba(255, 143, 176, 0.08);
  color: #ffb3c8;
  font-size: 0.9rem;
}
.sx-deny svg {
  flex: none;
  color: #ff8fb0;
}
@media (max-width: 900px) {
  .sx-stgs {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .sx-stg > .sx-cn {
    display: none;
  }
}
.sx-lock-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
}
.sx-sign,
.sx-adm {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--bd);
  background: rgba(255, 255, 255, 0.03);
}
.sx-sign h4,
.sx-adm h4 {
  font-family: var(--f-display);
  font-weight: 650;
  font-size: 1.02rem;
}
.sx-sign {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.sx-sign.on {
  border-color: rgba(255, 143, 176, 0.6);
  box-shadow: 0 0 0 4px rgba(255, 143, 176, 0.08);
}
.sx-fld {
  display: grid;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--bd-2);
}
.sx-fld small {
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.sx-fld b {
  font-size: 0.9rem;
  font-weight: 500;
  color: #e6ebff;
}
.sx-dots {
  display: flex;
  gap: 6px;
  padding: 2px 0;
}
.sx-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  transition: background-color 0.25s ease;
}
.sx-dot.on {
  background: #ff6f9a;
}
.sx-go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--grad-btn);
  transition: opacity 0.3s ease;
}
.sx-sign.on .sx-go {
  opacity: 0.35;
}
.sx-msgs {
  display: grid;
  min-height: 1.5em;
}
.sx-msgs em,
.sx-abadge em {
  grid-area: 1 / 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-style: normal;
  font-size: 0.8rem;
}
.sx-msgs .bad,
.sx-abadge .bad {
  color: #ffb3c8;
}
.sx-msgs .good,
.sx-abadge .good {
  color: #37e6a0;
}
.sx-arow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--bd-2);
}
.sx-av {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.06);
}
.sx-arow b {
  font-size: 0.9rem;
  font-weight: 600;
}
.sx-abadge {
  display: grid;
  margin-left: auto;
}
.sx-abadge em {
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 600;
}
.sx-abtn {
  flex-basis: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--grad-btn);
}
.sx-abtn.cur {
  animation: igbtn 1.1s ease-in-out infinite;
}
@media (max-width: 560px) {
  .sx-lock-grid {
    grid-template-columns: 1fr;
  }
}
.sx-tkrows {
  display: grid;
  gap: 18px;
  padding: 20px;
}
.sx-tkrow {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}
.sx-tkl b {
  display: block;
  font-family: var(--f-display);
  font-weight: 650;
  font-size: 0.95rem;
  line-height: 1.15;
}
.sx-tkl small {
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.sx-tks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.sx-tk {
  position: relative;
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--bd-2);
  background: rgba(255, 255, 255, 0.04);
}
.sx-tk > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.7rem;
  color: #dbe3ff;
  text-transform: none;
  letter-spacing: 0.02em;
}
.sx-tk .bar {
  display: block;
  height: 4px;
  border-radius: 2px;
  background: var(--grad);
  transform-origin: left center;
}
.sx-tk em {
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 0.56rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ff8fb0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.sx-tk.ref em {
  color: #ffc36b;
}
.ig-loop.is-armed .sx-tk.on:not(.cur) em {
  opacity: 1;
}
.sx-tk.acc.cur .bar {
  animation: sxdeplete 1.4s linear both;
}
.ig-loop.is-armed .sx-tk.acc.on:not(.cur) .bar {
  transform: scaleX(0.02);
}
@keyframes sxdeplete {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0.06);
  }
}
.ig-loop.is-armed .sx-tk.ref.on:not(.cur) {
  opacity: 0.5;
}
.ig-loop.is-armed .sx-tk.ref.on:not(.cur) > span {
  text-decoration: line-through;
}
.sx-tks.rot .sx-tk:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  width: 10px;
  height: 2px;
  background: var(--grad);
}
@media (max-width: 640px) {
  .sx-tkrow {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .sx-tks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sx-tks.rot .sx-tk::after {
    display: none;
  }
}
.sx-pm-flags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  padding: 16px 20px 8px;
  color: var(--fg-3);
}
.sx-flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid var(--bd-2);
  font-style: normal;
  font-size: 0.78rem;
  color: var(--fg-3);
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
.sx-flag.cash.on,
.ig-loop:not(.is-armed) .sx-flag.cash {
  color: #fff;
  border-color: rgba(94, 234, 255, 0.6);
  background: rgba(94, 234, 255, 0.12);
}
.sx-flag-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #37e6a0;
}
.sx-pm-cols,
.sx-pr {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) repeat(3, minmax(52px, 1fr));
  align-items: center;
  gap: 8px;
  padding-inline: 20px;
}
.sx-pm-cols {
  padding-top: 10px;
  padding-bottom: 8px;
  text-align: center;
  font-size: 0.6rem;
  color: var(--fg-3);
  border-bottom: 1px solid var(--bd);
}
.sx-pr {
  min-height: 54px;
  border-bottom: 1px solid rgba(150, 170, 255, 0.08);
}
.sx-pn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
  font-size: 0.95rem;
}
.sx-exc {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px dashed rgba(255, 195, 107, 0.55);
  color: #ffc36b;
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.04em;
}
.sx-sw {
  position: relative;
  justify-self: center;
  width: 38px;
  height: 22px;
  border-radius: 999px;
  background: var(--grad-btn);
  transition: background 0.3s ease;
}
.sx-sw::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transform: translateX(16px);
  transition: transform 0.3s var(--ease-out), background-color 0.3s ease;
}
.sx-sw.is-off:not(.on),
.sx-sw.off {
  background: rgba(255, 255, 255, 0.14);
}
.sx-sw.is-off:not(.on)::after,
.sx-sw.off::after {
  transform: none;
  background: #aab5dd;
}
.sx-prs {
  padding-bottom: 8px;
}
@media (max-width: 560px) {
  .sx-pm-cols,
  .sx-pr {
    grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(40px, 1fr));
    padding-inline: 14px;
    gap: 4px;
  }
  .sx-pn {
    font-size: 0.84rem;
  }
}
.sx-aud-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.sx-evs {
  padding: 22px 20px 6px;
  border-right: 1px solid var(--bd);
}
.sx-ev {
  position: relative;
  display: grid;
  grid-template-columns: 44px 10px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 22px;
}
.sx-ev::before {
  content: '';
  position: absolute;
  left: 61px;
  top: 16px;
  bottom: -2px;
  width: 1px;
  background: var(--bd-2);
}
.sx-ev:last-child::before {
  display: none;
}
.sx-ev .tm {
  padding-top: 3px;
  font-size: 0.62rem;
  color: var(--fg-3);
}
.sx-ev .pt {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 50%;
  background: #5eeaff;
  box-shadow: 0 0 0 4px rgba(94, 234, 255, 0.15);
}
.sx-ev.bad .pt {
  background: #ff8fb0;
  box-shadow: 0 0 0 4px rgba(255, 143, 176, 0.16);
}
.sx-ev b {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
}
.sx-ev small {
  font-size: 0.76rem;
  color: var(--fg-3);
}
.sx-ev .rs {
  display: inline-flex;
  margin-top: 6px;
  padding: 3px 9px;
  border-radius: 8px;
  border: 1px solid rgba(255, 143, 176, 0.3);
  background: rgba(255, 143, 176, 0.1);
  color: #ffb3c8;
  font-size: 0.72rem;
}
.sx-aud-r {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 20px;
}
.sx-rep,
.sx-logs {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--bd);
  background: rgba(255, 255, 255, 0.03);
}
.sx-rep h4,
.sx-logs h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.sx-logs h4 em {
  margin-left: auto;
  font-style: normal;
  color: #ffc36b;
}
.sx-rep-c,
.sx-rep-r {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1.25fr 1.3fr;
  gap: 6px;
  font-size: 0.7rem;
  line-height: 1.3;
}
.sx-rep-c {
  padding-bottom: 6px;
  border-bottom: 1px solid var(--bd);
  font-size: 0.54rem;
  color: var(--fg-3);
}
.sx-rep-r {
  padding-top: 8px;
  color: #e6ebff;
}
.sx-logs ul {
  display: grid;
  gap: 5px;
}
.sx-logs li {
  display: grid;
  grid-template-columns: 60px 40px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.68rem;
}
.sx-logs li b {
  color: #7fb6ff;
  font-weight: 500;
}
.sx-logs li span {
  color: var(--fg-3);
}
.sx-logs li code {
  font-family: var(--f-mono);
  color: #dbe3ff;
}
@media (max-width: 760px) {
  .sx-aud-grid {
    grid-template-columns: 1fr;
  }
  .sx-evs {
    border-right: 0;
    border-bottom: 1px solid var(--bd);
  }
}
.sx-rack {
  gap: 8px;
}
.sx-rk {
  display: grid;
  gap: 4px;
}
.sx-rk small {
  font-size: 0.56rem;
  color: var(--fg-3);
}
.sx-rk span {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.sx-rk i {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  border: 1px solid var(--bd-2);
}
.ig-pfs.on .sx-rk i,
.ig-loop:not(.is-armed) .sx-rk i {
  background: var(--grad);
  border-color: transparent;
}
.ig-loop.is-armed .ig-pfs.on .sx-rk i {
  animation: sxfill 0.4s var(--ease-out) both;
  animation-delay: calc(var(--k) * 70ms);
}
@keyframes sxfill {
  from {
    background: transparent;
    border-color: var(--bd-2);
    transform: scale(0.6);
  }
  to {
    background: var(--grad);
    border-color: transparent;
    transform: none;
  }
}
.sx-restore .chips {
  display: flex;
}
.sx-cw {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) auto minmax(0, 1.3fr) auto minmax(0, 1.1fr);
  align-items: center;
  gap: 6px;
  padding: 26px 20px;
}
.sx-box {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  min-height: 158px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--bd);
  background: rgba(255, 255, 255, 0.03);
  transition: opacity 0.4s var(--ease-out), border-color 0.3s ease;
}
.ig-loop.is-armed .sx-box:not(.on) {
  opacity: 0.28;
}
.sx-box.on {
  border-color: rgba(94, 234, 255, 0.45);
}
.sx-box-h {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sx-box-h svg {
  color: var(--cyan);
}
.sx-box-h b {
  font-family: var(--f-display);
  font-weight: 650;
  font-size: 0.92rem;
  line-height: 1.15;
}
.sx-box > small {
  font-size: 0.58rem;
  color: var(--fg-3);
}
.sx-field {
  display: grid;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid var(--bd-2);
}
.sx-field small {
  font-family: var(--f-mono);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.sx-type {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}
.sx-type b {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
}
.ig-loop.is-armed .sx-type {
  width: 0;
}
.ig-loop.is-armed .sx-box.on .sx-type {
  width: 100%;
  transition: width 1.1s steps(19);
}
.sx-only {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-self: start;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px dashed rgba(255, 195, 107, 0.5);
  color: #ffc36b;
  font-size: 0.66rem;
}
.sx-res,
.sx-nodata {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
}
.sx-res {
  color: #37e6a0;
}
.sx-nodata {
  color: var(--fg-3);
}
.sx-nodata svg {
  color: #ff8fb0;
}
.sx-cn.h {
  width: clamp(30px, 4.5vw, 58px);
}
.sx-cn.h em {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  font-style: normal;
  font-size: 0.54rem;
  color: var(--fg-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
@media (max-width: 760px) {
  .sx-cw {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .sx-cn.h {
    display: none;
  }
  .sx-box {
    min-height: 0;
  }
}
.sx-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.sx-stack li {
  padding: 22px;
}
.sx-stack li > .mono {
  color: var(--accent);
  font-size: 0.78rem;
}
.sx-privacy {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--fg-2);
}
.sx-privacy > svg {
  flex: none;
  margin-top: 3px;
  color: var(--accent);
}
.sx-privacy .link-arrow {
  margin-left: 6px;
}
@media (max-width: 560px) {
  .sx-stack {
    grid-template-columns: 1fr;
  }
}
.sx-msgs em,
.sx-abadge em,
.sx-flag,
.sx-logs h4 em {
  font-family: var(--f-body);
}
.sx-logs h4 em {
  font-family: var(--f-mono);
  font-size: 0.6rem;
}
.sx-exc {
  font-family: var(--f-mono);
}
.sx-exc {
  border-radius: 8px;
}
