﻿/**
 * Cyborg void theme — vanta black, glowing white accents
 */
html {
  font-size: 125%;
}
:root {
  --void-bg: #000000;
  --void-surface: #000000;
  --void-surface-2: #0a0a0a;
  --void-border: rgba(255, 255, 255, 0.12);
  --void-text: #ffffff;
  --void-muted: #8a8a8a;
  --void-dim: #d4d4d4;
  --void-glow: rgba(255, 255, 255, 0.65);
  --void-accent: #ffffff;
  --void-green: #ffffff;
}

body.cyborg-app {
  background: #000000 !important;
  color: var(--void-text) !important;
}

body.cyborg-app .flex-wrapper,
body.cyborg-app .cyborg-app__inner,
body.cyborg-app .cyborg-main {
  background: transparent !important;
  color: var(--void-text) !important;
}

#cyborg-starfield.cyborg-starfield,
.cyborg-ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #000;
}
.cyborg-ambient__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.065) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 92% 82% at 50% 42%, #000 18%, transparent 74%);
  opacity: 0.78;
}
.cyborg-ambient__beam {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: ambient-drift 18s ease-in-out infinite alternate;
}
.cyborg-ambient__beam--a {
  width: 55vw;
  height: 55vw;
  top: -20%;
  left: -10%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.09) 0%, transparent 70%);
}
.cyborg-ambient__beam--b {
  width: 45vw;
  height: 45vw;
  bottom: -25%;
  right: -5%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 68%);
  animation-delay: -9s;
}
@keyframes ambient-drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(3%, 2%) scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .cyborg-ambient__beam { animation: none; }
}

.cyborg-vignette {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0%, transparent 12%, transparent 88%, rgba(0, 0, 0, 0.08) 100%) !important;
  box-shadow: none !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

body.cyborg-app:has(.home-cyborg) .cyborg-vignette {
  background: transparent !important;
}

.portal-v3__hero-glow,
.iron-portal__hero-glow,
.home-v3__glow {
  display: none !important;
}

/* —— Buttons —— */
.void-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.15rem;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--void-border);
  transition: 0.2s ease;
  cursor: pointer;
}
.void-btn--solid {
  background: var(--void-accent) !important;
  color: #09090b !important;
  border-color: transparent !important;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.12);
}
.void-btn--solid:hover {
  box-shadow: 0 0 32px rgba(255, 255, 255, 0.22);
  color: #09090b !important;
  background: #fff !important;
}
.void-btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--void-text);
}
.void-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--void-text);
}
.void-btn--danger {
  border-color: rgba(248, 113, 113, 0.35);
  color: #fca5a5;
}

.cyborg-checkout-form .btn-primary:not(.cyborg-btn-buy),
.cyborg-checkout-form .btn-outline-primary.w-100:not(.cyborg-btn-buy) {
  background: var(--void-accent) !important;
  border-color: transparent !important;
  color: #09090b !important;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}
.cyborg-checkout-form .btn-primary:hover:not(:disabled) {
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.18);
}

/* —— Window chrome —— */
.void-window {
  border-radius: 14px;
  border: 1px solid var(--void-border);
  background: #000000;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}
.void-window__bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem;
  border-bottom: 1px solid var(--void-border);
  background: #000000;
}
.void-window__bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25) !important;
}
.void-window__bar span {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: var(--void-muted);
}
.void-window__body { padding: 1.1rem 1.25rem; }

.void-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  font-size: 0.78rem;
  color: var(--void-muted);
  margin-bottom: 1rem;
}
.void-crumbs a { color: var(--void-dim); text-decoration: none; }
.void-crumbs a:hover { color: var(--void-text); }
.void-crumbs span { opacity: 0.45; }

.void-page { padding: 2rem 0 3.5rem; }
.void-page__head { margin-bottom: 1.75rem; max-width: 52ch; }
.void-page__head h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--void-text);
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.08);
}
.void-page__head p { margin: 0; color: var(--void-muted); font-size: 0.95rem; }
.void-muted { color: var(--void-muted); }
.void-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--void-muted);
}

.void-chip {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--void-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--void-dim);
  font-size: 0.78rem;
  cursor: pointer;
}
.void-chip.is-active,
.void-chip:hover {
  color: var(--void-text);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

/* —— Home —— */
.home-void {
  padding: 1.5rem 0;
  position: relative;
}
.home-void--fit {
  min-height: calc(100vh - 5rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-void__shell {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.home-void__card {
  position: relative;
  padding: 3.5rem 2.5rem 3rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 255, 255, 0.06), transparent 55%),
    rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(16px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 32px 80px rgba(0, 0, 0, 0.55);
  text-align: center;
}
.home-void__card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.18), transparent 40%, transparent 60%, rgba(255, 255, 255, 0.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.home-void__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--void-muted);
}
.home-void__title {
  margin: 0 0 2rem;
  font-size: clamp(2.75rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: #fff;
}
.home-void__elite {
  color: #fff;
  text-shadow: 0 0 32px rgba(255, 255, 255, 0.5);
}
.home-void__lead {
  margin: 0 auto 1.65rem;
  color: var(--void-muted);
  font-size: 0.92rem;
  max-width: 34ch;
  line-height: 1.55;
}
.home-void__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.home-void__cta-primary {
  min-width: 12rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
}
.home-void__cta-secondary {
  min-width: 6.5rem;
}

/* —— Product tiles —— */
.void-tiles-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  column-gap: 1rem;
  row-gap: 0.75rem;
}
@media (min-width: 640px) {
  .void-tiles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .void-tiles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 1.1rem;
    row-gap: 0.85rem;
  }
}
@media (min-width: 1024px) {
  .void-tiles-grid--cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .void-tiles-grid--cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.void-tile {
  position: relative;
  display: block;
  aspect-ratio: 1.08;
  min-height: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--void-border);
  background: var(--void-surface);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease;
}
.void-tile:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 32px rgba(255, 255, 255, 0.12),
    0 0 64px rgba(255, 255, 255, 0.06);
}
.void-tile:active {
  transform: translateY(-2px) scale(0.99);
  transition-duration: 0.12s;
}
.void-tile.void-tap::after {
  opacity: 1;
  transform: scale(1.4);
  transition: transform 0.45s ease, opacity 0.45s ease;
}
.void-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--tap-x, 50%) var(--tap-y, 50%), rgba(255, 255, 255, 0.22), transparent 55%);
  transform: scale(0.6);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.void-tile__img {
  position: absolute;
  inset: 0;
}
.void-tile__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.void-tile:hover .void-tile__img img {
  transform: scale(1.06);
}
.void-tile__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.55) 62%, rgba(0, 0, 0, 0.92) 100%);
}
.void-tile__status--visible {
  opacity: 1;
  transform: none;
}
.void-tile__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  margin-top: 0.45rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.22s ease, max-height 0.28s ease, margin-top 0.28s ease;
  pointer-events: none;
}
.void-tile__info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1rem 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.void-tile__game {
  margin: 0 0 0.2rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--void-muted);
  line-height: 1.2;
}
.void-tile__name {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.1;
}
.void-tile__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  margin-top: 0.45rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.22s ease, max-height 0.28s ease, margin-top 0.28s ease;
  pointer-events: none;
}
.void-tile__from {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--void-muted);
}
.void-tile__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 3;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  border: 1px solid var(--void-border);
  background: rgba(0, 0, 0, 0.65);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--void-dim);
}
.void-tile__status,
.void-tile__oos {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  padding: 0.28rem 0.55rem;
  border-radius: 6px;
  border: 1px solid var(--void-border);
  background: rgba(0, 0, 0, 0.72);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.void-tile__status {
  color: var(--status-color, #ffffff);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.78);
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.45);
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
  pointer-events: none;
}
.void-tile__oos {
  opacity: 1;
  color: #f87171;
  border-color: rgba(248, 113, 113, 0.35);
}
.void-tile:hover .void-tile__status {
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.void-tile--account .void-tile__name {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
}
.void-tile:hover .void-tile__bottom {
  opacity: 1;
  max-height: 3rem;
  margin-top: 0.4rem;
}
.void-tile__price {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--void-text);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.45);
}
.void-tile--out { opacity: 0.65; }

.cyborg-starfield {
  opacity: 1 !important;
}

/* —— Full-bleed product hero —— */
.void-hero-product {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.void-hero-product__bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-color: var(--void-bg);
  background-image: var(--void-hero, none);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.void-hero-product__shade {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.78) 45%, rgba(0, 0, 0, 0.92) 100%);
  pointer-events: none;
}
.void-hero-product__inner {
  position: relative;
  z-index: 2;
  padding: 2rem 0 2.5rem;
  flex: 1;
}
.void-hero-product__grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 992px) {
  .void-hero-product__grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
    gap: 2.25rem;
    min-height: calc(100vh - 8rem);
    align-items: center;
  }
}
.void-hero-product__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 36rem;
}
.void-hero-product__copy--cheat {
  margin-top: 0;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  max-width: none;
}
.void-hero-product__copy--spoofer,
.void-hero-product__copy--account {
  margin-top: -0.5rem;
  align-items: center;
  text-align: center;
  width: 100%;
}
.void-hero-product__grid--cheat {
  align-items: start;
}
@media (min-width: 992px) {
  .void-hero-product__grid--cheat {
    align-items: start !important;
    min-height: 0 !important;
  }
  .void-hero-product__copy--cheat {
    justify-content: flex-start !important;
    padding-bottom: 0;
    align-items: flex-start;
    text-align: left;
  }
}
.void-product-top {
  width: 100%;
  max-width: 100%;
  margin-bottom: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}
.void-product-top--left {
  align-self: flex-start;
  text-align: left;
}
.void-product-top .void-crumbs--top {
  position: static;
  margin: 0;
  padding: 0;
}
.void-crumbs--hero {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0 !important;
}
.void-crumbs--hero .void-crumbs__back {
  font-size: inherit;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
}
.void-crumbs--hero .void-crumbs__back:hover {
  color: #fff;
}
.void-hero-product__status-pill--hero {
  padding: 0.45rem 1rem;
  font-size: clamp(0.78rem, 1.5vw, 0.92rem);
  letter-spacing: 0.14em;
}
.void-hero-product__status-pill {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--status-glow, #ffffff);
  background: rgba(0, 0, 0, 0.75);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--status-glow, #ffffff) !important;
  text-shadow: 0 0 16px color-mix(in srgb, var(--status-glow, #ffffff) 65%, transparent);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--status-glow, #ffffff) 25%, transparent) inset,
    0 0 20px color-mix(in srgb, var(--status-glow, #ffffff) 35%, transparent);
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.void-hero-product--viewport .void-product-top {
  width: 100%;
  max-width: none;
  margin: 0 0 0.65rem;
  padding: 0;
  align-self: flex-start;
}
.void-hero-product--viewport .void-hero-product__inner {
  padding-top: 1rem;
  align-items: flex-start;
}
.void-hero-product--fullbg.void-hero-product--viewport .void-hero-product__inner {
  padding-top: 1.25rem;
}
.void-hero-product__title--cheat {
  text-align: left;
  align-self: flex-start;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  line-height: 0.95;
  margin: 0;
}
.void-crumbs__back {
  color: var(--void-dim);
  text-decoration: none;
  font-weight: 600;
}
.void-crumbs__back:hover {
  color: #ffffff;
}
.void-hero-product__title-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
}
.void-hero-product__status {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 0 24px color-mix(in srgb, var(--status-glow, #fff) 55%, transparent);
}
.void-hero-product__shade--clear {
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.45) 42%,
    rgba(0, 0, 0, 0.72) 100%
  ) !important;
}
.void-hero-product__copy--cheat .void-hero-product__title--cheat {
  text-shadow: 0 0 48px rgba(255, 255, 255, 0.12), 0 4px 24px rgba(0, 0, 0, 0.8);
}
.void-crumbs--center {
  justify-content: center;
  text-align: center;
}
.void-hero-product__sub {
  margin: 0.5rem auto 1rem;
  max-width: 36ch;
  font-size: 0.9rem;
  color: var(--void-muted);
  line-height: 1.5;
}
.void-hero-product__sub--center {
  text-align: center;
}
.spoofer-picker--center .spoofer-picker__label,
.spoofer-picker--center .spoofer-picker__tabs {
  text-align: center;
  justify-content: center;
}
.spoofer-picker--center .spoofer-picker__cards {
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
}
.void-hero-product__title {
  margin: 0.35rem 0 0;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
  line-height: 1.05;
}
.void-hero-product__title--center {
  text-align: center;
  align-self: center;
  width: 100%;
}
.void-tags--center {
  justify-content: center;
}
.void-tags--dim .void-tag {
  color: var(--void-muted);
  border-color: rgba(255, 255, 255, 0.08);
}
.spoofer-picker--center {
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
}
.spoofer-picker--center .spoofer-picker__cards {
  text-align: left;
}
.void-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.35rem; }
.void-tag {
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--void-border);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--void-dim);
  background: rgba(0, 0, 0, 0.35);
}
.void-tag--status {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.45);
}
.void-product-below {
  position: relative;
  z-index: 2;
  background: transparent;
  border-top: 1px solid var(--void-border);
  padding: 2.5rem 0 4rem;
  overflow: hidden;
}
.void-hero-product .void-product-below::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: none;
  background: radial-gradient(ellipse 90% 60% at 50% 0%, rgba(255, 255, 255, 0.04), transparent 65%);
  opacity: 1;
  z-index: 0;
}
.void-hero-product .void-product-below::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.96) 45%, #000000 100%);
  z-index: 0;
}
.void-hero-product .void-product-below .container {
  position: relative;
  z-index: 1;
}
.void-hero-product--account .void-product-below::before,
.void-hero-product--account .void-product-below::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}
.void-hero-product--account .void-product-below::before {
  background-image: var(--void-hero, none);
  background-size: cover;
  background-position: center;
  opacity: 0.38;
}
.void-hero-product--account .void-product-below::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.75) 100%);
}
@media (max-width: 640px) {
  .spoofer-picker--cards {
    grid-template-columns: 1fr;
  }
}
.void-feat-card,
.void-sysreq-card {
  background: rgba(0, 0, 0, 0.72) !important;
  border-color: var(--void-border) !important;
  backdrop-filter: blur(6px);
}

/* Spoofer picker */
.spoofer-picker__label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--void-muted); }
.spoofer-picker__tabs { display: flex; gap: 0.45rem; margin: 0.5rem 0 1rem; }
.spoofer-picker__tab {
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  border: 1px solid var(--void-border);
  background: transparent;
  color: var(--void-dim);
  font-size: 0.8rem;
  cursor: pointer;
}
.spoofer-picker__tab.is-active { color: var(--void-text); background: rgba(255, 255, 255, 0.06); }
.spoofer-picker__cards { display: grid; gap: 0.65rem; }
.spoofer-picker__card {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--void-border);
  background: rgba(0, 0, 0, 0.35);
  color: var(--void-text);
  cursor: pointer;
}
.spoofer-picker__card.is-active {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.spoofer-picker__card strong { display: block; margin-bottom: 0.35rem; }
.spoofer-picker__range { display: block; font-size: 0.85rem; color: var(--void-dim); margin-bottom: 0.35rem; }
.spoofer-picker__desc,
.spoofer-picker__tags { font-size: 0.82rem; color: var(--void-muted); line-height: 1.45; }
.spoofer-picker__tags em {
  display: inline-block;
  margin: 0.2rem 0.35rem 0 0;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  border: 1px solid var(--void-border);
  font-style: normal;
  font-size: 0.72rem;
  color: var(--void-dim);
}

/* Features + sysreq */
.void-section { margin-bottom: 2.5rem; }
.void-section__title {
  margin: -0.35rem 0 0.35rem;
  font-size: 1.65rem;
  font-weight: 800;
}
.void-section__title--glow {
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.35), 0 0 48px rgba(255, 255, 255, 0.12);
}
.void-section.void-features {
  margin-top: -0.5rem;
}
.void-section__sub { margin: 0 0 1.25rem; color: var(--void-muted); font-size: 0.9rem; }
.void-feat-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .void-feat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .void-feat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.void-feat-card {
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid var(--void-border);
  background: var(--void-surface);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease,
    box-shadow 0.3s ease;
}
.void-feat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.08), 0 12px 32px rgba(0, 0, 0, 0.45);
}
.void-feat-card h3 {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.void-feat-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.void-feat-card li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  color: var(--void-dim);
}
.void-feat-card li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--void-muted);
}
.void-features-parsed { display: none; }

.void-sysreq-card {
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--void-border);
  background: var(--void-surface) !important;
  box-shadow: none !important;
}
.void-sysreq-card--prose,
.void-sysreq-card--prose * {
  color: var(--void-dim) !important;
}
.void-sysreq-card--prose h3,
.void-sysreq-card--prose h4 {
  color: var(--void-muted) !important;
}
.void-sysreq-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .void-sysreq-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.void-sysreq-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--void-muted);
  margin-bottom: 0.5rem;
}
.void-sysreq-card ul { margin: 0; padding: 0; list-style: none; }
.void-sysreq-card li {
  font-size: 0.88rem;
  color: var(--void-dim);
  margin-bottom: 0.35rem;
}
.void-sysreq-card em {
  display: block;
  font-size: 0.75rem;
  color: var(--void-muted);
  font-style: normal;
}

