/**
 * Cyborg UI — product tiles, product page, checkout, features, accounts, home
 */

:root {
  --cyborg-gold: #d4af37;
  --cyborg-gold-dim: rgba(212, 175, 55, 0.18);
  --cyborg-green: #d4d4d8;
  --cyborg-green-dim: rgba(255, 255, 255, 0.08);
  --cyborg-accent-glow: rgba(255, 255, 255, 0.1);
}

/* ── Home ── */
.home-cyborg {
  position: relative;
  padding: clamp(1.5rem, 4vw, 3rem) 0 2rem;
  overflow: hidden;
}

.home-cyborg__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(255, 255, 255, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(255, 255, 255, 0.05), transparent 50%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

.home-cyborg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 20%, transparent 75%);
  opacity: 0.6;
}

.home-cyborg__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.5);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cyborg-muted);
  letter-spacing: 0.02em;
}

.home-cyborg__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.65);
  flex-shrink: 0;
}

.home-cyborg__copy {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.home-cyborg__copy.is-visible {
  opacity: 1;
  transform: none;
}

.home-cyborg {
  min-height: calc(100vh - 5rem);
  padding-bottom: 2rem;
}

.home-cyborg__accent {
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.55) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-cyborg__hero {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .home-cyborg__hero {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 1.15fr);
    gap: 3rem;
  }
}

.home-cyborg__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  color: var(--cyborg-muted);
}

.home-cyborg__rating i {
  color: var(--cyborg-gold, #d4af37);
  font-size: 0.75rem;
}

.home-cyborg__title {
  margin: 0 0 0.35rem;
  font-size: clamp(2.4rem, 1.6rem + 3.5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.02;
  text-shadow: 0 0 60px rgba(255, 255, 255, 0.12);
}

.home-cyborg__brand {
  display: none;
}

.home-cyborg__lead {
  margin: 0 0 1.5rem;
  max-width: 46ch;
  color: var(--cyborg-dim);
  font-size: 1.05rem;
  line-height: 1.65;
}

.home-cyborg__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.home-cyborg__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-cyborg__stats li {
  margin: 0;
}

.home-cyborg__stats strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
}

.home-cyborg__stats span {
  font-size: 0.82rem;
  color: var(--cyborg-muted);
}

.home-cyborg__loader {
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-showcase__frame .home-loader-embed {
  width: 100%;
}

.home-cyborg__highlights {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.65rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .home-cyborg__highlights {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-cyborg__highlight {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: var(--cyborg-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.5);
  color: #fff !important;
  text-decoration: none !important;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.home-cyborg__highlight:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.home-cyborg__highlight-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 1rem;
  opacity: 0.9;
}

.home-cyborg__highlight strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
}

.home-cyborg__highlight span {
  display: block;
  font-size: 0.78rem;
  color: var(--cyborg-muted);
  margin-top: 0.1rem;
}

.home-cyborg__highlight-arrow {
  margin-left: auto;
  opacity: 0.4;
  font-size: 0.8rem;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.home-cyborg__highlight:hover .home-cyborg__highlight-arrow {
  transform: translateX(4px);
  opacity: 1;
}

.home-cyborg__loader .home-loader-embed__scaler {
  max-width: 100%;
  width: 100%;
}

.home-cyborg__perks {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .home-cyborg__perks {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-cyborg__perk {
  padding: 1.25rem 1.15rem;
  border-radius: var(--cyborg-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.55);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.home-cyborg__perk:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.home-cyborg__perk i {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.65rem;
  opacity: 0.9;
}

.home-cyborg__perk h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 800;
}

.home-cyborg__perk p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--cyborg-dim);
  line-height: 1.5;
}

.home-cyborg__strip {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.65rem;
  padding: 1.5rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .home-cyborg__strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-cyborg__strip-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.15rem;
  border-radius: var(--cyborg-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.45);
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.home-cyborg__strip-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

.home-cyborg__strip-link i {
  opacity: 0.5;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.home-cyborg__strip-link:hover i {
  transform: translateX(4px);
  opacity: 1;
}

.cyborg-btn--glow {
  box-shadow: 0 0 32px rgba(255, 255, 255, 0.2);
}

/* ── Product tiles grid — 3 per row (catalog style) ── */
.cyborg-tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

@media (max-width: 991px) {
  .cyborg-tiles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 599px) {
  .cyborg-tiles-grid {
    grid-template-columns: 1fr;
  }
}

.cyborg-tiles-grid__cell {
  min-width: 0;
  display: flex;
}

.cyborg-tiles-grid__cell > .cyborg-tile {
  flex: 1;
  width: 100%;
}

.cyborg-tile {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(6, 6, 8, 0.96);
  text-decoration: none !important;
  color: #fff !important;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.32s ease, box-shadow 0.32s ease;
}

/* Poster-style catalog tile */
.cyborg-tile--poster {
  aspect-ratio: 3 / 4;
  min-height: 280px;
  border-radius: 14px;
}

.cyborg-tile--poster .cyborg-tile__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cyborg-tile--poster .cyborg-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.cyborg-tile--poster .cyborg-tile__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.92) 100%);
}

.cyborg-tile--poster .cyborg-tile__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem 1.05rem 1.1rem;
  pointer-events: none;
}

.cyborg-tile--poster .cyborg-tile__title {
  margin: 0 0 auto;
  padding-top: 2.5rem;
  font-size: clamp(1.1rem, 0.9rem + 1vw, 1.45rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.05;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9);
}

.cyborg-tile--poster .cyborg-tile__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.65rem;
}

.cyborg-tile--poster .cyborg-tile__from {
  display: block;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: none;
  letter-spacing: 0;
}

.cyborg-tile--poster .cyborg-tile__price {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}

.cyborg-tile--poster .cyborg-tile__status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--status-color, #4ade80);
  white-space: nowrap;
}