/* —— Accounts product —— */
.acct-product__top { padding: 2rem 0 1.5rem; }
.acct-product__layout {
  display: grid;
  gap: 1rem;
}
@media (min-width: 992px) {
  .acct-product__layout { grid-template-columns: 1fr 1fr; }
}
.acct-preview__banner {
  height: 140px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  margin-bottom: 1rem;
}
.acct-preview__tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}
.acct-preview__tiles div {
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  border: 1px solid var(--void-border);
  background: rgba(0, 0, 0, 0.25);
}
.acct-preview__tiles .k {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--void-muted);
}
.acct-preview__tiles .v { font-size: 0.85rem; font-weight: 600; }
.acct-buy__title { margin: 0 0 0.35rem; font-size: 1.35rem; font-weight: 800; }
.acct-buy__sub { margin: 0 0 1rem; font-size: 0.88rem; color: var(--void-muted); line-height: 1.5; }
.acct-buy__row { display: flex; flex-wrap: wrap; align-items: center; gap: 0.45rem; margin-bottom: 1rem; }
.acct-buy__price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--void-text) !important;
}
.acct-buy__pill {
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid var(--void-border);
  color: var(--void-dim);
}
.acct-buy__pill--dim { opacity: 0.7; }
.acct-product__policy-wrap { padding: 0 0 3rem; }
.void-policy__cols {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .void-policy__cols { grid-template-columns: 1fr 1fr; }
}
.void-policy h3 {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--void-muted);
}
.void-policy ul { margin: 0; padding: 0; list-style: none; }
.void-policy li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.55rem;
  font-size: 0.88rem;
  color: var(--void-dim);
  line-height: 1.45;
}
.void-policy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.45);
}
.void-policy__back { margin-top: 0.25rem; }

/* Accounts market */
.accounts-market__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .accounts-market__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .accounts-market__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Status */
.status-void__head {
  text-align: center;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}
.status-void__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--void-muted);
}
.status-void__eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--void-green);
  box-shadow: 0 0 10px var(--void-green);
}
.status-void__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}
.status-void__list {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.85rem;
  max-width: none;
}
@media (min-width: 640px) {
  .status-void__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .status-void__list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.status-grid-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 130px;
  padding: 1.1rem 1.15rem;
  border-radius: 12px;
  border: 1px solid var(--void-border);
  background: #000000;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.status-grid-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: #0a0a0a;
  transform: translateY(-2px);
}
.status-grid-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.status-grid-card__name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--void-text);
  line-height: 1.2;
}
.status-grid-card__icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
  border: 1px solid var(--void-border);
  color: var(--void-text);
}
.status-grid-card__icon.is-on {
  border-color: color-mix(in srgb, var(--status-color, #fff) 50%, transparent);
  color: var(--status-color, #fff);
  box-shadow: 0 0 12px color-mix(in srgb, var(--status-color, #fff) 35%, transparent);
}
.status-grid-card__icon.is-off {
  border-color: color-mix(in srgb, var(--status-color, #f87171) 50%, transparent);
  color: var(--status-color, #f87171);
}
.status-grid-card__icon.is-soon {
  border-color: color-mix(in srgb, var(--status-color, #fff) 40%, transparent);
  color: var(--status-color, var(--void-dim));
}
.status-grid-card__icon.is-test {
  border-color: color-mix(in srgb, var(--status-color, #fbbf24) 50%, transparent);
  color: var(--status-color, #fbbf24);
  box-shadow: 0 0 12px color-mix(in srgb, var(--status-color, #fbbf24) 30%, transparent);
}
.status-grid-card__service {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--void-muted);
}
.status-grid-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
}
.status-grid-card__state {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--status-color, var(--void-green));
}
.status-grid-card__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-grid-card__ops {
  font-size: 0.72rem;
  color: var(--void-muted);
}

/* Feedback 3-col */
.feedback-void__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .feedback-void__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .feedback-void__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.feedback-void .feedback-card,
.feedback-void .cyborg-panel {
  height: 100%;
  border-radius: 12px;
  border: 1px solid var(--void-border) !important;
  background: var(--void-surface) !important;
  box-shadow: none !important;
}
.feedback-void .cyborg-panel__corners { display: none; }
.feedback-void .feedback-card__body { padding: 1.1rem; }
.feedback-void .feedback-card__star--on {
  color: #fff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.85), 0 0 24px rgba(255, 255, 255, 0.45);
}
.feedback-void .feedback-card,
.feedback-void .cyborg-panel,
.feedback-void .feedback-card__reply {
  background: var(--void-surface) !important;
  border-color: var(--void-border) !important;
}
.feedback-void .feedback-card__reply {
  background: rgba(0, 0, 0, 0.35) !important;
}

/* Guide */
.guide-void { padding: 2rem 0 4rem; }
.guide-void__layout {
  display: grid;
  gap: 1rem;
}
@media (min-width: 992px) {
  .guide-void__layout { grid-template-columns: 220px 1fr; }
}
.guide-void__nav-panel {
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--void-border);
  background: var(--void-surface);
}
.guide-void__nav-title {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--void-muted);
}
.guide-void__nav { display: grid; gap: 0.25rem; }
.guide-void__nav button {
  width: 100%;
  text-align: left;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--void-dim);
  font-size: 0.82rem;
  cursor: pointer;
}
.guide-void__nav button.is-active,
.guide-void__nav button:hover {
  color: var(--void-text);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--void-border);
}
.guide-void__tracks { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 1rem 0; }
.guide-void__steps { display: grid; gap: 0.45rem; }
.guide-void__step {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--void-border);
  background: rgba(0, 0, 0, 0.25);
  color: var(--void-text);
  text-align: left;
  cursor: pointer;
}
.guide-void__step span:first-child {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
  flex-shrink: 0;
}
.guide-void__step small { display: block; color: var(--void-muted); margin-top: 0.15rem; }
.guide-void__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--void-border);
}

/* Dashboard portal */
.void-portal { padding: 2rem 0 4rem; }
.void-portal__layout {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 992px) {
  .void-portal__layout { grid-template-columns: 240px 1fr; }
}
.void-portal__head h1 {
  margin: 0.15rem 0 0.35rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
}
.void-portal__head p { margin: 0; color: var(--void-muted); }
.void-portal__stats {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .void-portal__stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.void-portal__stats article {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--void-border);
  background: var(--void-surface);
}
.void-portal__stats .k {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--void-muted);
}
.void-portal__stats .v {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--void-text);
}
.void-portal__stats .v--sm { font-size: 0.85rem; font-weight: 600; }
.void-portal__order-title { margin: 0 0 0.35rem; font-weight: 700; }
.void-portal__danger { margin-top: 1rem; }

/* Checkout panel on dark hero */
.void-hero-product .cyborg-checkout-panel,
.void-hero-product .cyborg-checkout-form {
  background: rgba(0, 0, 0, 0.88) !important;
  border: 1px solid var(--void-border) !important;
  border-radius: 14px !important;
  backdrop-filter: blur(8px);
}

.legal-page__head h1 { color: var(--void-text); }

/* —— Checkout duration tiles (global) —— */
.cyborg-durations {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0.6rem !important;
}
@media (min-width: 420px) {
  .cyborg-durations {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
.cyborg-duration {
  min-height: 92px !important;
  padding: 0.8rem 0.65rem !important;
  border-radius: 11px !important;
}
.cyborg-duration__price {
  font-size: 1.05rem !important;
}
.cyborg-duration__name {
  font-size: 0.76rem !important;
  line-height: 1.25 !important;
}
.cyborg-checkout-panel,
form.cyborg-checkout-panel {
  padding: 1.35rem 1.25rem 1.45rem !important;
}

.accounts-market__grid.void-tiles-grid {
  column-gap: 1rem;
  row-gap: 0.85rem;
}
.accounts-market__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-top: 0.65rem;
  font-size: 0.78rem;
}
.accounts-market__legal a {
  color: var(--void-muted);
  text-decoration: none;
}
.accounts-market__legal a:hover {
  color: #ffffff;
}

/* Account product hero */
.acct-hero-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  width: 100%;
  max-width: 28rem;
  margin: 0.75rem auto 0;
}
.acct-hero-tiles div {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(8px);
  text-align: left;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.acct-hero-tiles div:hover {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.06);
}
.acct-hero-tiles .k {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--void-muted);
  margin-bottom: 0.25rem;
}
.acct-hero-tiles .v {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--void-text);
  letter-spacing: 0.02em;
}
.void-policy--glass {
  padding: 1.35rem 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--void-border);
  background: rgba(0, 0, 0, 0.75);
}
.void-policy--glass h3 {
  color: var(--void-muted) !important;
}
.void-policy--glass li::before {
  background: #ffffff !important;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5) !important;
}

/* —— Guide + dashboard + feedback + status (pure vanta) —— */
.guide-void__panel,
.guide-void__nav-panel,
.void-portal .void-window,
.void-portal .portal-sidebar,
.void-portal .portal-sidebar--hud,
.status-grid-card,
.feedback-card--void,
.cyborg-checkout-panel,
.cyborg-nav {
  background: #000000 !important;
  border-color: var(--void-border) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.65) !important;
}
.guide-void__panel {
  border-radius: 12px;
  border: 1px solid var(--void-border);
  overflow: hidden;
}
.guide-void__panel-inner {
  padding: 1.25rem 1.15rem 1.35rem;
}
.guide-void__step,
.guide-void__nav button.is-active {
  border-color: var(--void-border) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}
.portal-sidebar__link.is-active {
  border: 1px solid var(--void-border) !important;
  box-shadow: none !important;
  background: rgba(255, 255, 255, 0.06) !important;
}
.void-portal__stats article {
  background: #000000 !important;
}
.feedback-card--void {
  border-radius: 12px !important;
  border: 1px solid var(--void-border) !important;
}
.feedback-card--void .feedback-card__body {
  padding: 1.1rem !important;
  background: #000000 !important;
}
.feedback-card--void .feedback-card__reply {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: var(--void-border) !important;
}

/* Global: purge blue tints */
body.cyborg-app *,
.cyborg-nav-wrap,
.cyborg-nav,
.cyborg-duration,
.cyborg-payment,
.status-void,
.feedback-void,
.guide-void,
.void-portal,
.modal-content {
  --bs-body-bg: #000000;
  --bs-secondary-bg: #000000;
}
body.cyborg-app .bg-overlay,
body.cyborg-app .bg-image {
  display: none !important;
}
.cyborg-nav {
  background: rgba(0, 0, 0, 0.92) !important;
  border-color: var(--void-border) !important;
}
.cyborg-duration,
.cyborg-payment {
  background: rgba(0, 0, 0, 0.65) !important;
  border-color: var(--void-border) !important;
}
.home-void__glow,
.void-hero-product__title,
.void-section__title--glow,
.status-void__head h1,
.void-page__head h1 {
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.35), 0 0 56px rgba(255, 255, 255, 0.12);
  color: #ffffff;
}
.home-void__badge-dot,
.status-void__eyebrow-dot,
.home-void__float-dot {
  background: #ffffff !important;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.65) !important;
}
.void-policy li::before {
  background: #ffffff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.45);
}

/* Force black on legacy editor panels site-wide */
.cyborg-features-grid--editor .card,
.cyborg-features-grid--editor > div > div,
.cyborg-sysreq-card,
.cyborg-below,
.acct-win,
.portal-sidebar,
.portal-panel,
.cyborg-panel,
.modal-content.void-window {
  background: #000000 !important;
  border-color: var(--void-border) !important;
}
.acct-win__cols h3,
.cyborg-features-grid--editor li::before {
  color: var(--void-muted) !important;
}
.cyborg-features-grid--editor li::before {
  color: #ffffff !important;
}
.feedback-void .cyborg-panel,
.feedback-void .feedback-card {
  background: #000000 !important;
}
.status-void .status-v3-card,
.status-void .status-v3-card--clean {
  background: #000000 !important;
}
.void-portal .portal-sidebar--hud {
  background: #000000 !important;
  border: 1px solid var(--void-border) !important;
}
.void-footer,
footer.void-footer {
  display: none !important;
}

/* Spoofer — single screen, reported orange / cyborg white */
body.cyborg-app:has(.void-hero-product--spoofer.void-hero-product--viewport) .cyborg-main {
  overflow: hidden;
  max-height: calc(100vh - 4.5rem);
}
.void-hero-product--spoofer.void-hero-product--viewport {
  min-height: calc(100vh - 4.75rem);
  max-height: calc(100vh - 4.75rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.void-hero-product--cheat .void-spec-panels {
  margin-top: 0.15rem;
}
.void-hero-product__inner--spoofer {
  justify-content: center !important;
  align-items: center !important;
  padding: 1rem 0 1.25rem !important;
  width: 100%;
}
.void-hero-product--spoofer .void-crumbs--spoofer {
  margin-top: 0;
  margin-bottom: 0.75rem;
  align-self: stretch;
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0.5rem;
}
.void-hero-product--spoofer .void-hero-product__grid {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto !important;
  align-items: center !important;
  justify-content: center;
  gap: 1.25rem !important;
  min-height: 0 !important;
  padding: 0 0.5rem;
}
@media (min-width: 992px) {
  .void-hero-product--spoofer .void-hero-product__grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px) !important;
    align-items: center !important;
  }
}
.void-hero-product--spoofer .void-hero-product__copy--spoofer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.void-hero-product--spoofer .void-hero-product__title-stack {
  width: 100%;
  justify-content: center;
}
.void-hero-product--viewport.void-hero-product--spoofer .void-hero-product__inner {
  align-items: center !important;
  justify-content: center !important;
}
.void-hero-product--spoofer.is-reported-line .void-hero-product__title {
  color: #fb923c;
  text-shadow: 0 0 32px rgba(251, 146, 60, 0.45);
}
.void-hero-product--spoofer:not(.is-reported-line) .void-hero-product__title {
  color: #ffffff;
  text-shadow: 0 0 32px rgba(255, 255, 255, 0.35);
}
.spoofer-picker--cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  width: 100%;
  max-width: 44rem;
  margin: 0.5rem auto 0;
}
.spoofer-picker--cards .spoofer-picker__card {
  text-align: left;
  padding: 1.25rem 1.15rem;
  min-height: 140px;
}
.spoofer-picker__card--cyborg.is-active {
  border-color: rgba(255, 255, 255, 0.45) !important;
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.12) !important;
}
.spoofer-picker__card-head {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}
.spoofer-picker__range {
  font-size: 1.05rem !important;
  font-weight: 800;
  color: #fff !important;
  margin-bottom: 0.5rem !important;
}
.spoofer-picker__card--cyborg .spoofer-picker__tags em {
  border-color: rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.88);
}
.spoofer-picker__card--reported.is-active {
  border-color: rgba(251, 146, 60, 0.55) !important;
  box-shadow: 0 0 28px rgba(251, 146, 60, 0.2) !important;
}
.spoofer-picker__card--reported.is-active .spoofer-picker__card-head {
  color: #fb923c;
}
.spoofer-picker__card--reported.is-active .spoofer-picker__range {
  color: #fb923c !important;
}
.spoofer-picker__card--reported .spoofer-picker__tags em {
  border-color: rgba(251, 146, 60, 0.35);
  color: #fdba74;
  font-size: 0.78rem;
  padding: 0.3rem 0.55rem;
}
.void-hero-product--spoofer.is-reported-line .cyborg-checkout-panel,
.void-hero-product--spoofer.is-reported-line .cyborg-checkout-form {
  border-color: rgba(251, 146, 60, 0.22) !important;
}
.void-hero-product--spoofer.is-reported-line .cyborg-duration.is-active {
  border-color: rgba(251, 146, 60, 0.65) !important;
  background: rgba(251, 146, 60, 0.08) !important;
  box-shadow: 0 0 22px rgba(251, 146, 60, 0.28) !important;
}
.void-hero-product--spoofer.is-reported-line .cyborg-duration.is-active .cyborg-duration__price {
  color: #fb923c !important;
}
.void-hero-product--spoofer.is-reported-line .cyborg-duration.is-active .cyborg-duration__name {
  color: #fdba74 !important;
}
.void-hero-product--spoofer:not(.is-reported-line) .cyborg-duration.is-active {
  border-color: rgba(255, 255, 255, 0.5) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.15) !important;
}
.void-hero-product--spoofer:not(.is-reported-line) .cyborg-duration.is-active .cyborg-duration__price {
  color: #ffffff !important;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.35);
}

/* Account hero — centered, clearer bg */
.void-hero-product__copy--account {
  text-align: center;
  align-items: center;
}
.void-hero-product__copy--account .acct-hero-tiles {
  margin-left: auto;
  margin-right: auto;
}
.acct-hero-tiles div {
  text-align: center;
}
.acct-hero-tiles .k,
.acct-hero-tiles .v {
  text-align: center;
}

/* Guide hub */
.guide-hub {
  padding: 2rem 0 3rem;
}
.guide-hub__container {
  max-width: 720px;
}
.guide-hub__head {
  text-align: center;
  margin-bottom: 2rem;
}
.guide-hub__head h1 {
  margin: 0.25rem 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.2);
}
.guide-hub__eyebrow {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--void-muted);
}
.guide-hub__tracks {
  display: grid;
  gap: 0.75rem;
}
.guide-hub__track {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0.15rem 0.85rem;
  width: 100%;
  padding: 1.1rem 1.15rem;
  border-radius: 12px;
  border: 1px solid var(--void-border);
  background: #000000;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.guide-hub__track:hover {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}
.guide-hub__track-icon {
  grid-row: 1 / span 2;
  align-self: center;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--void-border);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--void-muted);
}
.guide-hub__track strong {
  font-size: 1rem;
  align-self: end;
}
.guide-hub__track span:last-child {
  grid-column: 2;
  font-size: 0.82rem;
  color: var(--void-muted);
}
.guide-hub__panel {
  padding: 1.25rem 0 0;
}
.guide-hub__back {
  border: none;
  background: none;
  color: var(--void-muted);
  font-size: 0.82rem;
  cursor: pointer;
  padding: 0;
  margin-bottom: 0.75rem;
}
.guide-hub__back:hover {
  color: var(--void-text);
}
.guide-hub__panel-title {
  margin: 0 0 0.25rem;
  font-size: 1.35rem;
  font-weight: 800;
}
.guide-hub__panel-lead {
  margin: 0 0 1.25rem;
  color: var(--void-muted);
  font-size: 0.88rem;
}
.guide-hub__steps {
  display: grid;
  gap: 0.5rem;
}
.guide-hub__step {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--void-border);
  background: #000000;
  color: var(--void-text);
  text-align: left;
  cursor: pointer;
}
.guide-hub__step span:first-child {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--void-border);
  font-weight: 800;
  flex-shrink: 0;
}
.guide-hub__step small {
  display: block;
  color: var(--void-muted);
  margin-top: 0.15rem;
  font-size: 0.8rem;
}
.guide-hub__body {
  padding: 0.5rem 0 1rem;
  color: var(--void-dim);
  line-height: 1.6;
}
.guide-hub__body code {
  color: var(--void-text);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}
.guide-hub__list {
  margin: 0.75rem 0 1rem;
  padding-left: 1.1rem;
  color: var(--void-dim);
}
.guide-hub__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.guide-hub__foot {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--void-border);
}
.guide-hub__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--void-border);
  font-size: 0.78rem;
  color: var(--void-muted);
}
.guide-hub__legal a {
  color: var(--void-dim);
  text-decoration: none;
}
.guide-hub__legal a:hover {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
}

.portal-sidebar__legal {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--void-border);
  display: grid;
  gap: 0.35rem;
}
.portal-sidebar__legal a {
  font-size: 0.78rem;
  color: var(--void-muted) !important;
  text-decoration: none !important;
  padding: 0.25rem 0;
}
.portal-sidebar__legal a:hover {
  color: #ffffff !important;
}

/* —— Accounts market (fit viewport) —— */
.accounts-market--fit {
  min-height: calc(100vh - 5.75rem);
  display: flex;
  flex-direction: column;
  padding-bottom: 0.5rem;
}
body.cyborg-app:has(.accounts-market--fit) .cyborg-main {
  overflow: hidden;
}
.accounts-market--fit .void-page__head {
  margin-bottom: 0.85rem;
}
.accounts-market--fit .void-page__head h1 {
  margin-bottom: 0.25rem;
}
.accounts-market--fit .void-page__head p {
  margin: 0;
  font-size: 0.92rem;
}
.accounts-market--fit .accounts-market__grid {
  flex: 1;
  align-content: start;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .accounts-market--fit .accounts-market__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .accounts-market--fit .accounts-market__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* —— Guide pro —— */
.guide-pro {
  min-height: calc(100vh - 5.5rem);
  padding: 1.25rem 0 1.5rem;
}
body.cyborg-app:has(.guide-pro) .cyborg-main {
  overflow: hidden;
}
.guide-pro__shell {
  display: grid;
  gap: 1.25rem;
  min-height: calc(100vh - 7rem);
}
@media (min-width: 900px) {
  .guide-pro__shell {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 1.75rem;
    align-items: stretch;
  }
}
.guide-pro__rail {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.1rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--void-border);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
}
.guide-pro__eyebrow {
  margin: 0 0 0.2rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--void-muted);
}
.guide-pro__rail-head h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.guide-pro__nav {
  display: grid;
  gap: 0.35rem;
  flex: 1;
}
.guide-pro__nav-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: center;
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--void-dim);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.guide-pro__nav-item:hover {
  border-color: var(--void-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--void-text);
}
.guide-pro__nav-item.is-active {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.06);
}
.guide-pro__ix {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--void-muted);
}
.guide-pro__nav-item.is-active .guide-pro__ix {
  color: #ffffff;
}
.guide-pro__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--void-border);
  font-size: 0.75rem;
}
.guide-pro__legal a {
  color: var(--void-muted);
  text-decoration: none;
}
.guide-pro__legal a:hover {
  color: #ffffff;
}
.guide-pro__stage {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 1.25rem 1.35rem;
  border-radius: 14px;
  border: 1px solid var(--void-border);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
  overflow: hidden;
}
.guide-pro__stage-head {
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--void-border);
}
.guide-pro__stage-head h2 {
  margin: 0 0 0.25rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.guide-pro__stage-head p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--void-muted);
}
.guide-pro__cheat-steps {
  display: grid;
  gap: 0.55rem;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  padding-right: 0.15rem;
}
@media (min-width: 640px) {
  .guide-pro__cheat-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.guide-pro__step-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 11px;
  border: 1px solid var(--void-border);
  background: rgba(0, 0, 0, 0.5);
  color: var(--void-text);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.guide-pro__step-card:hover {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}
.guide-pro__step-num {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--void-muted);
}
.guide-pro__step-card strong {
  display: block;
  font-size: 0.92rem;
}
.guide-pro__step-card small {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: var(--void-muted);
}
.guide-pro__step-go {
  font-size: 1.1rem;
  color: var(--void-dim);
}
.guide-pro__article {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  color: var(--void-dim);
  line-height: 1.65;
  font-size: 0.92rem;
}
.guide-pro__article p {
  margin: 0 0 0.75rem;
}
.guide-pro__bullets {
  margin: 0;
  padding-left: 1.1rem;
}
.guide-pro__bullets li {
  margin-bottom: 0.5rem;
}
.guide-pro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.guide-pro__pager {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--void-border);
}

/* —— Dashboard one-screen —— */
.dash-one {
  min-height: calc(100vh - 5.5rem);
  padding: 1rem 0 1.25rem;
}
body.cyborg-app:has(.dash-one) .cyborg-main {
  overflow: hidden;
}
.dash-one__grid {
  display: grid;
  gap: 1.25rem;
  min-height: calc(100vh - 7rem);
  align-items: stretch;
}
@media (min-width: 900px) {
  .dash-one__grid {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 1.5rem;
  }
}
.dash-one__main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 0;
  padding: 1.15rem 1.35rem;
  border-radius: 14px;
  border: 1px solid var(--void-border);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
}
.dash-one__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}
.dash-one__head h1 {
  margin: 0.15rem 0 0;
  font-size: 1.65rem;
  font-weight: 900;
}
.dash-one__email {
  margin: 0;
  font-size: 0.82rem;
  color: var(--void-muted);
  font-family: "JetBrains Mono", ui-monospace, monospace;
}
.dash-one__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}
@media (min-width: 700px) {
  .dash-one__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.dash-one__stats article {
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--void-border);
  background: rgba(0, 0, 0, 0.55);
}
.dash-one__stats .k {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--void-muted);
  margin-bottom: 0.25rem;
}
.dash-one__stats .v {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--void-text);
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.2);
}
.dash-one__stats .v--sm {
  font-size: 0.88rem;
  font-weight: 700;
}
.dash-one__panels {
  display: grid;
  gap: 0.65rem;
  flex: 1;
  min-height: 0;
}
@media (min-width: 768px) {
  .dash-one__panels {
    grid-template-columns: 1.1fr 1fr;
  }
}
.dash-one__panel {
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--void-border);
  background: rgba(0, 0, 0, 0.5);
  min-height: 0;
}
.dash-one__panel h2 {
  margin: 0 0 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--void-muted);
}
.dash-one__order-name {
  margin: 0 0 0.25rem;
  font-weight: 700;
  font-size: 1rem;
}
.dash-one__order-meta {
  margin: 0;
  font-size: 0.82rem;
  color: var(--void-dim);
}
.dash-one__order-meta a {
  color: var(--void-text);
}
.dash-one__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.65rem;
}
.dash-one__links a {
  font-size: 0.82rem;
  color: var(--void-dim);
  text-decoration: none;
  padding: 0.2rem 0;
}
.dash-one__links a:hover {
  color: #ffffff;
}
.dash-one__foot {
  margin-top: auto;
  padding-top: 0.5rem;
}

/* —— Features media (Loba / editor images) —— */
.void-features--clean {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.void-features--clean .void-feat-visual {
  position: relative;
  max-width: min(100%, 520px);
  margin: 0 auto 1.5rem;
  padding: 0;
  border: none;
  background: transparent !important;
  border-radius: 0;
  overflow: visible;
}
.void-features--clean .void-feat-visual img {
  display: block;
  width: 100%;
  max-height: min(52vh, 480px);
  margin: 0 auto;
  object-fit: contain;
  object-position: center bottom;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 0 28px rgba(255, 255, 255, 0.1));
}
.void-features--clean .void-feat-badge {
  position: absolute;
  z-index: 2;
  padding: 0.45rem 0.7rem;
  border-radius: 10px;
  border: 1px solid var(--void-border);
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--void-text);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
  pointer-events: none;
}
.void-features--clean .void-feat-visual:hover .void-feat-badge,
.void-features--clean .void-feat-visual:focus-within .void-feat-badge {
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.12);
}
.void-features--clean .void-feat-badge--tr { top: 8%; right: 0; }
.void-features--clean .void-feat-badge--bl { bottom: 10%; left: 0; }
.void-features--clean img:not(.void-feat-visual img) {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent !important;
}
.void-features--clean table,
.void-features--clean [style*="background-image"] {
  background-image: none !important;
}
.void-features--clean > :not(.void-section__title):not(.void-feat-grid):not(.void-muted) {
  max-width: 100%;
}

/* —— Duration / tab seamless switch —— */
.cyborg-durations {
  position: relative;
}
.cyborg-duration {
  transition:
    border-color 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.cyborg-duration:hover:not(:disabled) {
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.08);
}
.cyborg-duration.is-active {
  border-color: rgba(255, 255, 255, 0.42) !important;
  background: rgba(255, 255, 255, 0.07) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 28px rgba(255, 255, 255, 0.14) !important;
  transform: translateY(-2px);
}
.cyborg-duration.void-tap {
  animation: void-tap-pulse 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.cyborg-checkout-panel,
.void-hero-product .cyborg-checkout-form {
  transition: box-shadow 0.32s ease, border-color 0.28s ease;
}
.cyborg-checkout-panel:hover,
.void-hero-product .cyborg-checkout-form:hover {
  border-color: rgba(255, 255, 255, 0.22) !important;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.06), 0 24px 48px rgba(0, 0, 0, 0.5) !important;
}

@keyframes void-tap-pulse {
  0% { transform: scale(1); }
  40% { transform: scale(0.97); }
  100% { transform: scale(1); }
}

/* —— Products listing motion —— */
.void-page--products .void-tiles-grid--animated .void-tiles-grid__cell {
  transition-delay: var(--reveal-delay, 0ms);
}
.void-page--products .void-page__head {
  max-width: 56ch;
}

/* —— Feedback polish —— */
.feedback-void__head {
  max-width: 42rem;
  margin-bottom: 2rem;
}
.feedback-void__head .void-eyebrow {
  margin-bottom: 0.5rem;
}
.feedback-void__item .feedback-card {
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease,
    box-shadow 0.32s ease;
}
.feedback-void__item .feedback-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.22) !important;
  box-shadow: 0 0 32px rgba(255, 255, 255, 0.08), 0 16px 40px rgba(0, 0, 0, 0.45) !important;
}
.feedback-void__pager {
  margin-top: 2rem;
}

/* —— Guide polish —— */
.guide-pro__stage {
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.guide-pro__nav-item {
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease;
}
.guide-pro__nav-item.is-active {
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.1);
}
.guide-pro__step-card {
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease,
    box-shadow 0.3s ease;
}
.guide-pro__step-card:hover {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.08);
}
.guide-pro__article {
  animation: guide-fade-in 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes guide-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* —— Dashboard shortcuts —— */
.dash-one__panel--links .dash-one__links {
  display: grid;
  gap: 0.5rem;
  flex-wrap: unset;
}
.dash-one__link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.9rem !important;
  border-radius: 10px;
  border: 1px solid var(--void-border);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 600;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.28s ease,
    transform 0.25s ease;
}
.dash-one__link-card::after {
  content: "→";
  opacity: 0.45;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.dash-one__link-card:hover {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.08);
  transform: translateX(2px);
}
.dash-one__link-card:hover::after {
  opacity: 1;
  transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
  .void-tile,
  .void-feat-card,
  .cyborg-duration,
  .feedback-void__item .feedback-card,
  .guide-pro__article {
    transition: none !important;
    animation: none !important;
  }
  .void-tile__status,
  .void-hero-product__status-pill,
  .void-features--clean .void-feat-badge,
  .home-void__float {
    opacity: 1;
    transform: none;
  }
}

/* —— Single-viewport product / account pages —— */
body.cyborg-app:has(.void-hero-product--viewport) .cyborg-main,
body.cyborg-app:has(.guide-hud) .cyborg-main {
  overflow: hidden;
  max-height: calc(100vh - 4.5rem);
}
body.cyborg-app:has(.guide-hud) .cyborg-main,
body.cyborg-app:has(.home-void--fit) .cyborg-main,
body.cyborg-app:has(.home-cyborg--fit) .cyborg-main,
body.cyborg-app:has(.home-hero--fit) .cyborg-main {
  overflow: hidden;
  max-height: calc(100vh - 4.5rem);
}
body.cyborg-app:has(.void-hero-product--cheat.void-hero-product--viewport) .cyborg-main {
  overflow: hidden;
  max-height: calc(100vh - 4.5rem);
}
.void-hero-product--cheat.void-hero-product--viewport {
  max-height: calc(100vh - 4.75rem);
  overflow: hidden;
  min-height: calc(100vh - 4.75rem);
}
.void-hero-product--cheat .void-hero-product__inner {
  justify-content: flex-start !important;
  padding-top: 0.65rem !important;
  padding-bottom: 0.5rem !important;
}
.void-hero-product--cheat .void-product-top {
  margin-bottom: 0.35rem;
}
.void-hero-product--cheat .void-hero-product__title--cheat:not(.void-hero-product__title--header) {
  margin: 0 0 0.35rem !important;
  font-size: clamp(1.65rem, 3.5vw, 2.35rem) !important;
  line-height: 1 !important;
}
.void-hero-product--cheat .void-hero-product__grid--cheat {
  min-height: 0 !important;
  align-items: start !important;
  gap: 0.65rem !important;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .void-hero-product--cheat .void-hero-product__grid--cheat {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px) !important;
    align-items: start !important;
    min-height: 0 !important;
  }
}
.void-hero-product--cheat .void-hero-product__copy--cheat {
  justify-content: flex-start !important;
  padding-bottom: 0 !important;
}
.void-hero-product--cheat .void-spec-panels {
  margin-top: 0.15rem;
  gap: 0.5rem;
}
.void-hero-product--cheat .void-spec-panel__title {
  padding: 0.5rem 0.7rem;
}
.void-hero-product--cheat .void-spec-panel__body {
  padding: 0.55rem 0.65rem;
}
.void-hero-product--cheat .cyborg-checkout:not(.cyborg-checkout--cheat) {
  align-self: start;
  max-height: calc(100vh - 8rem);
  overflow-y: auto;
  scrollbar-width: thin;
}

/* —— Dashboard compact (no scroll) —— */
body.cyborg-app:has(.dash-one--compact) .cyborg-main {
  overflow: hidden !important;
  max-height: calc(100vh - 4.5rem);
}
.dash-one--compact {
  padding: 0.65rem 0;
  min-height: calc(100vh - 4.75rem);
  max-height: calc(100vh - 4.75rem);
  overflow: hidden;
}
.dash-one--compact .dash-one__grid {
  min-height: calc(100vh - 5.25rem);
  max-height: calc(100vh - 5.25rem);
  align-items: stretch;
}
.dash-one--compact .portal-sidebar--hud {
  padding: 0.75rem 0.65rem;
  font-size: 0.82rem;
}
.dash-one--compact .portal-sidebar__link {
  padding: 0.45rem 0.5rem;
}
.dash-one--compact .dash-one__main {
  padding: 0.85rem 1rem;
  gap: 0.45rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.dash-one--compact .dash-one__welcome--v3 {
  padding-bottom: 0.55rem;
  margin-bottom: 0;
  border-bottom: 1px solid var(--void-border);
}
.dash-one--compact .dash-one__welcome--v3 h1 {
  font-size: 1.35rem;
}
.dash-one--compact .dash-one__browse {
  padding: 0.45rem 0.85rem !important;
  font-size: 0.72rem !important;
}
.dash-one--compact .dash-one__stats--v3 {
  gap: 0.4rem;
}
.dash-one--compact .dash-one__stat {
  padding: 0.5rem 0.6rem;
}
.dash-one--compact .dash-one__stat .v {
  font-size: 1rem !important;
}
.dash-one--compact .dash-one__panels--v3 {
  flex: 1;
  min-height: 0;
  gap: 0.4rem;
  grid-template-columns: 1.15fr 1fr;
}
.dash-one--compact .dash-one__panel {
  padding: 0.55rem 0.65rem;
  min-height: 0;
}
.dash-one--compact .dash-one__panel h2 {
  margin-bottom: 0.35rem;
  font-size: 0.62rem;
}
.dash-one--compact .dash-one__panel--links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  align-content: start;
}
.dash-one--compact .dash-one__panel--links h2 {
  grid-column: 1 / -1;
}
.dash-one--compact .dash-one__link-card {
  padding: 0.55rem 0.5rem !important;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff !important;
  border-radius: 8px;
}
.dash-one--compact .dash-one__link-desc {
  display: none;
}
.dash-one--compact .dash-one__foot {
  margin-top: auto;
  padding-top: 0.25rem;
}
.dash-one__delete-link {
  border: none;
  background: none;
  padding: 0;
  font-size: 0.68rem;
  color: var(--void-muted);
  cursor: pointer;
  text-decoration: underline;
}
.dash-one__delete-link:hover {
  color: #f87171;
}

body.cyborg-app:has(.dash-one--mini) .cyborg-main {
  overflow: hidden !important;
  max-height: calc(100vh - 4.25rem) !important;
}