.cyborg-tile--poster:hover .cyborg-tile__media img {
  transform: scale(1.06);
}

.cyborg-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 28px rgba(255, 255, 255, 0.05);
}

.cyborg-tile--out {
  opacity: 0.85;
}

.cyborg-tile--out:hover {
  transform: translateY(-3px);
}

.cyborg-tile__bg {
  position: absolute;
  inset: 0;
}

.cyborg-tile__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.cyborg-tile:hover .cyborg-tile__bg img {
  transform: scale(1.08);
}

.cyborg-tile__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.5) 55%, rgba(0, 0, 0, 0.94) 100%);
  z-index: 1;
}

.cyborg-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  font-family: var(--cyborg-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
}

.cyborg-badge--oos {
  top: 0.55rem;
  left: 0.55rem;
  transform: none;
  padding: 0.4rem 0.65rem;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: #fecaca;
  border-color: rgba(252, 165, 165, 0.45);
  background: rgba(0, 0, 0, 0.88);
  box-shadow: 0 0 16px rgba(252, 165, 165, 0.12);
}

.cyborg-tile--box .cyborg-badge--oos {
  top: 0.5rem;
  right: 0.5rem;
  left: auto;
}

.cyborg-tile--out .cyborg-tile__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

.cyborg-badge--status {
  top: 0.55rem;
  right: 0.55rem;
  color: var(--badge-color, var(--cyborg-green));
  border-color: color-mix(in srgb, var(--badge-color, #86efac) 40%, transparent);
}

.cyborg-tile--box .cyborg-badge--status,
.cyborg-tile--box .cyborg-badge--oos {
  z-index: 3;
}

.cyborg-tile__foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  padding: 1rem 1.05rem 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 42%;
}

.cyborg-tile__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.cyborg-tile:hover .cyborg-tile__title {
  transform: translateY(-10px);
}

.cyborg-tile__meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition: max-height 0.35s ease, opacity 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.cyborg-tile:hover .cyborg-tile__meta {
  max-height: 3rem;
  opacity: 1;
  transform: translateY(0);
}

.cyborg-tile__from {
  font-family: var(--cyborg-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
}

.cyborg-tile__price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--cyborg-green);
  text-shadow: 0 0 16px var(--cyborg-accent-glow);
}

/* ── Product page hero (full-bleed immersive) ── */
.cyborg-product--immersive {
  margin-top: -0.5rem;
}