.void-hero-product--enter {
  animation: void-product-enter 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes void-product-enter {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.void-hero-product--viewport {
  min-height: calc(100vh - 4.75rem);
  max-height: calc(100vh - 4.75rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.void-hero-product--viewport .void-hero-product__bg,
.void-hero-product--viewport .void-hero-product__shade {
  position: absolute;
}
.void-hero-product--viewport .void-hero-product__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0.75rem 0 1rem;
  min-height: 0;
}
.void-product-top--left {
  width: 100%;
  align-self: flex-start;
}
.void-crumbs--viewport {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 0.5rem;
  justify-content: center;
}
.void-hero-product__grid--viewport {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  align-items: center !important;
  justify-items: center;
  gap: 1.25rem !important;
  min-height: 0 !important;
}
@media (min-width: 992px) {
  .void-hero-product__grid--viewport {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 400px) !important;
    align-items: center !important;
  }
}
.void-hero-product__copy--viewport {
  align-items: center !important;
  text-align: center !important;
  justify-content: center !important;
  padding-bottom: 0 !important;
  max-width: 100%;
}
.void-hero-product__title--viewport {
  align-self: center !important;
  text-align: center !important;
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
}
.void-hero-product--viewport .void-hero-product__title--cheat {
  margin: 0 auto;
}
.void-hero-product--viewport .acct-hero-tiles {
  margin: 0.5rem auto 0;
  max-width: 20rem;
  gap: 0.4rem;
}
.void-hero-product--viewport .acct-hero-tiles div {
  padding: 0.4rem 0.5rem;
}
.void-hero-product--viewport .void-hero-product__sub {
  font-size: 0.82rem;
  margin-bottom: 0.65rem;
}
.void-hero-product--viewport .void-tag {
  font-size: 0.65rem;
}
.cyborg-checkout--viewport .cyborg-checkout-panel,
.void-hero-product--viewport .cyborg-checkout-form {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 1rem 1rem 1.1rem !important;
}
.void-hero-product--viewport .cyborg-durations {
  gap: 0.45rem !important;
}
.void-hero-product--viewport .cyborg-duration {
  min-height: 76px !important;
  padding: 0.55rem 0.45rem !important;
}
.void-hero-product--viewport .cyborg-duration__price {
  font-size: 0.95rem !important;
}
.void-hero-product--viewport .cyborg-checkout-form__label {
  font-size: 0.62rem;
  margin-bottom: 0.35rem;
  text-align: center;
  width: 100%;
}
.void-hero-product--viewport .cyborg-checkout-form__variants-wrap {
  align-items: center;
  width: 100%;
}
.void-hero-product--viewport .void-product-below {
  display: none !important;
}

/* —— Guide HUD (no scroll, advanced) —— */
.guide-hud {
  min-height: calc(100vh - 4.75rem);
  max-height: calc(100vh - 4.75rem);
  padding: 0.65rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guide-hud__outer {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.guide-hud__hint {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  color: var(--void-muted);
  font-size: 0.84rem;
  line-height: 1.5;
}
.guide-hud__frame {
  width: 100%;
  max-width: 1100px;
  max-height: calc(100vh - 5.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, transparent 42%),
    rgba(0, 0, 0, 0.92);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 24px 64px rgba(0, 0, 0, 0.65),
    0 0 48px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.guide-hud__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--void-border);
}
.guide-hud__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.guide-hud__pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
  animation: guide-pulse 2s ease infinite;
}
@keyframes guide-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}
.guide-hud__eyebrow {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--void-muted);
}
.guide-hud__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.guide-hud__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.25rem;
  border-radius: 999px;
  border: 1px solid var(--void-border);
  background: rgba(255, 255, 255, 0.03);
}
.guide-hud__tab {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--void-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.guide-hud__tab:hover {
  color: var(--void-text);
}
.guide-hud__tab.is-active {
  color: #09090b;
  background: #ffffff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}
.guide-hud__body {
  flex: 1;
  min-height: 0;
  display: grid;
  gap: 0.75rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .guide-hud__body {
    grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
    gap: 1rem;
  }
}
.guide-hud__rail {
  display: grid;
  gap: 0.35rem;
  align-content: start;
  overflow: hidden;
}
.guide-hud__rail-label {
  margin: 0 0 0.25rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--void-muted);
}
.guide-hud__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: start;
  width: 100%;
  text-align: left;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  border: 1px solid var(--void-border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--void-text);
  cursor: pointer;
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}
.guide-hud__step:hover {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.06);
}
.guide-hud__step-ix {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--void-muted);
  font-variant-numeric: tabular-nums;
}
.guide-hud__step-text strong {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.1rem;
}
.guide-hud__step-text small {
  display: block;
  font-size: 0.72rem;
  color: var(--void-muted);
  line-height: 1.35;
}
.guide-hud__panel {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}
.guide-hud__panel-head {
  margin-bottom: 0.65rem;
}
.guide-hud__panel-head h2 {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
  font-weight: 800;
}
.guide-hud__panel-head p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--void-muted);
  line-height: 1.45;
}
.guide-hud__content {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  font-size: 0.88rem;
  color: var(--void-dim);
  line-height: 1.55;
  animation: guide-fade-in 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.guide-hud__content p {
  margin: 0 0 0.85rem;
  max-width: 52ch;
}
.guide-hud__list {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}
.guide-hud__list li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.4rem;
  font-size: 0.84rem;
}
.guide-hud__list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--void-muted);
}
.guide-hud__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.guide-hud__footer {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.65rem;
  border-top: 1px solid var(--void-border);
}
.guide-hud__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--void-border);
  font-size: 0.72rem;
}
.guide-hud__legal a {
  color: var(--void-muted);
  text-decoration: none;
}
.guide-hud__legal a:hover {
  color: #fff;
}

/* —— Feedback pro —— */
body.cyborg-app:has(.feedback-void--pro) .cyborg-main {
  overflow-x: hidden;
}
.feedback-page-root {
  padding-top: 0.5rem;
}
.feedback-void--pro {
  padding: 1.25rem 0 2.5rem;
}
.feedback-void--pro .feedback-void__head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 1.75rem;
}
.feedback-void--pro .feedback-void__head h1 {
  margin-bottom: 0.4rem;
}
.feedback-void--pro .feedback-void__head p {
  font-size: 0.9rem;
  color: var(--void-dim);
}
.feedback-void__grid--pro {
  gap: 1rem;
}
.feedback-card--pro {
  height: 100%;
  border-radius: 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0.95) 55%) !important;
  transition: border-color 0.28s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.feedback-card--pro:hover {
  border-color: rgba(255, 255, 255, 0.22) !important;
  box-shadow: 0 0 32px rgba(255, 255, 255, 0.07), 0 16px 40px rgba(0, 0, 0, 0.5) !important;
  transform: translateY(-3px);
}
.feedback-card--pro .feedback-card__body {
  padding: 1.2rem 1.25rem 1.1rem !important;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
}
.feedback-card--pro .feedback-card__rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.feedback-card--pro .feedback-card__stars {
  gap: 0.15rem;
}
.feedback-card--pro .feedback-card__star {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.2);
}
.feedback-card--pro .feedback-card__star--on {
  color: #ffffff !important;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.55);
}
.feedback-card--pro .feedback-card__date--top {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--void-muted);
  white-space: nowrap;
}
.feedback-card--pro .feedback-card__message {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--void-dim);
  flex: 1;
}
.feedback-card--pro .feedback-card__message p {
  margin: 0;
}
.feedback-card--pro .feedback-card__more {
  color: var(--void-text);
  font-weight: 600;
  font-size: 0.8rem;
}
.feedback-card--pro .feedback-card__reply {
  padding: 0.75rem 0.85rem !important;
  border-radius: 10px;
  border: 1px solid var(--void-border) !important;
  background: rgba(255, 255, 255, 0.03) !important;
}
.feedback-card--pro .feedback-card__reply-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--void-muted);
  margin-bottom: 0.35rem;
}
.feedback-card--pro .feedback-card__reply p {
  font-size: 0.82rem;
  color: var(--void-dim) !important;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .void-hero-product--viewport {
    max-height: none;
    min-height: calc(100vh - 4.75rem);
    overflow-y: auto;
  }
  body.cyborg-app:has(.void-hero-product--viewport) .cyborg-main {
    overflow: auto;
    max-height: none;
  }
  .guide-hud {
    max-height: none;
    min-height: calc(100vh - 4.75rem);
    overflow-y: auto;
  }
  body.cyborg-app:has(.guide-hud) .cyborg-main {
    overflow: auto;
    max-height: none;
  }
  .home-void__character-wrap {
    max-height: min(50vh, 420px);
  }
}

/* —— Full-bleed product background + crumbs top-left —— */
body.cyborg-app:has(.void-hero-product--fullbg.void-hero-product--viewport:not(.void-hero-product--account):not(.void-hero-product--spoofer)) .cyborg-main {
  overflow: hidden;
  max-height: calc(100vh - 4.5rem);
}
body.cyborg-app:has(.void-hero-product--fullbg:not(.void-hero-product--viewport):not(.void-hero-product--account)) .cyborg-main {
  overflow-x: hidden;
  overflow-y: auto;
  max-height: none;
}
body.cyborg-app:has(.void-hero-product--account.void-hero-product--viewport) .cyborg-main {
  overflow: hidden;
  max-height: calc(100vh - 4.5rem);
}
.void-hero-product--fullbg.void-hero-product--viewport:not(.void-hero-product--spoofer) {
  min-height: calc(100vh - 4.75rem);
  max-height: calc(100vh - 4.75rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.void-hero-product--fullbg.void-hero-product--viewport:not(.void-hero-product--spoofer) .void-hero-product__inner {
  flex: 1;
  min-height: 0;
  padding-top: 1.5rem;
  padding-bottom: 0.75rem;
  justify-content: flex-start;
  align-items: flex-start;
}
.void-hero-product--fullbg.void-hero-product--viewport .void-hero-product__grid--cheat {
  min-height: 0 !important;
  align-items: start !important;
  width: 100%;
}
.void-hero-product--fullbg:not(.void-hero-product--viewport) {
  min-height: 100vh;
  max-height: none;
  overflow: visible;
}
.void-hero-product--fullbg .void-hero-product__bg--full {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-image: var(--void-hero, none);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 100vh;
}
.void-hero-product--fullbg .void-hero-product__shade--full {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.15) 30%,
    rgba(0, 0, 0, 0.45) 65%,
    rgba(0, 0, 0, 0.88) 100%
  );
}
.void-hero-product--fullbg .void-hero-product__inner {
  position: relative;
  z-index: 2;
  padding-top: 2.25rem;
  min-height: min(100vh, 900px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.void-crumbs--top {
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  width: auto;
  max-width: none;
  margin: 0 0 1rem;
  justify-content: flex-start;
  text-align: left;
  z-index: 5;
}
.void-hero-product--fullbg .void-product-below {
  display: block !important;
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--void-border);
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
}
.void-hero-product--fullbg .void-product-below::before,
.void-hero-product--fullbg .void-product-below::after {
  display: none;
}
.void-tile__stock {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  padding: 0.28rem 0.55rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.78);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
}

/* —— Products grid spring scroll —— */
.spring-reveal {
  opacity: 0;
  transform: translateY(52px) scale(0.9);
  will-change: transform, opacity;
}
.spring-reveal.is-sprung {
  animation: void-spring-in 0.82s cubic-bezier(0.34, 1.45, 0.64, 1) forwards;
  animation-delay: calc(var(--spring-i, 0) * 60ms);
}
@keyframes void-spring-in {
  0% {
    opacity: 0;
    transform: translateY(52px) scale(0.9);
  }
  55% {
    opacity: 1;
    transform: translateY(-10px) scale(1.03);
  }
  75% {
    transform: translateY(5px) scale(0.99);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* —— Guide HUD — larger —— */
.guide-hud {
  min-height: calc(100vh - 4rem);
  max-height: calc(100vh - 4rem);
  padding: 0.5rem 0;
}
.guide-hud__frame {
  max-width: min(1280px, 96vw);
  max-height: calc(100vh - 5rem);
  min-height: calc(100vh - 5.5rem);
  padding: 1.35rem 1.5rem;
  border-radius: 20px;
}
.guide-hud__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.guide-hud__tab {
  font-size: 0.78rem;
  padding: 0.5rem 1rem;
}
.guide-hud__panel-head h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
}
.guide-hud__step {
  padding: 0.7rem 0.85rem;
}
.guide-hud__step-text strong {
  font-size: 0.9rem;
}
@media (min-width: 1100px) {
  .guide-hud__body {
    grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
    gap: 1.35rem;
  }
}

/* —— Solid nav on product pages —— */
body.cyborg-app:has(.void-hero-product--fullbg) .cyborg-nav-wrap {
  background: transparent;
  pointer-events: none;
  position: sticky;
}
body.cyborg-app:has(.void-hero-product--fullbg) .cyborg-nav-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -0.75rem;
  height: 5.5rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.55) 55%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}
body.cyborg-app:has(.void-hero-product--fullbg) .cyborg-nav {
  background: rgba(0, 0, 0, 0.82) !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
}
body.cyborg-app:has(.void-hero-product--fullbg) .cyborg-nav__promo {
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}
body.cyborg-app:has(.void-hero-product--fullbg) .cyborg-nav__link,
body.cyborg-app:has(.void-hero-product--fullbg) .cyborg-nav__brand,
body.cyborg-app:has(.void-hero-product--fullbg) .cyborg-nav__action {
  color: #ffffff !important;
  opacity: 1 !important;
}
body.cyborg-app:has(.void-hero-product--fullbg) .cyborg-nav__link {
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

/* —— Product folds (features / sysreq) —— */
.void-hero-product--fullbg .void-hero-product__copy--cheat {
  max-width: 100%;
}
.void-product-folds {
  width: 100%;
  max-width: 32rem;
  margin-top: 0.85rem;
  display: grid;
  gap: 0.45rem;
}
.void-fold {
  border-radius: 12px;
  border: 1px solid var(--void-border);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.void-fold[open] {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.06);
}
.void-fold__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--void-text);
  cursor: pointer;
  list-style: none;
}
.void-fold__head::-webkit-details-marker {
  display: none;
}
.void-fold__chev {
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.28s ease;
  opacity: 0.7;
}
.void-fold[open] .void-fold__chev {
  transform: rotate(-135deg);
  margin-top: 4px;
}
.void-fold__body {
  padding: 0 0.9rem 0.85rem;
  max-height: min(42vh, 320px);
  overflow-y: auto;
}
.void-fold__body .void-feat-grid {
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
.void-fold__body .void-feat-card {
  padding: 0.75rem 0.85rem;
}
.void-sysreq-card--compact {
  padding: 0.75rem !important;
  background: transparent !important;
  border: none !important;
}

/* —— NFA stock on duration tiles —— */
.cyborg-duration__api-stock {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.15rem;
}

/* —— Status page motion —— */
.status-void__list--animated .status-void__cell {
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.status-void__cell.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px) scale(0.97);
}
.status-void__cell.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: none;
  animation: status-card-in 0.55s cubic-bezier(0.34, 1.35, 0.64, 1) forwards;
}
@keyframes status-card-in {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  65% {
    transform: translateY(-4px) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.status-grid-card {
  transition: border-color 0.25s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.status-grid-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.08);
}
.status-void__filters .void-chip {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.status-void__filters .void-chip:active {
  transform: scale(0.96);
}
.status-void__filters .void-chip.is-active {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.12);
}

/* —— Guide polish v2 —— */
.guide-hud__frame {
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 32px 80px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(255, 255, 255, 0.04);
}
.guide-hud__step:hover {
  transform: translateX(3px);
}
.guide-hud__tab.is-active {
  font-weight: 800;
}

/* —— Account copy viewport tiles —— */
.void-hero-product--viewport .acct-hero-tiles {
  max-width: 32rem;
}
.void-hero-product--viewport .acct-hero-tiles .v {
  font-size: 0.78rem;
  line-height: 1.3;
  word-break: break-word;
  hyphens: auto;
}
.void-hero-product--viewport .acct-hero-tiles .k {
  font-size: 0.62rem;
}
.void-hero-product--viewport .acct-hero-tiles div {
  min-width: 0;
}

@media (max-width: 991px) {
  .void-product-folds {
    max-width: 100%;
  }
  .void-fold__body {
    max-height: 200px;
  }
}

/* —— Buy Now / Add to Cart —— */
.cyborg-buy-row {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 1rem;
}
.cyborg-buy-row--spoofer {
  margin-top: 1.15rem;
}
.cyborg-btn-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 1.25rem;
  border: none;
  border-radius: 12px;
  background: #ffffff;
  color: #09090b;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.2);
}
.cyborg-btn-buy:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 0 36px rgba(255, 255, 255, 0.3);
}
.cyborg-btn-buy:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.cyborg-buy-row--reported .cyborg-btn-buy,
.void-hero-product--spoofer.is-reported-line .cyborg-btn-buy {
  background: #ffffff !important;
  color: #000000 !important;
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.22) !important;
}
.cyborg-checkout-form .cyborg-btn-buy,
.cyborg-checkout-form .btn-primary.w-100 {
  background: #ffffff !important;
  color: #000000 !important;
  border: none !important;
}
.cyborg-btn-add {
  width: 100%;
  min-height: 44px;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--void-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--void-dim);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease;
}
.cyborg-btn-add:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* —— Download blank page —— */
.cyborg-download-blank {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #000000;
}
body.cyborg-app:has(.cyborg-download-blank) .cyborg-ambient,
body.cyborg-app:has(.cyborg-download-blank) .cyborg-starfield,
body.cyborg-app:has(.cyborg-download-blank) .cyborg-vignette,
body.cyborg-app:has(.cyborg-download-blank) .cyborg-nav-wrap,
body.cyborg-app:has(.cyborg-download-blank) .cyborg-main {
  visibility: hidden;
  pointer-events: none;
}

/* —— Product folds polish —— */
.void-product-folds {
  max-width: 100%;
}
.void-fold__head {
  font-size: 0.7rem;
}
.void-fold__body .void-features-parsed--fold,
.void-fold__body .void-sysreq-card--compact {
  font-size: 0.82rem;
}
.void-fold__body .void-feat-card,
.void-fold__body .void-sysreq-card {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(0, 0, 0, 0.4) !important;
}
.void-features-parsed--fold ul,
.void-sysreq-card--compact ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.void-features-parsed--fold li,
.void-sysreq-card--compact li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1rem;
  color: var(--void-dim);
  line-height: 1.45;
}
.void-features-parsed--fold li::before,
.void-sysreq-card--compact li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #fff;
  opacity: 0.7;
}

/* —— Cart page —— */
body.cyborg-app:has(.cart-v3-root) .cyborg-main {
  overflow-x: hidden;
}
.cart-v3-root .cart-v3 {
  min-height: calc(100vh - 5rem);
  padding: 1.5rem 0 2rem;
}
.cart-v3__hero {
  margin-bottom: 0.25rem;
}
.cart-v3__hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.cart-v3__line {
  border-radius: 12px !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.cart-v3__line:hover {
  border-color: rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.06);
}
.cart-v3__summary {
  position: sticky;
  top: 5.5rem;
  border-radius: 14px !important;
}
.cart-v3__summary .cyborg-btn--primary {
  min-height: 48px;
  font-size: 0.95rem;
  font-weight: 800;
}

/* —— Dashboard fit —— */
.dash-one {
  min-height: calc(100vh - 5rem);
  max-height: calc(100vh - 5rem);
  padding: 0.75rem 0;
  overflow: hidden;
}
.dash-one__grid {
  min-height: calc(100vh - 6.5rem);
  max-height: calc(100vh - 6.5rem);
}
.dash-one__main {
  overflow: hidden;
}
.dash-one__panels {
  flex: 1;
  min-height: 0;
  align-content: start;
}

/* —— Guide content —— */
.guide-hud__scroll {
  overflow-y: auto;
  max-height: min(52vh, 420px);
  padding-right: 0.25rem;
}
.guide-hud__h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 800;
}
.guide-hud__h4 {
  margin: 1rem 0 0.4rem;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--void-muted);
}
.guide-hud__lead {
  margin: 0 0 1rem;
  color: var(--void-muted);
  line-height: 1.5;
}
.guide-hud__warn {
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(251, 146, 60, 0.35);
  background: rgba(251, 146, 60, 0.08);
  margin-bottom: 0.85rem;
}
.guide-hud__note {
  font-size: 0.82rem;
  color: var(--void-muted);
  margin-top: 0.75rem;
}
.guide-hud__updated {
  margin-top: 1rem;
  font-size: 0.72rem;
  color: var(--void-muted);
}
.guide-dl-grid {
  display: grid;
  gap: 0.55rem;
}
.guide-dl-card {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--void-border);
  background: rgba(255, 255, 255, 0.02);
}
.guide-dl-card h3 {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
  font-weight: 800;
}
.guide-dl-card p {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  color: var(--void-muted);
}
.guide-steps {
  margin: 0.75rem 0 1rem;
  padding: 0;
  list-style: none;
  counter-reset: guide-step;
}
.guide-steps--numbered {
  counter-reset: guide-step;
}
.guide-steps > li {
  position: relative;
  padding: 0.65rem 0 0.65rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.guide-steps--numbered > li::before {
  counter-increment: guide-step;
  content: counter(guide-step);
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  border-radius: 6px;
  border: 1px solid var(--void-border);
  font-size: 0.68rem;
  font-weight: 800;
  color: #fff;
}
.guide-steps p {
  margin: 0.25rem 0 0.5rem;
  font-size: 0.82rem;
  color: var(--void-muted);
}
.guide-two-col {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0;
}
@media (min-width: 560px) {
  .guide-two-col {
    grid-template-columns: 1fr 1fr;
  }
}
.guide-os-table {
  display: grid;
  gap: 0.45rem;
  margin: 0.75rem 0 1rem;
}
.guide-os-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.25rem 0.75rem;
  align-items: center;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--void-border);
  background: rgba(0, 0, 0, 0.35);
  font-size: 0.82rem;
}
.guide-os-row em {
  grid-column: 1;
  font-size: 0.72rem;
  color: var(--void-muted);
  font-style: normal;
}
.guide-os-badge {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}
.guide-os-badge--ok {
  color: #86efac;
  border: 1px solid rgba(134, 239, 172, 0.3);
}
.guide-os-badge--warn {
  color: #fdba74;
  border: 1px solid rgba(251, 146, 60, 0.35);
}
.guide-hud__step.is-active {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}
.guide-hud code,
.guide-hud kbd {
  padding: 0.12rem 0.4rem;
  border-radius: 4px;
  border: 1px solid var(--void-border);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.85em;
}

/* —— Guide page (Cyborg) —— */
.guide-cyborg {
  padding: 1.25rem 0 2rem;
  min-height: calc(100vh - 5rem);
}
.guide-cyborg__wrap {
  max-width: 1000px;
}
.guide-cyborg__header--compact {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--void-border);
}
.guide-cyborg__header--compact h1 {
  margin: 0 0 0.25rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
}
.guide-cyborg__header--compact p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--void-muted);
}
.guide-cyborg__header {
  margin-bottom: 2.25rem;
  text-align: left;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--void-border);
}
.guide-cyborg__header h1 {
  margin: 0 0 0.45rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}
.guide-cyborg__header p {
  margin: 0;
  font-size: 1rem;
  color: var(--void-muted);
  max-width: 52ch;
  line-height: 1.55;
}
.guide-cyborg__layout {
  display: grid;
  gap: 1rem;
  align-items: start;
}
@media (min-width: 900px) {
  .guide-cyborg__layout {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 1.25rem;
  }
}
.guide-cyborg__sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: sticky;
  top: 5.5rem;
  max-height: calc(100vh - 7rem);
  overflow-y: auto;
  scrollbar-width: thin;
}
.guide-cyborg__search {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.85rem;
  margin-bottom: 0.35rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.45);
}
.guide-cyborg__search i {
  color: var(--void-muted);
  font-size: 0.85rem;
}
.guide-cyborg__search input {
  flex: 1;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 0.84rem;
  outline: none;
}
.guide-cyborg__search input::placeholder {
  color: var(--void-muted);
}
.guide-cyborg__category {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.45);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.guide-cyborg__category:has(.guide-cyborg__cat-btn.is-open) {
  border-color: rgba(255, 255, 255, 0.18);
}
.guide-cyborg__cat-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: none;
  background: transparent;
  color: var(--void-text);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}
.guide-cyborg__cat-btn:hover {
  background: rgba(255, 255, 255, 0.04);
}
.guide-cyborg__count {
  display: grid;
  place-items: center;
  min-width: 1.5rem;
  height: 1.5rem;
  padding: 0 0.35rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
}
.guide-cyborg__cat-title {
  flex: 1;
}
.guide-cyborg__chev {
  font-size: 0.65rem;
  opacity: 0.5;
  transition: transform 0.25s ease;
}
.guide-cyborg__cat-btn.is-open .guide-cyborg__chev {
  transform: rotate(180deg);
  opacity: 0.85;
}
.guide-cyborg__articles {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0 0.5rem 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.guide-cyborg__article-link {
  width: 100%;
  padding: 0.55rem 0.65rem 0.55rem 2.15rem;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--void-muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}
.guide-cyborg__article-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}
.guide-cyborg__article-link.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-left: 2px solid #fff;
  padding-left: calc(0.65rem - 2px);
  margin-left: 0;
}
.guide-cyborg__main {
  padding: 1rem 1.15rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.4);
  min-height: 280px;
  max-height: min(72vh, 560px);
  overflow-y: auto;
  scrollbar-width: thin;
}
.guide-cyborg__content h2 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}
.guide-cyborg__content h3 {
  margin: 1.25rem 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--void-dim);
}
.guide-cyborg__content p {
  margin: 0 0 0.55rem;
  font-size: 0.84rem;
  color: var(--void-muted);
  line-height: 1.55;
}
.guide-cyborg__content--pick p {
  color: var(--void-dim);
  padding: 2rem 0;
  text-align: center;
}
.guide-cyborg__btn {
  display: inline-flex;
  align-items: center;
  margin: 0.35rem 0 0.65rem;
  padding: 0.5rem 0.95rem;
  border-radius: 8px;
  background: #000;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.guide-cyborg__btn:hover {
  background: #111;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff !important;
}
.guide-cyborg__btn--ghost {
  background: transparent;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.guide-cyborg__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.4);
}
.guide-cyborg__steps {
  margin: 0.75rem 0 1rem;
  padding: 0;
  list-style: none;
}
.guide-cyborg__steps li {
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.86rem;
  color: var(--void-dim);
  line-height: 1.5;
}
.guide-cyborg__steps--num {
  counter-reset: gstep;
}
.guide-cyborg__steps--num li {
  padding-left: 1.75rem;
  position: relative;
}
.guide-cyborg__steps--num li::before {
  counter-increment: gstep;
  content: counter(gstep);
  position: absolute;
  left: 0;
  font-weight: 800;
  color: var(--void-muted);
}
.guide-cyborg__dl-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.guide-cyborg__dl-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.25rem 1rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.guide-cyborg__dl-list li strong {
  grid-column: 1;
  font-size: 0.88rem;
  color: #fff;
}
.guide-cyborg__dl-list li span {
  grid-column: 1;
  font-size: 0.78rem;
  color: var(--void-muted);
}
.guide-cyborg__dl-list li a {
  grid-column: 2;
  grid-row: 1 / span 2;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff !important;
  text-decoration: none;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.guide-cyborg__warn {
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(251, 146, 60, 0.3);
  background: rgba(251, 146, 60, 0.08);
  font-size: 0.82rem;
}
.guide-cyborg__req {
  margin: 0;
  padding: 0;
  list-style: none;
}
.guide-cyborg__req li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.35rem 0.75rem;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.84rem;
}
.guide-cyborg__req li em {
  font-size: 0.72rem;
  color: var(--void-muted);
  font-style: normal;
}
.guide-cyborg__req li b {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
}
.guide-cyborg code,
.guide-cyborg kbd {
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.85em;
}

/* —— Product spec panels (features + sysreq) —— */
.void-spec-panels {
  display: grid;
  gap: 0.65rem;
  width: 100%;
  max-width: 100%;
  margin-top: 0.75rem;
}
@media (min-width: 640px) {
  .void-spec-panels {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}
.void-spec-panel {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
.void-spec-panel--features .void-spec-panel__title {
  color: var(--void-dim);
}
.void-spec-panel--sysreq .void-spec-panel__title {
  color: var(--void-dim);
}
.void-spec-panel__title {
  margin: 0;
  padding: 0.65rem 0.85rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--void-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.void-spec-panel__body {
  padding: 0.75rem 0.85rem;
  overflow-y: auto;
}
.void-spec-panel--features .void-spec-panel__body {
  max-height: none;
  overflow: visible;
}
.void-spec-panel--sysreq .void-spec-panel__body {
  max-height: none;
  overflow: visible;
}
.void-spec-panel--features .void-feat-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.5rem;
  width: 100%;
}
@media (min-width: 520px) {
  .void-spec-panel--features .void-feat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.void-spec-panel--features .void-feat-card {
  padding: 0.7rem 0.75rem;
  border-radius: 10px;
  min-height: 0;
}
.void-spec-panel--features .void-feat-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}
.void-spec-panel--features .void-feat-card li {
  font-size: 0.72rem;
  margin-bottom: 0.2rem;
  padding-left: 0.75rem;
}
.void-spec-panel--features .void-feat-card:hover {
  transform: translateY(-2px);
}
.void-spec-panels {
  align-items: stretch;
}
.void-spec-panel {
  display: flex;
  flex-direction: column;
}
.void-spec-panel__body {
  flex: 1;
}
.void-spec-panel--features .void-features-parsed--panel li {
  min-height: 2.15rem;
  padding: 0.45rem 0 0.45rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.void-spec-panel--features .void-features-parsed--panel li:last-child {
  border-bottom: none;
}
.void-spec-panel__empty {
  margin: 0;
  font-size: 0.8rem;
  color: var(--void-muted);
}
.void-spec-rows {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.void-spec-row {
  display: grid;
  grid-template-columns: 4.25rem minmax(0, 1fr);
  gap: 0.45rem 0.85rem;
  align-items: start;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.void-spec-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.void-spec-row:first-child {
  padding-top: 0;
}
.void-spec-panel--sysreq .void-spec-rows {
  gap: 0;
}
.void-spec-row dt {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--void-muted);
  padding-top: 0.15rem;
}
.void-spec-row dd {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.void-spec-line {
  display: block;
  font-size: 0.82rem;
  color: var(--void-dim);
  line-height: 1.4;
}
.void-spec-tag {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.12rem 0.4rem;
  border-radius: 4px;
  font-size: 0.62rem;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--void-muted);
}
.void-spec-tag--ok {
  color: #86efac;
  border-color: rgba(134, 239, 172, 0.35);
  background: rgba(134, 239, 172, 0.08);
}
.void-spec-tag--warn {
  color: #fdba74;
  border-color: rgba(251, 146, 60, 0.35);
  background: rgba(251, 146, 60, 0.08);
}
.void-features-parsed--panel ul,
.void-sysreq-card--panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.void-features-parsed--panel li,
.void-sysreq-card--panel li {
  position: relative;
  padding: 0.3rem 0 0.3rem 0.85rem;
  font-size: 0.8rem;
  color: var(--void-dim);
  line-height: 1.4;
}
.void-features-parsed--panel li::before,
.void-sysreq-card--panel li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fff;
  opacity: 0.6;
}
.void-spec-panel--standalone {
  max-width: 28rem;
}

/* —— Dashboard v2 —— */
.dash-one--v2 {
  padding: 1.25rem 0 1.5rem;
}
.dash-one--v2 .dash-one__main {
  padding: 1.35rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(255, 255, 255, 0.04), transparent),
    rgba(0, 0, 0, 0.5);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}
.dash-one__welcome {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--void-border);
}
.dash-one__eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--void-muted);
}
.dash-one__welcome h1 {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.dash-one--v2 .dash-one__email {
  margin-top: 0.35rem;
}
.dash-one__stat {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--void-border);
  background: rgba(0, 0, 0, 0.55);
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}
.dash-one__stat:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}
.dash-one--v2 .dash-one__stat .v {
  font-size: 1.25rem;
}
.dash-one__panel--order {
  min-height: 7rem;
}
.dash-one__empty {
  margin: 0;
  font-size: 0.88rem;
  color: var(--void-muted);
  line-height: 1.5;
}
.dash-one__order-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
}
.dash-one--v2 .dash-one__link-card {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--void-border);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}
.dash-one--v2 .dash-one__link-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
  color: inherit;
}
.dash-one__link-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}
.dash-one__link-desc {
  font-size: 0.72rem;
  color: var(--void-muted);
}
.dash-one--v2 .dash-one__links {
  display: grid;
  gap: 0.5rem;
}

/* —— Products listing v2 —— */
.void-page--products-v2 {
  padding: 1.5rem 0 3rem;
}
.void-page__head--center {
  margin-bottom: 1.5rem;
  text-align: center;
  width: 100%;
  max-width: none !important;
  margin-left: auto;
  margin-right: auto;
}
.void-page__head--center h1 {
  margin: 0 auto;
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}
.void-page--products .void-page__head {
  max-width: none;
  text-align: center;
  width: 100%;
}

/* —— Dashboard v3 —— */
.dash-one--v3 {
  padding: 1.5rem 0 2rem;
}
body.cyborg-app:has(.dash-one--v3) .cyborg-main {
  overflow: hidden;
}
.dash-one--v3 .dash-one__main {
  padding: 1.5rem 1.65rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(255, 255, 255, 0.05), transparent 50%),
    rgba(0, 0, 0, 0.55);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.5);
}
.dash-one__welcome--v3 {
  padding-bottom: 1.15rem;
  margin-bottom: 0.5rem;
}
.dash-one__welcome--v3 h1 {
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}
.dash-one__stats--v3 {
  gap: 0.65rem;
}
.dash-one__panels--v3 {
  gap: 0.75rem;
}
.dash-one__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.dash-one__panel-head h2 {
  margin: 0;
}
.dash-one__panel-link {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--void-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.dash-one__panel-link:hover {
  color: #fff;
}
.dash-one--v3 .dash-one__link-card::after {
  display: none;
}
.dash-one--v3 .dash-one__link-card {
  flex-direction: column;
  align-items: flex-start;
}

/* —— Home hero (minimal) —— */
.home-hero {
  position: relative;
  padding: 2rem 0;
}
.home-hero--fit {
  min-height: calc(100vh - 5rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-hero__inner {
  width: 100%;
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
.home-hero__title {
  margin: 0 0 2.25rem;
  font-size: clamp(2.5rem, 7.5vw, 4.75rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow: 0 0 60px rgba(255, 255, 255, 0.12);
}
.home-hero__accent {
  display: inline-block;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.72) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(255, 255, 255, 0.35));
}
.home-hero__actions {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}
.home-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.28s ease,
    color 0.22s ease;
}
.home-hero__btn--primary {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
}
.home-hero__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.25);
  color: #000;
}
.home-hero__btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.home-hero__btn--ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}
.home-hero__reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.home-hero__reveal.is-visible {
  opacity: 1;
  transform: none;
}
.home-hero__reveal--delay {
  transition-delay: 0.12s;
}