.cyborg-product--immersive .cyborg-product__hero {
  position: relative;
  min-height: min(88vh, 920px);
  padding: 1.5rem 0 3rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
  background: #000 center top / cover no-repeat;
  background-image: var(--cyborg-hero, none);
  overflow: hidden;
}

.cyborg-product--immersive .cyborg-product__hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.55) 38%, rgba(0, 0, 0, 0.75) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.55) 55%, #000 100%);
  pointer-events: none;
}

.cyborg-product__desc--plain {
  background: transparent;
  border: none;
  padding: 0;
  max-width: 56ch;
}

.cyborg-product--cheat .cyborg-product__title {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cyborg-product__hero-inner {
  position: relative;
  z-index: 1;
}

.cyborg-product__crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.82rem;
  color: var(--cyborg-muted);
}

.cyborg-product__crumbs a {
  color: rgba(255, 255, 255, 0.65) !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.cyborg-product__crumbs a:hover {
  color: #fff !important;
}

.cyborg-product__hero-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 992px) {
  .cyborg-product__hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 400px);
    gap: 2.5rem;
  }
}

.cyborg-product__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.cyborg-product__tag {
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--cyborg-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.4);
}

.cyborg-product__tag--live {
  color: var(--cyborg-green);
  border-color: rgba(255, 255, 255, 0.35);
}

.cyborg-product__title {
  margin: 0 0 0.85rem;
  font-size: clamp(2.2rem, 1.4rem + 3.5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 0.95;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.85);
}

.cyborg-product--spoofer .cyborg-product__title {
  font-family: var(--cyborg-mono);
  letter-spacing: 0.08em;
}

.cyborg-product__desc {
  max-width: 52ch;
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.45);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.6;
}

.cyborg-product__status-line {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
}

/* Spoofer picker */
.spoofer-picker {
  margin-top: 1.25rem;
}

.spoofer-picker__label {
  margin: 0 0 0.65rem;
  font-family: var(--cyborg-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
}

.spoofer-picker__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.spoofer-picker__tab {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.spoofer-picker__tab:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.spoofer-picker__tab.is-active {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.1);
}

.cyborg-product--spoofer.is-reported-line .spoofer-picker__tab.is-active {
  border-color: var(--cyborg-gold);
  background: var(--cyborg-gold-dim);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.15);
}

.cyborg-product--spoofer.is-reported-line .spoofer-picker__card.is-active {
  border-color: var(--cyborg-gold);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.35) inset;
}

.spoofer-picker__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.spoofer-picker__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  text-align: left;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.spoofer-picker__card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
}

.spoofer-picker__card.is-active {
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28) inset;
}

.spoofer-picker__card.is-active.is-reported,
.cyborg-product--spoofer.is-reported-line .spoofer-picker__card.is-active:last-child {
  border-color: var(--cyborg-gold);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.3) inset;
}

.spoofer-picker__card strong {
  font-size: 0.95rem;
}

.spoofer-picker__range {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.spoofer-picker__card.is-active.is-reported .spoofer-picker__range,
.cyborg-product--spoofer.is-reported-line .spoofer-picker__card.is-active .spoofer-picker__range {
  color: var(--cyborg-gold);
}

.spoofer-picker__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.spoofer-picker__tags em {
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.75);
}

.spoofer-picker__tags em.is-green {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.35);
}

.spoofer-picker__tags em.is-gold {
  color: var(--cyborg-gold);
  border-color: rgba(212, 175, 55, 0.4);
}

/* Checkout panel */
.cyborg-checkout {
  position: sticky;
  top: 5rem;
}