/* —— Guide compact + download rows —— */
.guide-cyborg {
  padding: 0.85rem 0 1.5rem !important;
}
.guide-cyborg__sidebar {
  top: 4.75rem !important;
  gap: 0.35rem !important;
}
.guide-cyborg__main {
  min-height: 240px !important;
  max-height: min(62vh, 480px) !important;
  padding: 0.85rem 1rem !important;
}
.guide-cyborg__dl-list li a {
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.guide-cyborg__dl-list li a:hover {
  background: #111;
  border-color: rgba(255, 255, 255, 0.35);
}
.guide-cyborg__content h2 {
  font-size: 1.05rem !important;
}

/* —— Accounts: normal tiles, scrollable —— */
body.cyborg-app:has(.accounts-market--fit) .cyborg-main {
  overflow: auto;
  max-height: none;
}
.accounts-market--fit {
  min-height: auto;
  padding-bottom: 2rem;
}
.accounts-market__cell .void-tile {
  aspect-ratio: 1.08;
  min-height: 0;
}

/* —— Home (Cyborg landing) —— */
.home-cyborg {
  position: relative;
  padding: 2rem 0 3rem;
  overflow: hidden;
}
.home-cyborg--fit {
  min-height: calc(100vh - 5rem);
  display: flex;
  align-items: center;
}
.home-cyborg__grid-bg {
  display: none !important;
}
.home-cyborg__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 15% 50%, rgba(255, 255, 255, 0.07), transparent 55%),
    radial-gradient(ellipse 40% 35% at 85% 30%, rgba(255, 255, 255, 0.04), transparent 50%);
}
.home-cyborg__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}
.home-cyborg__pills li {
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.65);
}
.home-cyborg__inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  padding: 0 1.5rem;
  text-align: left;
}
.home-cyborg__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding: 0.4rem 0.85rem 0.4rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.5);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.home-cyborg__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.65);
  flex-shrink: 0;
}
.home-cyborg__title {
  margin: 0 0 1rem;
  font-size: clamp(2.35rem, 6.5vw, 3.85rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #ffffff;
}
.home-cyborg__brand {
  color: #fff;
  text-shadow: none;
}
.home-cyborg__lead {
  margin: 0 0 1.75rem;
  max-width: 36ch;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}
.home-cyborg__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}
.home-cyborg__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1.35rem;
  border-radius: 10px;
  background: #ffffff !important;
  color: #0a0a0a !important;
  border: none !important;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none !important;
  text-transform: none;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 24px rgba(255, 255, 255, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.home-cyborg__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.22);
  color: #0a0a0a !important;
  background: #ffffff !important;
}
.home-cyborg__btn-primary i {
  font-size: 0.8rem;
  opacity: 0.85;
}
.home-cyborg__btn-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55) !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}
.home-cyborg__btn-link:hover {
  color: #ffffff !important;
}
.home-cyborg__reveal {
  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__reveal.is-visible {
  opacity: 1;
  transform: none;
}
.home-cyborg__reveal--delay {
  transition-delay: 0.15s;
}
.home-cyborg__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 960px) {
  .home-cyborg__layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
    gap: 3rem;
  }
}
.home-cyborg__inner {
  max-width: none;
  padding: 0;
}
.home-cyborg__visual {
  position: relative;
  min-height: 320px;
  display: none;
}
@media (min-width: 960px) {
  .home-cyborg__visual {
    display: block;
    min-height: 420px;
  }
}
.home-cyborg__img-wrap {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}
.home-cyborg__hero-img {
  display: block;
  width: 100%;
  margin: 0 auto;
  height: auto;
  max-height: min(72vh, 560px);
  object-fit: contain;
  object-position: center bottom;
  filter: none;
  opacity: 1;
  mix-blend-mode: normal;
  position: relative;
  z-index: 1;
}
.home-cyborg__img-blur {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 32%;
  z-index: 2;
  pointer-events: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.4) 45%, transparent 100%);
  mask-image: linear-gradient(to top, #000 25%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, #000 25%, transparent 100%);
}
.home-cyborg__float {
  position: absolute;
  z-index: 4;
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  animation: home-cyborg-float 5s ease-in-out infinite alternate;
}
.home-cyborg__float--status {
  top: 12%;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.home-cyborg__float--shield {
  bottom: 18%;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  animation-delay: -2.5s;
}
.home-cyborg__float--shield small {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--void-muted);
}
.home-cyborg__float--shield strong {
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
}
.home-cyborg__float-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.65);
  flex-shrink: 0;
}
@keyframes home-cyborg-float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}
body.cyborg-app:has(.home-cyborg) .cyborg-ambient__grid {
  opacity: 0.88;
  background-size: 44px 44px;
}
body.cyborg-app:has(.home-cyborg) .cyborg-vignette {
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, transparent 0%, rgba(0, 0, 0, 0.35) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, transparent 35%, transparent 70%, rgba(0, 0, 0, 0.25) 100%) !important;
}

/* —— Guide archive (legacy, unused) —— */
.guide-cyborg-archive {
  padding: 2rem 0 3rem;
  min-height: calc(100vh - 5rem);
}
.guide-cyborg-archive__wrap {
  max-width: 1200px;
}
.guide-cyborg-archive__hero {
  margin-bottom: 2rem;
  text-align: left;
}
.guide-cyborg-archive__hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}
.guide-cyborg-archive__hero p {
  margin: 0;
  font-size: 1rem;
  color: var(--void-muted);
  max-width: 52ch;
  line-height: 1.55;
}
.guide-cyborg-archive__shell {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}
@media (min-width: 960px) {
  .guide-cyborg-archive__shell {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 1.5rem;
  }
}
.guide-cyborg-archive__rail {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  order: 2;
}
@media (min-width: 960px) {
  .guide-cyborg-archive__rail {
    order: 0;
    position: sticky;
    top: 5rem;
    max-height: calc(100vh - 6.5rem);
    overflow-y: auto;
    scrollbar-width: thin;
  }
  .guide-cyborg-archive__stage {
    order: 0;
  }
}
.guide-cyborg-archive__search {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.55);
  margin-bottom: 0.25rem;
}
.guide-cyborg-archive__search i {
  color: var(--void-muted);
  font-size: 0.85rem;
}
.guide-cyborg-archive__search input {
  flex: 1;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 0.84rem;
  outline: none;
}
.guide-cyborg-archive__search input::placeholder {
  color: var(--void-muted);
}
.guide-cyborg-archive__group-icon {
  display: grid;
  place-items: center;
  width: 1.35rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  flex-shrink: 0;
}
.guide-cyborg-archive__article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  padding: 0.55rem 0.65rem 0.55rem 2.15rem;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--void-muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.guide-cyborg-archive__article.is-active {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  padding-left: calc(0.65rem - 1px);
}
.guide-cyborg-archive__article-title {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.guide-cyborg-archive__article-tag {
  flex-shrink: 0;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--void-muted);
}
.guide-cyborg-archive__article-tag.is-important {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.guide-cyborg-archive__stage {
  min-height: 420px;
  border: none;
  background: transparent;
  padding: 0;
  max-height: none;
}
.guide-cyborg-archive__panel,
.guide-cyborg-archive__main {
  border: none;
  background: transparent;
  padding: 0;
  min-height: 0;
  max-height: none;
}
.guide-cyborg-archive__card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.55);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  animation: guide-fade-in 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.guide-cyborg-archive__card-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.25rem 1.35rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.guide-cyborg-archive__card-icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1rem;
}
.guide-cyborg-archive__card-head h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
}
.guide-cyborg-archive__card-body {
  flex: 1;
  padding: 1rem 1.35rem 1.15rem;
  overflow-y: auto;
  scrollbar-width: thin;
}
.guide-cyborg-archive__card-body h2 {
  display: none;
}
.guide-cyborg-archive__card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1.35rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.guide-cyborg-archive__prio {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--void-muted);
}
.guide-cyborg-archive__prio--important {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.guide-cyborg-archive__updated {
  font-size: 0.72rem;
  color: var(--void-muted);
}
.guide-cyborg-archive__card--empty {
  align-items: center;
  justify-content: center;
  padding: 3rem;
}
.guide-cyborg-archive__card--empty p {
  margin: 0;
  color: var(--void-dim);
}
.guide-cyborg-archive__group {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.guide-cyborg-archive__group:has(.guide-cyborg-archive__group-btn.is-open) {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.55);
}
.guide-cyborg-archive__group-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.9rem 1rem;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}
.guide-cyborg-archive__group-btn:hover {
  background: rgba(255, 255, 255, 0.04);
}
.guide-cyborg-archive__count {
  display: grid;
  place-items: center;
  min-width: 1.65rem;
  height: 1.65rem;
  padding: 0 0.4rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.guide-cyborg-archive__group-label {
  flex: 1;
}
.guide-cyborg-archive__chev {
  font-size: 0.7rem;
  opacity: 0.45;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.guide-cyborg-archive__group-btn.is-open .guide-cyborg-archive__chev {
  transform: rotate(180deg);
  opacity: 0.85;
}
.guide-cyborg-archive__articles {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0 0.5rem 0.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.guide-cyborg-archive__article {
  width: 100%;
  padding: 0.55rem 0.65rem 0.55rem 2.4rem;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--void-muted);
  font-size: 0.84rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}
.guide-cyborg-archive__article:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}
.guide-cyborg-archive__article.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.guide-cyborg-archive__action,
.guide-cyborg-archive__dl-btn {
  display: inline-flex;
  align-items: center;
  margin: 0.35rem 0 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: #000 !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.guide-cyborg-archive__action:hover,
.guide-cyborg-archive__dl-btn:hover {
  background: #111 !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: #fff !important;
}
.guide-cyborg-archive__action--outline {
  background: transparent !important;
}
.guide-cyborg-archive__downloads {
  margin: 0;
  padding: 0;
  list-style: none;
}
.guide-cyborg-archive__downloads li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.guide-cyborg-archive__downloads li:last-child {
  border-bottom: none;
}
.guide-cyborg-archive__dl-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.guide-cyborg-archive__dl-info strong {
  font-size: 0.9rem;
  color: #fff;
}
.guide-cyborg-archive__dl-info span {
  font-size: 0.78rem;
  color: var(--void-muted);
}
.guide-cyborg-archive__dl-btn {
  margin: 0;
  flex-shrink: 0;
}
.guide-cyborg-archive__steps {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}
.guide-cyborg-archive__steps li {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.86rem;
  color: var(--void-dim);
  line-height: 1.5;
}
.guide-cyborg-archive__steps li strong {
  display: block;
  color: #fff;
  margin-bottom: 0.25rem;
}
.guide-cyborg-archive__steps--num {
  counter-reset: gex;
}
.guide-cyborg-archive__steps--num li {
  padding-left: 1.75rem;
  position: relative;
}
.guide-cyborg-archive__steps--num li::before {
  counter-increment: gex;
  content: counter(gex);
  position: absolute;
  left: 0;
  font-weight: 800;
  color: var(--void-muted);
}
.guide-cyborg-archive__warn {
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
  color: var(--void-dim);
}
.guide-cyborg-archive__req {
  margin: 0;
  padding: 0;
  list-style: none;
}
.guide-cyborg-archive__req li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.35rem 0.75rem;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.84rem;
}
.guide-cyborg-archive__req li em {
  font-size: 0.72rem;
  color: var(--void-muted);
  font-style: normal;
}
.guide-cyborg-archive__req li b {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
.guide-cyborg-archive code,
.guide-cyborg-archive kbd {
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.85em;
}
body.cyborg-app:has(.guide-cyborg-archive) .cyborg-main {
  overflow: auto;
  max-height: none;
}

/* —— Ambient background (replaces starfield) —— */
body.cyborg-app:has(.home-portal) .cyborg-vignette {
  background: transparent !important;
}

/* —— Home portal —— */
.home-portal {
  position: relative;
  padding: clamp(2rem, 6vw, 4rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  min-height: calc(100vh - 5rem);
  display: flex;
  align-items: center;
}
.home-portal__inner {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}
.home-portal__hero {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}
.home-portal__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--void-muted);
}
.home-portal__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.75);
  animation: guide-pulse 2s ease infinite;
}
.home-portal__title {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 7vw, 4.25rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #fff;
}
.home-portal__accent {
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.45) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.home-portal__lead {
  margin: 0 auto 1.75rem;
  max-width: 42ch;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--void-muted);
}
.home-portal__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}
.home-portal__cta-primary {
  padding: 0.85rem 1.5rem !important;
  font-size: 0.88rem !important;
  text-transform: none !important;
  letter-spacing: 0.01em !important;
}
.home-portal__grid {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .home-portal__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.home-portal__card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.15rem 1.2rem;
  border-radius: 14px;
  border: 1px solid var(--void-border);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  color: inherit !important;
  text-decoration: none !important;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.home-portal__card:hover {
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}
.home-portal__card-icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0.25rem;
}
.home-portal__card strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}
.home-portal__card > span:last-child {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--void-muted);
}
.home-portal__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--void-border);
}
.home-portal__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.8rem;
  color: var(--void-muted);
}
.home-portal__trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.home-portal__trust i {
  opacity: 0.7;
}
.home-portal__reviews {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--void-dim) !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}
.home-portal__reviews:hover {
  color: #fff !important;
}
.home-portal__reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.home-portal__reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* —— Guide HUD search —— */
.guide-hud__search-input {
  width: 100%;
  margin-bottom: 0.5rem;
  padding: 0.55rem 0.75rem;
  border-radius: 9px;
  border: 1px solid var(--void-border);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: 0.82rem;
  outline: none;
}
.guide-hud__search-input::placeholder {
  color: var(--void-muted);
}
.guide-hud__search-input:focus {
  border-color: rgba(255, 255, 255, 0.28);
}
.guide-hud__rail.guide-hud__scroll {
  max-height: min(52vh, 420px);
  overflow-y: auto;
  scrollbar-width: thin;
}
.guide-hud__content.guide-hud__scroll {
  max-height: min(52vh, 420px);
}
.guide-hud__top {
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media (max-width: 767px) {
  .guide-hud__tabs {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }
  .home-portal__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* —— Guide page (B&W) —— */
body.cyborg-app:has(.guide-cyborg) .cyborg-main {
  overflow: auto;
  max-height: none;
}
body.cyborg-app:has(.guide-cyborg) .cyborg-ambient__grid {
  opacity: 0.85;
  background-size: 48px 48px;
}
body.cyborg-app:has(.guide-cyborg) .cyborg-ambient__beam--a,
body.cyborg-app:has(.guide-cyborg) .cyborg-ambient__beam--b {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}
.guide-cyborg__main {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}
.guide-cyborg__category {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.6);
}
.guide-cyborg__article-link.is-active {
  border-left-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

/* —— Dashboard mini —— */
.dash-one--mini {
  padding: 0.35rem 0 !important;
  min-height: calc(100vh - 4.5rem) !important;
  max-height: calc(100vh - 4.5rem) !important;
}
.dash-one--mini .dash-one__grid {
  min-height: calc(100vh - 4.85rem) !important;
  max-height: calc(100vh - 4.85rem) !important;
  gap: 0.65rem !important;
}
.dash-one--mini .portal-sidebar--hud {
  padding: 0.5rem 0.45rem !important;
  font-size: 0.74rem !important;
}
.dash-one--mini .portal-sidebar__link {
  padding: 0.35rem 0.4rem !important;
  font-size: 0.74rem !important;
}
.dash-one--mini .dash-one__main {
  padding: 0.55rem 0.7rem !important;
  gap: 0.3rem !important;
}
.dash-one--mini .dash-one__welcome--v3 h1 {
  font-size: 1.05rem !important;
}
.dash-one--mini .dash-one__email {
  font-size: 0.72rem !important;
}
.dash-one--mini .dash-one__browse {
  padding: 0.35rem 0.65rem !important;
  font-size: 0.66rem !important;
}
.dash-one--mini .dash-one__stat {
  padding: 0.35rem 0.45rem !important;
}
.dash-one--mini .dash-one__stat .k {
  font-size: 0.58rem !important;
}
.dash-one--mini .dash-one__stat .v {
  font-size: 0.85rem !important;
}
.dash-one--mini .dash-one__panel {
  padding: 0.4rem 0.5rem !important;
}
.dash-one--mini .dash-one__panel h2 {
  font-size: 0.56rem !important;
  margin-bottom: 0.2rem !important;
}
.dash-one--mini .dash-one__order-name,
.dash-one--mini .dash-one__order-meta {
  font-size: 0.72rem !important;
}
.dash-one--mini .dash-one__link-card {
  padding: 0.4rem 0.35rem !important;
  font-size: 0.68rem !important;
}
.dash-one--mini .dash-one__delete-link {
  font-size: 0.6rem !important;
}

/* —— Dashboard slim —— */
body.cyborg-app:has(.dash-one--slim) .cyborg-main {
  overflow: visible !important;
  max-height: none !important;
}
.dash-one--slim {
  padding: 1.25rem 0 2rem !important;
  min-height: auto !important;
  max-height: none !important;
}
.dash-one--slim .dash-one__grid {
  min-height: auto !important;
  max-height: none !important;
  gap: 1rem !important;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .dash-one--slim .dash-one__grid {
    grid-template-columns: 180px minmax(0, 1fr);
  }
}
.dash-one--slim .portal-sidebar--hud {
  padding: 0.65rem 0.55rem !important;
  font-size: 0.78rem !important;
  border-radius: 12px;
}
.dash-one--slim .portal-sidebar__avatar,
.dash-one--slim .portal-sidebar__avatar--letter {
  width: 36px !important;
  height: 36px !important;
  font-size: 0.85rem !important;
}
.dash-one--slim .portal-sidebar__label {
  font-size: 0.62rem !important;
}
.dash-one--slim .portal-sidebar__email {
  font-size: 0.68rem !important;
}
.dash-one--slim .portal-sidebar__link {
  padding: 0.4rem 0.45rem !important;
  font-size: 0.76rem !important;
}
.dash-one--slim .dash-one__main {
  padding: 0.9rem 1rem !important;
  gap: 0.65rem !important;
  border-radius: 12px;
}
.dash-one--slim .dash-one__welcome--v3 h1 {
  font-size: 1.2rem !important;
}
.dash-one--slim .dash-one__email {
  font-size: 0.74rem !important;
}
.dash-one--slim .dash-one__browse {
  padding: 0.4rem 0.75rem !important;
  font-size: 0.68rem !important;
}
.dash-one--slim .dash-one__stats--v3 {
  gap: 0.45rem;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
@media (min-width: 640px) {
  .dash-one--slim .dash-one__stats--v3 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}
.dash-one--slim .dash-one__stat {
  padding: 0.55rem 0.6rem !important;
}
.dash-one--slim .dash-one__stat .k {
  font-size: 0.58rem !important;
}
.dash-one--slim .dash-one__stat .v {
  font-size: 0.95rem !important;
  text-shadow: none !important;
}
.dash-one--slim .dash-one__panels--v3 {
  grid-template-columns: 1fr 1fr !important;
  gap: 0.5rem !important;
}
.dash-one--slim .dash-one__panel {
  padding: 0.6rem 0.7rem !important;
}
.dash-one--slim .dash-one__panel h2 {
  font-size: 0.58rem !important;
}
.dash-one--slim .dash-one__order-name {
  font-size: 0.82rem !important;
}
.dash-one--slim .dash-one__order-meta {
  font-size: 0.72rem !important;
}
.dash-one--slim .dash-one__panel--links {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0.35rem !important;
}
.dash-one--slim .dash-one__link-card {
  padding: 0.5rem 0.35rem !important;
  font-size: 0.72rem !important;
}
.dash-one--slim .dash-one__delete-link {
  font-size: 0.64rem !important;
}

/* —— Feedback stream —— */
body.cyborg-app:has(.feedback-cyborg) .cyborg-main {
  overflow-x: hidden;
}
.feedback-cyborg {
  padding: 1.5rem 0 2.5rem;
  max-width: 760px;
  margin: 0 auto;
}
.feedback-cyborg__head {
  margin-bottom: 1.75rem;
}
.feedback-cyborg__head h1 {
  margin: 0.35rem 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: none;
}
.feedback-cyborg__head p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--void-muted);
  max-width: 42ch;
  line-height: 1.55;
}
.feedback-cyborg__stats {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--void-muted);
}
.feedback-cyborg__stats strong {
  color: #fff;
  font-weight: 800;
}
.feedback-cyborg__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}
.feedback-cyborg__stream {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.feedback-card--cyborg {
  display: grid;
  grid-template-columns: 3px minmax(0, 1fr);
  gap: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.55);
  overflow: hidden;
  transition: border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}
.feedback-card--cyborg:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}
.feedback-card--cyborg .feedback-card__rail {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.08) 100%);
}
.feedback-card--cyborg .feedback-card__body {
  padding: 1rem 1.1rem 0.95rem;
}
.feedback-card--cyborg .feedback-card__star {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.18);
}
.feedback-card--cyborg .feedback-card__star--on {
  color: #fff !important;
  text-shadow: none !important;
}
.feedback-card--cyborg .feedback-card__date {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--void-muted);
}
.feedback-card--cyborg .feedback-card__message {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--void-dim);
}
.feedback-card--cyborg .feedback-card__reply {
  margin-top: 0.65rem;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--void-border);
  background: rgba(255, 255, 255, 0.03);
}
.feedback-card--cyborg .feedback-card__reply-label {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--void-muted);
  margin-bottom: 0.3rem;
}
.feedback-card--cyborg .feedback-card__more {
  border: none;
  background: none;
  padding: 0;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}
.feedback-cyborg__pager {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

/* —— Guide archive hero —— */
.guide-cyborg-archive__hero .void-eyebrow {
  margin-bottom: 0.35rem;
}
.guide-cyborg-archive__article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

/* —— Spec panels: sysreq-only layout —— */
.void-spec-panels--sysreq-only {
  grid-template-columns: 1fr !important;
  max-width: 22rem;
}
.void-spec-panel--solo .void-spec-panel__body {
  padding: 0.85rem 0.95rem;
}

/* —— Accounts marketplace —— */
.accounts-cyborg {
  padding: 1.25rem 0 2.5rem;
  max-width: 1080px;
  margin: 0 auto;
}
.accounts-cyborg__head {
  margin-bottom: 1.35rem;
}
.accounts-cyborg__head h1 {
  margin: 0.35rem 0 0.45rem;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
}
.accounts-cyborg__head p {
  margin: 0;
  max-width: 48ch;
  font-size: 0.9rem;
  color: var(--void-muted);
  line-height: 1.55;
}
.accounts-cyborg__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}
.accounts-cyborg__filter {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.45);
  color: var(--void-muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.accounts-cyborg__filter:hover,
.accounts-cyborg__filter.is-active {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}
.accounts-cyborg__grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .accounts-cyborg__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .accounts-cyborg__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.accounts-cyborg__empty {
  grid-column: 1 / -1;
  color: var(--void-muted);
  font-size: 0.9rem;
}
.acct-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.55);
  overflow: hidden;
  text-decoration: none !important;
  color: inherit;
  transition: border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}
.acct-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}
.acct-card--out {
  opacity: 0.72;
}
.acct-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a0a0a;
}
.acct-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}
.acct-card:hover .acct-card__media img {
  transform: scale(1.04);
}
.acct-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.82) 100%);
}
.acct-card__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.2);
}
.acct-card__type {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  z-index: 2;
  padding: 0.22rem 0.5rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.72);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}
.acct-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  padding: 0.85rem 0.95rem 0.95rem;
}
.acct-card__name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
}
.acct-card__meta {
  margin: 0;
  font-size: 0.72rem;
  color: var(--void-muted);
}
.acct-card__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 0.45rem;
}
.acct-card__from {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--void-muted);
}
.acct-card__price {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}
.acct-card__stock {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.22rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}
.acct-card__stock--live {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}
.acct-card__stock--out {
  color: #f87171;
  border-color: rgba(248, 113, 113, 0.3);
}
.acct-card__stock--check {
  color: var(--void-muted);
}

/* —— Page loader + transitions —— */
.cyborg-page-loader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.cyborg-page-loader.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.cyborg-page-loader.is-done {
  opacity: 0;
  visibility: hidden;
}
.cyborg-page-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  animation: cyborg-loader-pulse 1.2s ease-in-out infinite alternate;
}
.cyborg-page-loader__mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.45);
}
.cyborg-page-loader__brand {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.cyborg-page-loader__bar {
  width: 120px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.cyborg-page-loader__bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: #fff;
  border-radius: inherit;
  animation: cyborg-loader-bar 0.9s ease-in-out infinite alternate;
}
@keyframes cyborg-loader-pulse {
  0% { transform: scale(0.98); opacity: 0.85; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes cyborg-loader-bar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(220%); }
}
.cyborg-nav__link {
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}
.cyborg-nav__link:hover {
  transform: translateY(-1px);
}
.cyborg-nav__link.is-active {
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.45);
}

/* —— Viewport-fit pages + custom scrollbar —— */
body.cyborg-app:has(.cyborg-page-fit) .cyborg-main {
  overflow: hidden !important;
  max-height: calc(100vh - 4.5rem);
  padding-top: 0.25rem;
}
.cyborg-page-fit {
  height: calc(100vh - 4.75rem);
  max-height: calc(100vh - 4.75rem);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0 !important;
}
.cyborg-scroll {
  flex: 1;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #1a1a1a #000000;
  scroll-behavior: smooth;
}
.cyborg-scroll::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.cyborg-scroll::-webkit-scrollbar-track {
  background: #000000;
  border-radius: 999px;
  margin: 4px 0;
}
.cyborg-scroll::-webkit-scrollbar-thumb {
  background: #1a1a1a;
  border-radius: 999px;
  border: 1px solid #000000;
  transition: background 0.25s ease;
}
.cyborg-scroll::-webkit-scrollbar-thumb:hover {
  background: #2a2a2a;
}

/* —— Feedback page (default scroll) —— */
body.cyborg-app:has(.feedback-page-root.cyborg-page-fit) .cyborg-main {
  overflow: hidden !important;
}
.feedback-cyborg {
  padding: 1.25rem 0 2.5rem;
  max-width: 1180px;
  margin: 0 auto;
}
.feedback-cyborg__head {
  margin-bottom: 1.25rem;
}
.feedback-cyborg__head h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
}
.feedback-cyborg__grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr;
  padding-right: 0.25rem;
}
@media (min-width: 640px) {
  .feedback-cyborg__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .feedback-cyborg__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.feedback-card--cyborg {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.55);
  transition: border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}
.feedback-card--cyborg:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}
.feedback-card--cyborg .feedback-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.feedback-card--cyborg .feedback-card__body {
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  height: 100%;
}
.feedback-card--cyborg .feedback-card__message {
  flex: 1;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--void-dim);
}

/* —— Accounts fit viewport —— */
.accounts-cyborg {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0.75rem 0 0.5rem;
  max-width: 1180px;
  margin: 0 auto;
}
.accounts-cyborg__head {
  flex-shrink: 0;
  margin-bottom: 0.75rem;
}
.accounts-cyborg__head h1 {
  margin: 0 0 0.55rem;
  font-size: 1.5rem;
  font-weight: 900;
}
.accounts-cyborg__grid {
  padding-right: 0.25rem;
}

/* —— Products page (default scroll) —— */
.void-page--products-v2:not(.cyborg-scroll) {
  padding: 1.5rem 0 3rem;
}
.void-page--products-v2:not(.cyborg-scroll) .void-page__head {
  margin-bottom: 1.5rem;
}
.void-page--products-v2:not(.cyborg-scroll) .void-page__head h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0;
}

/* —— Guide HUD fit —— */
body.cyborg-app:has(.guide-hud.cyborg-page-fit) .cyborg-main {
  overflow: hidden !important;
}
.guide-hud.cyborg-page-fit {
  padding: 0.5rem 0;
}
.guide-hud__search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  min-width: 180px;
}
.guide-hud__search input {
  border: none;
  background: transparent;
  color: #fff;
  font-size: 0.78rem;
  outline: none;
  width: 100%;
}
.guide-hud__search i {
  color: var(--void-muted);
  font-size: 0.75rem;
}
.guide-hud__content > div > h2:first-child {
  display: none;
}
.guide-hud__step.is-active {
  border-color: rgba(255, 255, 255, 0.35) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.08);
}

/* —— Features panel pop —— */
.void-spec-panel--pop {
  animation: void-panel-pop 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes void-panel-pop {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.void-feat-grid--default {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}
@media (max-width: 520px) {
  .void-feat-grid--default {
    grid-template-columns: 1fr;
  }
}

/* —— Portal sidebar uniform links —— */
.portal-sidebar__link {
  min-height: 36px;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  padding: 0.48rem 0.65rem !important;
  border-radius: 8px;
  border: 1px solid transparent;
}
.portal-sidebar__link.is-active {
  border-color: rgba(255, 255, 255, 0.14) !important;
}

/* —— Cart remake —— */
body.cyborg-app:has(.cart-cyborg-root) .cyborg-main {
  overflow: hidden !important;
}
.cart-cyborg {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0.75rem 0 0.5rem;
  max-width: 960px;
  margin: 0 auto;
}
.cart-cyborg__head {
  flex-shrink: 0;
  margin-bottom: 0.75rem;
}
.cart-cyborg__head h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 900;
}
.cart-cyborg__head p {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  color: var(--void-muted);
}
.cart-cyborg__layout {
  flex: 1;
  min-height: 0;
  display: grid;
  gap: 0.75rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .cart-cyborg__layout {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 1rem;
  }
}
.cart-cyborg__items {
  min-height: 0;
  overflow-y: auto;
  padding-right: 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.38) rgba(255, 255, 255, 0.05);
}
.cart-cyborg__items::-webkit-scrollbar { width: 5px; }
.cart-cyborg__items::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}
.cart-cyborg__list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.cart-cyborg__line {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.55);
  transition: border-color 0.25s ease;
}
.cart-cyborg__line:hover {
  border-color: rgba(255, 255, 255, 0.2);
}
.cart-cyborg__line-media {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
}
.cart-cyborg__line-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-cyborg__line-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.25);
}
.cart-cyborg__line-title {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff !important;
  text-decoration: none !important;
}
.cart-cyborg__line-variant {
  margin: 0.1rem 0 0;
  font-size: 0.72rem;
  color: var(--void-muted);
}
.cart-cyborg__line-price {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
}
.cart-cyborg__line-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}
.cart-cyborg__qty {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0.15rem;
}
.cart-cyborg__qty button {
  width: 26px;
  height: 26px;
  border: none;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
}
.cart-cyborg__qty span {
  min-width: 1.25rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
}
.cart-cyborg__remove {
  border: none;
  background: none;
  color: var(--void-muted);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
}
.cart-cyborg__remove:hover { color: #f87171; }
.cart-cyborg__summary {
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.55);
  align-self: start;
}
.cart-cyborg__summary h2 {
  margin: 0 0 0.75rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--void-muted);
}
.cart-cyborg__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.65rem;
  font-size: 0.88rem;
}
.cart-cyborg__subtotal strong {
  font-size: 1.15rem;
  color: #fff;
}
.cart-cyborg__trust {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  color: var(--void-muted);
}
.cart-cyborg__checkout {
  width: 100%;
  min-height: 44px;
}
.cart-cyborg__empty {
  padding: 2rem 1rem;
  text-align: center;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
}
.cart-cyborg__empty p {
  margin: 0 0 1rem;
  color: var(--void-muted);
}
.cart-cyborg__loading {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1.5rem;
  color: var(--void-muted);
  font-size: 0.88rem;
}
.cart-cyborg__spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-top-color: #fff;
  border-radius: 50%;
  animation: cart-spin 0.7s linear infinite;
}
@keyframes cart-spin {
  to { transform: rotate(360deg); }
}

/* —— Home hero — clean, no glow —— */
.home-cyborg__glow {
  display: none !important;
}
.home-cyborg__img-blur {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 32%;
  z-index: 2;
  pointer-events: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.4) 45%, transparent 100%);
  mask-image: linear-gradient(to top, #000 25%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, #000 25%, transparent 100%);
}
.home-cyborg__img-wrap {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none !important;
}
.home-cyborg__hero-img {
  filter: none !important;
  mix-blend-mode: normal !important;
  box-shadow: none !important;
  opacity: 1 !important;
}
.home-cyborg__float-dot,
.home-cyborg__badge-dot {
  box-shadow: none !important;
  background: #34d399 !important;
}
body.cyborg-app:has(.home-cyborg) .cyborg-ambient__beam {
  display: none !important;
}
body.cyborg-app:has(.home-cyborg) .cyborg-ambient__grid {
  opacity: 0.5;
}
.home-cyborg__float {
  background: rgba(0, 0, 0, 0.72) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: none !important;
}
.home-cyborg__badge {
  background: rgba(0, 0, 0, 0.55) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

/* —— Promo badge in nav brand —— */
.cyborg-announcement {
  display: none !important;
}
.cyborg-nav__brand {
  display: inline-flex !important;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  max-width: 42%;
}
.cyborg-nav__promo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.65rem 0.3rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}
.cyborg-nav__promo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
  flex-shrink: 0;
  animation: cyborg-promo-pulse 2.4s ease-in-out infinite;
}
@keyframes cyborg-promo-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}
.cyborg-nav__promo-label {
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.cyborg-nav__promo-code {
  padding: 0.18rem 0.4rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media (max-width: 900px) {
  .cyborg-nav__promo {
    display: none;
  }
}

/* —— Custom scrollbar (global) —— */
* {
  scrollbar-width: thin;
  scrollbar-color: #1a1a1a #000000;
}
html {
  scrollbar-gutter: stable;
}
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
*::-webkit-scrollbar-track {
  background: #000000;
}
*::-webkit-scrollbar-thumb {
  background: #1a1a1a;
  border-radius: 100px;
  border: 2px solid #000000;
  min-height: 40px;
  transition: background 0.25s ease;
}
*::-webkit-scrollbar-thumb:hover {
  background: #2a2a2a;
}
*::-webkit-scrollbar-thumb:active {
  background: #333333;
}
*::-webkit-scrollbar-corner {
  background: #000000;
}
.cyborg-scroll {
  scrollbar-color: #1a1a1a #000000;
  padding-right: 0;
}

/* —— Products page scale —— */
.void-page--products-v2 {
  padding: 2rem 0 3rem !important;
}
.void-page--products-v2 .void-page__head h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
  font-weight: 900 !important;
}
body.cyborg-app:has(.products-v3-root:not(.cyborg-page-fit)) .cyborg-main {
  overflow: visible !important;
  max-height: none !important;
}

/* —— Product page header —— */
.void-product-header {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 0;
  background: none;
  border: none;
}
.void-product-back {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}
.void-product-back:hover {
  color: rgba(255, 255, 255, 0.85);
}
.void-product-title-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  width: 100%;
}
.void-product-status {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--status-color, #4ade80) 55%, transparent);
  background: color-mix(in srgb, var(--status-color, #4ade80) 12%, transparent);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--status-color, #4ade80);
  white-space: nowrap;
  flex-shrink: 0;
}
.void-product-title-row .void-hero-product__title--header {
  margin: 0 !important;
  font-size: clamp(2.25rem, 5vw, 3.75rem) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

/* —— Product cheat layout: features+sysreq left, checkout right —— */
.void-hero-product--cheat .void-hero-product__inner {
  display: flex !important;
  flex-direction: column !important;
  min-height: 0 !important;
  height: 100% !important;
  padding-top: 0.5rem !important;
  padding-bottom: 0.65rem !important;
}
.void-product-header {
  flex-shrink: 0;
  margin-bottom: 0.55rem !important;
}
.void-hero-product__title--header {
  font-size: clamp(2rem, 4.5vw, 3.25rem) !important;
}
.void-hero-product__grid--cheat-3col {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 310px);
  grid-template-rows: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 0.6rem;
  align-items: stretch;
}
.void-spec-panels--cheat-layout {
  display: contents;
}
.void-spec-panels--cheat-layout .void-spec-panel--features {
  grid-column: 1;
  grid-row: 1;
}
.void-spec-panels--cheat-layout .void-spec-panel--sysreq {
  grid-column: 1;
  grid-row: 2;
}
.void-hero-product__grid--cheat-3col .cyborg-checkout--cheat {
  grid-column: 2;
  grid-row: 1 / 3;
  min-height: 0;
}
.void-hero-product--cheat .void-spec-panel {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}
.void-hero-product--cheat .void-spec-panel__title {
  flex-shrink: 0;
  padding: 0.55rem 0.75rem;
  font-size: 0.58rem;
  text-align: center;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.void-hero-product--cheat .void-spec-panel__body {
  flex: 1;
  min-height: 0;
  padding: 0.55rem 0.65rem;
  overflow: hidden;
}
.void-hero-product--cheat .void-features-parsed--panel {
  columns: 3;
  column-gap: 0.45rem;
}
.void-hero-product--cheat .void-features-parsed--panel li {
  font-size: 0.56rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.82);
  break-inside: avoid;
  padding: 0.15rem 0;
}
.void-hero-product--cheat .void-spec-panel--features .void-feat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
}
.void-hero-product--cheat .void-spec-panel--features .void-feat-card h3 {
  font-size: 0.58rem;
  margin-bottom: 0.25rem;
}
.void-hero-product--cheat .void-spec-panel--features .void-feat-card li {
  font-size: 0.56rem;
  line-height: 1.3;
}
.void-hero-product--cheat .void-spec-row {
  padding: 0.35rem 0;
}
.void-hero-product--cheat .void-spec-row dt {
  font-size: 0.56rem;
  color: rgba(255, 255, 255, 0.45);
}
.void-hero-product--cheat .void-spec-line {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.82);
}
.void-hero-product--cheat .void-spec-panel__empty {
  font-size: 0.68rem;
  padding: 0.5rem;
}
.cyborg-checkout--cheat {
  min-height: 0;
  height: 100%;
}
.cyborg-checkout--cheat .cyborg-checkout-panel {
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 0.9rem 0.85rem !important;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.82);
  box-shadow: none;
  overflow: hidden;
}
.void-hero-product--cheat .cyborg-checkout {
  overflow: hidden !important;
  max-height: none !important;
}
@media (max-width: 991px) {
  .void-hero-product__grid--cheat-3col {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .void-spec-panels--cheat-layout .void-spec-panel--features,
  .void-spec-panels--cheat-layout .void-spec-panel--sysreq,
  .void-hero-product__grid--cheat-3col .cyborg-checkout--cheat {
    grid-column: 1;
    grid-row: auto;
  }
}

/* —— All-products catalog: compact product page —— */
body.cyborg-app:has(.void-solo-product) .cyborg-main {
  overflow: visible !important;
  max-height: none !important;
}
.void-solo-product {
  position: relative;
  padding: 1.25rem 0 3rem;
}
.void-solo-product__shell {
  max-width: 980px;
}
.void-solo-product__back {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}
.void-solo-product__back:hover {
  color: rgba(255, 255, 255, 0.85);
}
.void-solo-product__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}
@media (min-width: 860px) {
  .void-solo-product__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 360px);
    gap: 1.75rem;
  }
  .void-solo-product__buy {
    position: sticky;
    top: 5.5rem;
  }
}
.void-solo-product__frame {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.55);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}
.void-solo-product__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.void-solo-product__frame-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.02) 40%,
    rgba(0, 0, 0, 0.55) 100%
  );
}
.void-solo-product__status {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--status-color, #4ade80) 55%, transparent);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--status-color, #4ade80);
}
.void-solo-product__info {
  padding: 1.1rem 0.15rem 0;
}
.void-solo-product__game {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.void-solo-product__title {
  margin: 0 0 0.55rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
}
.void-solo-product__from {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
}
.void-solo-product__from strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.void-solo-product__perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
}
.void-solo-product__perks li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}
.void-solo-product__perks i {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.45);
}
.void-solo-product__buy .cyborg-checkout-panel {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(255, 255, 255, 0.06), transparent 55%),
    rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  padding: 1.15rem 1.05rem !important;
}