.cyborg-checkout-panel,
form.cyborg-checkout-panel {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 10, 12, 0.88);
  backdrop-filter: blur(16px);
  padding: 1.25rem 1.15rem 1.35rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.cyborg-checkout-form__label {
  display: block;
  margin-bottom: 0.55rem;
  font-family: var(--cyborg-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
}

.cyborg-durations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

@media (min-width: 400px) {
  .cyborg-durations {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cyborg-duration {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-height: 88px;
  padding: 0.75rem 0.55rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  cursor: pointer;
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.cyborg-duration:hover:not(:disabled) {
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.cyborg-duration.is-active {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.cyborg-duration.is-disabled,
.cyborg-duration:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.cyborg-duration__check {
  position: absolute;
  top: 6px;
  right: 6px;
  font-size: 0.75rem;
  color: #fff;
}

.cyborg-duration__price {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}

.cyborg-duration__name {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  line-height: 1.2;
}

.cyborg-duration__stock {
  font-size: 0.6rem;
  color: #fca5a5;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cyborg-payments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
  margin-top: 0.15rem;
}

.cyborg-payment {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  min-height: 64px;
  padding: 0.5rem 0.35rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.68rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.cyborg-payment:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.cyborg-payment.is-active {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.cyborg-payment__check {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 0.65rem;
}

.cyborg-payment__tag {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.12rem 0.35rem;
  border-radius: 4px;
  background: #fff;
  color: #000;
  white-space: nowrap;
}

.cyborg-payment__tag--muted {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.cyborg-checkout-summary {
  margin: 1rem 0 0.75rem;
  padding: 0.75rem;
  text-align: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
  font-size: 0.88rem;
  font-weight: 700;
}

.cyborg-checkout-agree {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  color: var(--cyborg-dim);
  line-height: 1.45;
  cursor: pointer;
}

.cyborg-checkout-agree input {
  margin-top: 0.2rem;
  accent-color: #fff;
}

.cyborg-checkout-agree a {
  color: rgba(255, 255, 255, 0.85);
}

.cyborg-btn-buy {
  width: 100%;
  min-height: 48px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(55, 65, 81, 0.95) 0%, rgba(31, 41, 55, 0.98) 100%);
  color: #fff !important;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.cyborg-btn-buy:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.cyborg-btn-buy:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Checkout — readable text (not washed out / “disabled” look) */
.cyborg-checkout-form__label {
  color: rgba(255, 255, 255, 0.72);
}

.cyborg-payment {
  color: rgba(255, 255, 255, 0.9);
}

.cyborg-payment span {
  color: inherit;
}

.cyborg-checkout-summary {
  color: #fff;
}

.cyborg-checkout-agree {
  color: rgba(255, 255, 255, 0.78);
}

.cyborg-checkout-agree a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cyborg-duration__price {
  color: #fff;
  text-shadow: 0 0 12px var(--cyborg-accent-glow);
}

.cyborg-oos {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(252, 165, 165, 0.35);
  background: linear-gradient(135deg, rgba(127, 29, 29, 0.25), rgba(0, 0, 0, 0.5));
  color: #fecaca;
}

.cyborg-oos i {
  font-size: 1.25rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.cyborg-oos strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 0.15rem;
}

.cyborg-oos span {
  font-size: 0.82rem;
  opacity: 0.9;
}

/* Features + sysreq below fold */
.cyborg-product__below {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cyborg-below {
  padding: 3rem 0;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.cyborg-below__head {
  text-align: center;
  margin-bottom: 2rem;
}

.cyborg-below__head h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.cyborg-below__head p {
  margin: 0 auto;
  max-width: 52ch;
  color: var(--cyborg-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.cyborg-below__empty {
  text-align: center;
  color: var(--cyborg-dim);
  font-size: 0.9rem;
}

.cyborg-features-grid--editor {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .cyborg-features-grid--editor {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .cyborg-features-grid--editor {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cyborg-features-grid--editor > *,
.cyborg-features-grid--editor .row > [class*="col"] {
  min-width: 0;
}

.cyborg-features-grid--editor .card,
.cyborg-features-grid--editor > div > div,
.cyborg-features-grid--editor > article {
  height: 100%;
  padding: 1.15rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 10, 0.95);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.cyborg-features-grid--editor .card:hover,
.cyborg-features-grid--editor > div > div:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.cyborg-features-grid--editor h3,
.cyborg-features-grid--editor h4,
.cyborg-features-grid--editor strong {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 800;
}

.cyborg-features-grid--editor ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cyborg-features-grid--editor li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.4rem;
  font-size: 0.84rem;
  color: var(--cyborg-dim);
  line-height: 1.45;
}

.cyborg-features-grid--editor li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyborg-green);
  font-weight: 800;
  font-size: 0.75rem;
}

.cyborg-sysreq-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 10, 0.95);
  padding: 1.35rem 1.25rem 1.5rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.cyborg-sysreq-card__top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.cyborg-sysreq-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.8);
}

.cyborg-sysreq-card__top strong {
  font-size: 1rem;
}

.cyborg-sysreq-grid {
  display: grid;
  gap: 1.25rem 2rem;
}

@media (min-width: 768px) {
  .cyborg-sysreq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .cyborg-sysreq-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cyborg-sysreq-col__label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--cyborg-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
}

.cyborg-sysreq-col__label:not(:first-child) {
  margin-top: 0.85rem;
}

.cyborg-sysreq-item {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
  color: #fff;
  line-height: 1.45;
}

.cyborg-sysreq-item em {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  margin-top: 0.1rem;
}

.cyborg-sysreq-item em.is-muted,
.cyborg-sysreq-item .is-muted {
  color: var(--cyborg-muted);
}

.cyborg-sysreq-item.is-warn,
.cyborg-sysreq-item.is-warn em {
  color: #fbbf24;
}

.cyborg-sysreq-item.is-good em {
  color: var(--cyborg-green);
}

.cyborg-sysreq-prose {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
}

.cyborg-sysreq-prose h3,
.cyborg-sysreq-prose h4 {
  font-family: var(--cyborg-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
  margin: 1rem 0 0.5rem;
}

.cyborg-sysreq-prose ul {
  padding-left: 0;
  list-style: none;
}

.cyborg-sysreq-prose li {
  margin-bottom: 0.35rem;
}

.cyborg-related {
  padding: 2rem 0 3rem;
}

.cyborg-related h2 {
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  font-weight: 800;
}

/* Accounts — cheaters.market style */
.accounts-cm__stats-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin: 1.25rem 0 1.75rem;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.45);
}

.accounts-cm__stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.accounts-cm__stat .k {
  font-family: var(--cyborg-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
}

.accounts-cm__stat .v {
  font-weight: 800;
  font-size: 1.05rem;
}

.accounts-cm__stat .v.is-live {
  color: #fff;
}

.accounts-cm__title-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.accounts-cm__section-head h2 {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
  font-weight: 800;
}

.accounts-cm__section-head p {
  margin: 0;
  color: var(--cyborg-muted);
  font-size: 0.88rem;
}

/* Account card badges — single row, no overlap */
.acct-cm-card__badges {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  pointer-events: none;
}

.acct-cm-card__path {
  position: static;
  font-family: var(--cyborg-mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.65);
}

.acct-cm-card__status-pill {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.acct-cm-card__status-pill.is-out {
  color: #fca5a5;
  border-color: rgba(252, 165, 165, 0.35);
}

.acct-cm-card__delivery {
  font-size: 0.72rem;
  color: var(--cyborg-muted);
  font-family: var(--cyborg-mono);
}

.acct-cm-card__meta {
  flex-wrap: wrap;
}

/* Guide polish */
.cyborg-guide-page .cyborg-guide-section {
  margin-bottom: 1rem;
}

.cyborg-guide-page .cyborg-step {
  border-left: 2px solid rgba(255, 255, 255, 0.12);
  padding-left: 1rem;
  margin-left: 0.25rem;
}

.cyborg-guide-page .cyborg-guide-banner {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

/* Loader — larger on home */
.home-loader-embed--full {
  width: 100%;
}

.home-loader-embed--full .loader-exe--home {
  min-height: 440px;
}

@media (min-width: 992px) {
  .home-cyborg__loader .home-loader-embed__scaler {
    max-width: 640px;
  }
}

.products-v3__head {
  text-align: left;
  margin-bottom: 2rem;
}

.products-v3__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  margin: 0;
}

.products-v3__lead {
  margin: 0.5rem 0 0;
  max-width: 56ch;
  color: var(--cyborg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── Guide docs (Cyborg) ── */
.docs-page {
  padding: 1.5rem 0 4rem;
}

.docs-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding: 1.75rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(ellipse 80% 80% at 100% 0%, rgba(255, 255, 255, 0.06), transparent 50%),
    rgba(4, 4, 6, 0.92);
}

.docs-hero h1 {
  margin: 0.25rem 0 0.5rem;
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.docs-hero p {
  margin: 0;
  max-width: 52ch;
  color: var(--cyborg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.docs-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.docs-cards {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0 1.5rem;
}

@media (min-width: 640px) {
  .docs-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.docs-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.docs-card i {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 0.25rem;
}

.docs-card strong {
  font-size: 0.9rem;
}

.docs-card span {
  font-size: 0.78rem;
  color: var(--cyborg-muted);
}

.docs-card:hover,
.docs-card.is-active {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.docs-section-label {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
}

.docs-callout {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  margin: 1rem 0;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.85rem;
  color: var(--cyborg-dim);
}

.docs-callout--warn {
  border-color: rgba(212, 175, 55, 0.25);
  background: rgba(212, 175, 55, 0.06);
}

.docs-callout i {
  margin-top: 0.15rem;
  opacity: 0.7;
}

.docs-checklist {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  color: var(--cyborg-dim);
  font-size: 0.9rem;
  line-height: 1.7;
}

.docs-checklist li {
  margin-bottom: 0.35rem;
}

.docs-checklist kbd,
.docs-main__head kbd {
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.5);
  font-size: 0.8em;
  font-family: inherit;
}

.docs-step__arrow {
  margin-left: auto;
  opacity: 0.35;
  font-size: 0.75rem;
}

.docs-step:hover .docs-step__arrow {
  opacity: 0.9;
  transform: translateX(2px);
}

.docs-aside__card--progress {
  border-color: rgba(255, 255, 255, 0.14);
}

.docs-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 992px) {
  .docs-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 1.75rem;
  }
}

.docs-main__panel {
  padding: 1.75rem 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 4, 6, 0.92);
}

.docs-main__head h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
}

.docs-main__head p {
  margin: 0;
  color: var(--cyborg-muted);
  max-width: 52ch;
}

.docs-quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin: 1.25rem 0 1.5rem;
}

.docs-quick__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.45);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none !important;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.docs-quick__btn:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.docs-roadmap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.docs-roadmap__tab {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: var(--cyborg-muted);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.docs-roadmap__tab.is-active {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.docs-steps {
  display: grid;
  gap: 0.55rem;
}

.docs-step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  text-align: left;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.docs-step:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.docs-step__n {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.75rem;
  font-weight: 800;
}

.docs-step strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.docs-step span {
  display: block;
  font-size: 0.8rem;
  color: var(--cyborg-muted);
}

.docs-dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  margin-bottom: 0.55rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
}

.docs-dl__meta strong {
  display: block;
  font-size: 0.92rem;
}

.docs-dl__meta span {
  font-size: 0.78rem;
  color: var(--cyborg-muted);
}

.docs-block {
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
  margin-bottom: 1rem;
}

.docs-block h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
}

.docs-block p {
  margin: 0 0 0.75rem;
  color: var(--cyborg-muted);
  font-size: 0.88rem;
}

.docs-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.docs-aside__card {
  padding: 1rem;
  margin-bottom: 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 4, 6, 0.88);
}

.docs-aside__card h2 {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  font-weight: 800;
}

.docs-progress__meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--cyborg-muted);
  margin-bottom: 0.45rem;
}

.docs-progress__bar {
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.docs-progress__bar span {
  display: block;
  height: 100%;
  background: #fff;
  border-radius: inherit;
  transition: width 0.35s ease;
}

.docs-nav-search-wrap {
  position: relative;
  margin-bottom: 0.75rem;
}

.docs-nav-search-wrap i {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.45;
  font-size: 0.82rem;
}

.docs-nav-search {
  width: 100%;
  padding: 0.55rem 0.75rem 0.55rem 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 0.85rem;
}

.docs-nav-group {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.docs-nav-group__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.65rem 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.docs-nav-group__links {
  display: grid;
  gap: 0.35rem;
  padding-bottom: 0.65rem;
}

.docs-nav-link {
  width: 100%;
  text-align: left;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--cyborg-muted);
  font-size: 0.8rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.docs-nav-link.is-active,
.docs-nav-link:hover {
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.docs-discord {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 4, 6, 0.88);
  color: #fff !important;
  text-decoration: none !important;
}

.docs-discord i {
  font-size: 1.35rem;
  opacity: 0.85;
}

.docs-discord strong {
  display: block;
  font-size: 0.88rem;
}

.docs-discord span {
  font-size: 0.75rem;
  color: var(--cyborg-muted);
}

/* Accounts featured + title chips */
.accounts-cm__featured {
  margin-bottom: 2rem;
}

.accounts-cm__featured--full {
  grid-column: 1 / -1;
  margin-bottom: 0.5rem;
}

.acct-cm-featured {
  display: grid;
  gap: 0;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
  background: rgba(4, 4, 6, 0.96);
  transition: border-color 0.3s, box-shadow 0.3s;
}

@media (min-width: 768px) {
  .acct-cm-featured {
    grid-template-columns: 1.2fr 1fr;
  }
}

.acct-cm-featured:hover {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 48px rgba(255, 255, 255, 0.06);
}

.acct-cm-featured__media {
  position: relative;
  min-height: 220px;
  background: #050506;
}

.acct-cm-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}

.acct-cm-featured__body {
  padding: 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
}

.acct-cm-featured__eyebrow {
  font-family: var(--cyborg-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
}

.acct-cm-featured__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
}

.acct-cm-featured__desc {
  margin: 0;
  color: var(--cyborg-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.acct-cm-featured__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.acct-cm-featured__price {
  font-size: 1.25rem;
  font-weight: 800;
}

.accounts-cm__game-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.accounts-cm__game-chips .cyborg-chip {
  font-size: 0.78rem;
}

.accounts-cm__game-chips .cyborg-chip .count {
  opacity: 0.55;
  margin-left: 0.25rem;
}

/* Default feature cards */
.cyborg-features-grid--default {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .cyborg-features-grid--default {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .cyborg-features-grid--default {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cyborg-feat-card {
  padding: 1.15rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 10, 0.95);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.cyborg-feat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 222, 128, 0.25);
}

.cyborg-feat-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.65rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--cyborg-green);
  font-size: 0.85rem;
}

.cyborg-feat-card h3 {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 800;
}

.cyborg-feat-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cyborg-feat-card li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  color: var(--cyborg-dim);
}

.cyborg-feat-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyborg-green);
  font-weight: 800;
  font-size: 0.72rem;
}

/* Account product page (market style) */
.acct-product {
  background: #000;
}

.acct-product__top {
  padding: 1.5rem 0 2.5rem;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(74, 222, 128, 0.06), transparent 55%),
    #000;
}

.acct-product__crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.82rem;
  color: var(--cyborg-muted);
}

.acct-product__crumbs a {
  color: rgba(255, 255, 255, 0.65) !important;
  text-decoration: none !important;
}

.acct-product__layout {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 992px) {
  .acct-product__layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.acct-win {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 10, 12, 0.96);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.acct-win__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.55rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.45);
}

.acct-win__chrome span:not(.acct-win__label) {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.acct-win__label {
  margin-left: auto;
  font-family: var(--cyborg-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
}

.acct-win__body {
  padding: 1rem;
}

.acct-preview__banner {
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  background: #111 center/cover no-repeat;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.acct-preview__tiles,
.acct-win__tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
}

.acct-tile {
  padding: 0.7rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.4);
}

.acct-tile .k {
  display: block;
  font-family: var(--cyborg-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
  margin-bottom: 0.2rem;
}

.acct-tile .v {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}

.acct-buy__head h1 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 900;
}

.acct-buy__head > p {
  margin: 0 0 0.85rem;
  font-size: 0.85rem;
  color: var(--cyborg-muted);
  line-height: 1.5;
}

.acct-buy__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin-bottom: 1rem;
}

.acct-buy__price {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--cyborg-green);
}

.acct-buy__stock {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cyborg-green);
}

.acct-buy__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyborg-green);
  box-shadow: 0 0 8px var(--cyborg-green);
}