/* —— All-products listing polish —— */
.void-page--all-products {
  padding-bottom: 2.5rem;
}
.void-page--all-products .void-page__head {
  margin-bottom: 2.25rem;
}
.all-products-section {
  margin-bottom: 2.75rem;
}
.all-products-section:last-child {
  margin-bottom: 0;
}
.all-products-section__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.15rem;
}
.all-products-section__title {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  white-space: nowrap;
}
.all-products-section__line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}
.void-page--all-products .void-tiles-grid {
  gap: 1rem;
}
.void-page--all-products .void-tiles-grid--accounts-all .void-tile--account {
  aspect-ratio: 1.08;
}
@media (min-width: 1024px) {
  .void-page--all-products .void-tiles-grid--cols-5 {
    gap: 0.85rem 0.75rem;
  }
}

.guides-page--fit .guides-page__main {
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* —— Choose duration centering —— */
.cyborg-checkout-form__label-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.65rem;
}
.cyborg-checkout-form__label {
  display: block !important;
  width: auto !important;
  text-align: center !important;
  margin: 0 !important;
  padding: 0 !important;
  letter-spacing: 0.1em !important;
}
.cyborg-checkout-form__variants-wrap {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  width: 100% !important;
}
.cyborg-checkout-form__block {
  width: 100%;
}
.cyborg-checkout-panel,
form.cyborg-checkout-panel {
  text-align: center;
}

/* —— Features empty state —— */
.void-spec-panel__empty {
  margin: 0;
  padding: 1.25rem 0.75rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--void-muted);
}

/* —— Dashboard table panels + 125% feel —— */
.dash-one--slim {
  padding: 1.5rem 0 2.5rem !important;
}
.dash-one--slim .dash-one__grid {
  max-width: 1040px !important;
}
.dash-one--slim .dash-one__welcome--v3 h1 {
  font-size: 1.5rem !important;
}
.dash-one--slim .dash-one__stat .v {
  font-size: 1.1rem !important;
}
.dash-one--slim .portal-sidebar__link {
  font-size: 0.82rem !important;
  padding: 0.5rem 0.55rem !important;
}
.dash-one__panel--table {
  padding: 0 !important;
  overflow: hidden;
}
.dash-one__panel--table h2 {
  padding: 0.65rem 0.85rem 0;
}
.dash-one__panel--table .portal-table {
  margin: 0;
}
.dash-one--slim .portal-balance__amt .v {
  font-size: 1.5rem !important;
  font-weight: 800;
  color: #fff;
}

/* —— Guides page — black & white, compact, no scroll —— */
body.cyborg-app:has(.guides-page--fit) {
  overflow: hidden !important;
}
body.cyborg-app:has(.guides-page--fit) .cyborg-main {
  overflow: hidden !important;
  max-height: calc(100vh - 4.5rem);
}
body.cyborg-app:has(.guides-page--fit)::-webkit-scrollbar {
  display: none;
}
.guides-page--fit {
  height: calc(100vh - 4.75rem);
  max-height: calc(100vh - 4.75rem);
  overflow: hidden;
  padding: 0.75rem 0;
  display: flex;
  flex-direction: column;
}
.guides-page--fit .guides-page__wrap {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  max-width: 1180px;
}
.guides-page--fit .guides-page__header {
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}
.guides-page--fit .guides-page__layout {
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.guides-page {
  padding: 1rem 0 1.5rem;
}
.guides-page__wrap {
  max-width: 1180px;
}
.guides-page__header {
  margin-bottom: 1.5rem;
}
.guides-page__title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.4rem;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
}
.guides-page__title i {
  font-size: 0.85em;
  opacity: 0.9;
}
.guides-page__subtitle {
  margin: 0;
  font-size: 0.92rem;
  color: var(--void-muted);
  max-width: 52ch;
}
.guides-page__layout {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}
@media (min-width: 992px) {
  .guides-page__layout {
    grid-template-columns: minmax(0, 1.65fr) minmax(260px, 1fr);
    gap: 1.5rem;
  }
}
.guides-page__card {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #000000;
  padding: 1rem 1.15rem;
  min-height: 0;
  max-height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.guides-page__card-head {
  margin-bottom: 1.15rem;
}
.guides-page__card-head h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: #fff;
}
.guides-page__card-head p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.45;
}
.guides-page__content {
  flex: 1;
  min-height: 0;
}
.guides-page__step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #000000;
  margin-bottom: 0.6rem;
}
.guides-page__step-num {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #000000;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.guides-page__step-body h3 {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.guides-page__step-body h3 i {
  font-size: 0.9em;
  opacity: 0.75;
}
.guides-page__step-body p,
.guides-page__step-body li {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}
.guides-page__info-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #000000;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.4rem;
}
.guides-page__info-bar i {
  color: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
}
.guides-page__card-foot {
  margin-top: auto;
  padding-top: 1rem;
  text-align: right;
}
.guides-page__updated {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.45);
}
.guides-page__sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 0;
  overflow: hidden;
}
.guides-page__search {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #000000;
  flex-shrink: 0;
}
.guides-page__search input {
  border: none;
  background: transparent;
  color: #fff;
  font-size: 0.84rem;
  outline: none;
  width: 100%;
}
.guides-page__search i {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
}
.guides-page__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-right: 0.15rem;
}
.guides-page__cat {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #000000;
  overflow: hidden;
}
.guides-page__cat-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.45rem 0.65rem;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  letter-spacing: 0.02em;
}
.guides-page__cat-toggle i {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.45);
}
.guides-page__cat-items {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0 0.35rem 0.4rem;
}
.guides-page__nav-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.guides-page__nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}
.guides-page__nav-link.is-active {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  background: #ffffff;
  color: #000000 !important;
}
.guides-page__discord {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #000000;
  color: #fff !important;
  text-decoration: none !important;
  flex-shrink: 0;
  transition: border-color 0.2s ease;
}
.guides-page__discord:hover {
  border-color: rgba(255, 255, 255, 0.3);
}
.guides-page__discord i {
  font-size: 1.15rem;
}
.guides-page__discord strong {
  display: block;
  font-size: 0.78rem;
  color: #fff;
}
.guides-page__discord span {
  display: block;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
}
.guides-page__subtitle {
  color: rgba(255, 255, 255, 0.55) !important;
}

/* —— Dark scrollbar (products / feedback / guide) —— */
.cyborg-scroll--dark,
.cyborg-scroll--pill {
  scrollbar-width: thin;
  scrollbar-color: #1a1a1a #000000;
}
.cyborg-scroll--dark::-webkit-scrollbar,
.cyborg-scroll--pill::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.cyborg-scroll--dark::-webkit-scrollbar-track,
.cyborg-scroll--pill::-webkit-scrollbar-track {
  background: #000000;
  border-radius: 999px;
  margin: 4px 2px;
}
.cyborg-scroll--dark::-webkit-scrollbar-thumb,
.cyborg-scroll--pill::-webkit-scrollbar-thumb {
  background: #1a1a1a;
  border-radius: 999px;
  border: 2px solid #000000;
  min-height: 32px;
  transition: background 0.2s ease;
}
.cyborg-scroll--dark::-webkit-scrollbar-thumb:hover,
.cyborg-scroll--pill::-webkit-scrollbar-thumb:hover {
  background: #2a2a2a;
}

/* —— Products page viewport fit —— */
body.cyborg-app:has(.products-v3-root.cyborg-page-fit) .cyborg-main {
  overflow: hidden !important;
  max-height: calc(100vh - 4.5rem);
}
.products-v3-root.cyborg-page-fit {
  height: calc(100vh - 4.75rem);
  max-height: calc(100vh - 4.75rem);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: 0.5rem;
}
.void-page--products-fit {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0 !important;
}
.void-page--products-fit .void-page__head {
  flex-shrink: 0;
  margin-bottom: 0.65rem !important;
}
.void-page__eyebrow,
.accounts-cyborg__eyebrow {
  margin: 0 0 0.2rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}
.void-page--products-fit .void-tiles-grid {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  align-content: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}
@media (min-width: 768px) {
  .void-page--products-fit .void-tiles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.void-page--products-fit .void-tile {
  aspect-ratio: 1.05;
}

/* —— Accounts 4-col fit —— */
.accounts-cyborg--fit {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.accounts-cyborg--fit .accounts-cyborg__head {
  flex-shrink: 0;
  text-align: center;
  margin-bottom: 0.65rem !important;
}
.accounts-cyborg--fit .accounts-cyborg__head h1 {
  margin: 0 0 0.5rem !important;
  font-size: clamp(2rem, 4vw, 2.75rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em;
}
.accounts-cyborg--fit .accounts-cyborg__filters {
  justify-content: center;
  margin-top: 0.35rem;
}
.accounts-cyborg--fit .accounts-cyborg__grid {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  align-content: start;
  align-items: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}
@media (min-width: 768px) {
  .accounts-cyborg--fit .accounts-cyborg__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .accounts-cyborg--fit .accounts-cyborg__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}
.accounts-cyborg__cell {
  min-width: 0;
  width: 100%;
}
.accounts-cyborg__cell[style*="display: none"] {
  display: none !important;
}
.accounts-cyborg--fit .acct-card {
  height: auto;
  min-width: 0;
  width: 100%;
}
.accounts-cyborg--fit .acct-card__type {
  max-width: calc(100% - 1rem);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.accounts-cyborg--fit .acct-card__foot {
  flex-wrap: wrap;
  gap: 0.25rem;
}
.accounts-cyborg--fit .acct-card__stock {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.accounts-cyborg--fit .acct-card__media {
  aspect-ratio: 16 / 9;
}
.accounts-cyborg--fit .acct-card__body {
  padding: 0.55rem 0.65rem;
  min-width: 0;
}
.accounts-cyborg--fit .acct-card__name {
  font-size: 0.72rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.accounts-cyborg--fit .acct-card__meta {
  font-size: 0.6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.3;
}
.accounts-cyborg__eyebrow {
  display: none !important;
}

/* —— Guide v2 —— */
body.cyborg-app:has(.guide-v2) .cyborg-main {
  overflow: hidden !important;
  max-height: calc(100vh - 4.5rem);
}
.guide-v2 {
  height: calc(100vh - 4.75rem);
  max-height: calc(100vh - 4.75rem);
  overflow: hidden;
  padding: 0.65rem 0;
}
.guide-v2__shell {
  height: 100%;
  max-width: 1180px;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.guide-v2__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  margin-bottom: 0.65rem;
  flex-shrink: 0;
}
.guide-v2__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.2rem;
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
}
.guide-v2__subtitle {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}
.guide-v2__search {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #000;
  min-width: 200px;
}
.guide-v2__search input {
  border: none;
  background: transparent;
  color: #fff;
  font-size: 0.76rem;
  outline: none;
  width: 100%;
}
.guide-v2__search i {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
}
.guide-v2__body {
  flex: 1;
  min-height: 0;
  display: grid;
  gap: 0.65rem;
  overflow: hidden;
}
@media (min-width: 900px) {
  .guide-v2__body {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 0.75rem;
  }
}
.guide-v2__nav {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-height: 0;
  overflow-y: auto;
  padding-right: 0.15rem;
}
.guide-v2__group {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #000;
  overflow: hidden;
}
.guide-v2__group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.4rem 0.55rem;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}
.guide-v2__group-head i {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.2s ease;
}
.guide-v2__group-head i.is-flip {
  transform: rotate(180deg);
}
.guide-v2__group-links {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  padding: 0 0.3rem 0.35rem;
}
.guide-v2__link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.3rem 0.45rem;
  border: none;
  border-radius: 5px;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.66rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}
.guide-v2__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.guide-v2__link.is-active {
  color: #000;
  background: #fff;
}
.guide-v2__discord {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #000;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.guide-v2__panel {
  display: flex;
  flex-direction: column;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: #000;
  overflow: hidden;
}
.guide-v2__panel-head {
  flex-shrink: 0;
  padding: 0.75rem 0.9rem 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.guide-v2__panel-head h2 {
  margin: 0 0 0.2rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}
.guide-v2__panel-head p {
  margin: 0;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.5);
}
.guide-v2__content {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 0.75rem 0.9rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}
.guide-v2__content a {
  color: #fff;
}
.guide-v2__note {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.65rem;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
}
.guide-v2__foot {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.55rem 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.64rem;
  color: rgba(255, 255, 255, 0.4);
}
.guide-v2__foot time {
  flex-shrink: 0;
}
.guide-v2__next {
  margin-left: auto;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #fff;
  color: #000;
  font-size: 0.68rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.guide-v2__next:hover {
  background: rgba(255, 255, 255, 0.88);
}
.guide-v2__section-title {
  margin: 1rem 0 0.45rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.guide-v2__section-title:first-child {
  margin-top: 0;
}
.guide-v2__code {
  margin: 0.5rem 0 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.68rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  white-space: pre-wrap;
  overflow-x: auto;
}
.guide-v2__content.cyborg-scroll--dark {
  scrollbar-color: #1a1a1a #000000;
}
.guides-page {
  display: none !important;
}

/* —— Shared page filters & lead —— */
.void-page__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.15rem;
}
.void-page__lead {
  margin: 0.5rem auto 0;
  max-width: 46ch;
  font-size: 0.92rem;
  color: var(--void-muted);
  line-height: 1.55;
}
.void-page__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem 0;
}

/* —— Accounts page —— */
.void-page--accounts .void-tile--account .void-tile__badge--account {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.75);
}
.void-tile__status--account {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.58rem;
}
.void-tile__status--check {
  color: var(--void-muted) !important;
}

/* —— Status page v2 —— */
.status-cyborg__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.status-cyborg__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.7);
  animation: status-cyborg-pulse 2s ease-in-out infinite;
}
@keyframes status-cyborg-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.status-cyborg__filters {
  margin-bottom: 1.75rem;
}
.status-cyborg__grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .status-cyborg__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .status-cyborg__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.status-cyborg-card {
  display: flex;
  min-height: 118px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.55);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.status-cyborg-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}
.status-cyborg-card__accent {
  width: 4px;
  flex-shrink: 0;
  background: var(--status-color, #4ade80);
  box-shadow: 0 0 16px color-mix(in srgb, var(--status-color, #4ade80) 60%, transparent);
}
.status-cyborg-card__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1rem 1.1rem;
  min-width: 0;
}
.status-cyborg-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.status-cyborg-card__name {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}
.status-cyborg-card__icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 800;
  border: 1px solid color-mix(in srgb, var(--status-color, #4ade80) 45%, transparent);
  color: var(--status-color, #4ade80);
  box-shadow: 0 0 12px color-mix(in srgb, var(--status-color, #4ade80) 30%, transparent);
}
.status-cyborg-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
}
.status-cyborg-card__state {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--status-color, #4ade80);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.status-cyborg-card__dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--status-color, #4ade80);
  box-shadow: 0 0 10px var(--status-color, #4ade80);
}
.status-cyborg-card__ops {
  font-size: 0.72rem;
  color: var(--void-muted);
  white-space: nowrap;
}
.status-cyborg__grid--animated .status-cyborg__cell.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px) scale(0.97);
}
.status-cyborg__grid--animated .status-cyborg__cell.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: none;
  animation: status-card-in 0.55s cubic-bezier(0.34, 1.35, 0.64, 1) forwards;
}