.acct-buy__delivery {
  font-size: 0.72rem;
  font-family: var(--cyborg-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
}

.acct-buy__fine {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: var(--cyborg-muted);
  line-height: 1.45;
}

.acct-win__cols {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .acct-win__cols {
    grid-template-columns: 1fr 1fr;
  }
}

.acct-win__cols h3 {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--cyborg-green);
}

.acct-win__cols ul {
  margin: 0;
  padding: 0 0 0 1rem;
  font-size: 0.8rem;
  color: var(--cyborg-dim);
  line-height: 1.55;
}

.acct-detail__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 992px) {
  .acct-detail__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.acct-product__below {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.accounts-cm--market .accounts-cm__hero--market {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Iron Man home */
.home-iron {
  position: relative;
  padding: clamp(1.5rem, 4vw, 3rem) 0 2.5rem;
  overflow: hidden;
}

.home-iron__scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(125, 211, 252, 0.02) 2px,
    rgba(125, 211, 252, 0.02) 4px
  );
  pointer-events: none;
  animation: iron-scan 8s linear infinite;
}

@keyframes iron-scan {
  from { transform: translateY(0); }
  to { transform: translateY(40px); }
}

.home-iron__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.home-iron__glow--a {
  width: 420px;
  height: 420px;
  top: -10%;
  right: 5%;
  background: rgba(125, 211, 252, 0.12);
}

.home-iron__glow--b {
  width: 320px;
  height: 320px;
  bottom: 10%;
  left: -5%;
  background: rgba(74, 222, 128, 0.08);
}

.home-iron__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(125, 211, 252, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 15%, transparent 70%);
  pointer-events: none;
}

.home-iron__hero {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 992px) {
  .home-iron__hero {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1.2fr);
    gap: 2.5rem;
  }
}

.home-iron__title {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 1.5rem + 3.5vw, 4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.home-iron__title-line {
  display: block;
  color: rgba(255, 255, 255, 0.88);
}

.home-iron__title-accent {
  display: block;
  background: linear-gradient(135deg, #fff 0%, var(--iron-cyan) 55%, var(--cyborg-green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.home-iron__lead {
  margin: 0 0 1.35rem;
  max-width: 46ch;
  color: var(--cyborg-dim);
  font-size: 1.02rem;
  line-height: 1.65;
}

.home-iron__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.home-iron__hud {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-iron__hud li {
  padding-left: 0.75rem;
  border-left: 2px solid var(--iron-cyan);
}

.home-iron__hud-k {
  display: block;
  font-family: var(--cyborg-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyborg-muted);
}

.home-iron__hud-v {
  font-weight: 800;
  font-size: 0.95rem;
}

.home-iron__loader-wrap {
  width: 100%;
}

.loader-showcase--iron {
  max-width: 100%;
}

.loader-showcase__frame--lg {
  padding: 0.75rem;
}

.loader-showcase--iron .loader-exe-scaler {
  max-width: 100%;
}

.home-iron__features {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .home-iron__features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-iron__feat {
  padding: 1.15rem;
  border-radius: 12px;
  border: 1px solid rgba(125, 211, 252, 0.15);
  background: rgba(0, 0, 0, 0.55);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-iron__feat:hover {
  border-color: rgba(125, 211, 252, 0.35);
  box-shadow: 0 0 32px rgba(125, 211, 252, 0.08);
}

.home-iron__feat i {
  color: var(--iron-cyan);
  margin-bottom: 0.5rem;
}

.home-iron__feat h3 {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
  font-weight: 800;
}

.home-iron__feat p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--cyborg-muted);
  line-height: 1.5;
}

/* Legal pages */
.legal-page {
  padding: 2.5rem 0 4rem;
  max-width: 800px;
  margin: 0 auto;
}

.legal-page__head {
  margin-bottom: 1.75rem;
}

.legal-page__head h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 900;
}

.legal-page__head p {
  margin: 0;
  color: var(--cyborg-muted);
}

.legal-page__body {
  padding: 1.5rem 1.35rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 10, 0.95);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.legal-page__body h2,
.legal-page__body h3 {
  margin-top: 1.25rem;
  font-size: 1.05rem;
}

/* Feedback v2 */
.feedback-page--v2 .feedback-page__hero {
  text-align: center;
  margin-bottom: 2rem;
}

.feedback-page--v2 .feedback-page__hero h1 {
  margin: 0.25rem 0 0.5rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
}

.feedback-page__lead {
  margin: 0 auto;
  max-width: 48ch;
  color: var(--cyborg-muted);
}

.feedback-page__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .feedback-page__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Status polish */
.status-v3__hero h1 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
}

.status-v3__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

