body.spectra-products-route,
body.spectra-product-detail-route,
body.spectra-purchase-success-route {
  --spectra-product-bg: #0f0f11;
  --spectra-product-surface: #121214;
  --spectra-product-surface-soft: #171719;
  --spectra-product-border: rgba(255, 255, 255, 0.1);
  --spectra-product-text: #f6f7fb;
  --spectra-product-muted: #9698a5;
  --spectra-product-accent: #6e74e3;
  --spectra-product-accent-soft: #8c91f0;
}

body[data-theme="light"].spectra-products-route,
body[data-theme="light"].spectra-product-detail-route,
body[data-theme="light"].spectra-purchase-success-route,
html[data-theme="light"] body.spectra-products-route,
html[data-theme="light"] body.spectra-product-detail-route,
html[data-theme="light"] body.spectra-purchase-success-route {
  --spectra-product-bg: #f4f5f8;
  --spectra-product-surface: #ffffff;
  --spectra-product-surface-soft: #f0f1f5;
  --spectra-product-border: rgba(20, 22, 30, 0.12);
  --spectra-product-text: #17181d;
  --spectra-product-muted: #686b77;
}

.spectra-products-original {
  display: none !important;
}

.spectra-products-catalog {
  position: relative;
  isolation: isolate;
  min-height: 820px;
  overflow: hidden;
  background: var(--spectra-product-bg);
  color: var(--spectra-product-text);
}

.spectra-products-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("/assets/spectra-hero-fortress-v3.webp");
  background-position: center top;
  background-size: cover;
  opacity: 0.56;
  filter: brightness(0.54) saturate(0.62);
  transform: scale(1.015);
}

.spectra-products-catalog::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(8, 8, 10, 0.42) 0%,
    rgba(10, 10, 12, 0.72) 56%,
    var(--spectra-product-bg) 100%
  );
  content: "";
}

body[data-theme="light"] .spectra-products-catalog::after,
html[data-theme="light"] .spectra-products-catalog::after {
  background: linear-gradient(
    180deg,
    rgba(244, 245, 248, 0.74) 0%,
    rgba(244, 245, 248, 0.9) 58%,
    var(--spectra-product-bg) 100%
  );
}

.spectra-products-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 128px 0 96px;
}

.spectra-products-heading {
  max-width: 620px;
  margin: 0 auto 52px;
  text-align: center;
}

.spectra-products-heading > p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--spectra-product-accent-soft);
  font-size: 12px;
  font-weight: 550;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spectra-products-heading > p svg {
  width: 15px;
  height: 15px;
}

.spectra-products-heading h1 {
  margin: 0;
  color: var(--spectra-product-text);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.spectra-products-heading > span {
  display: block;
  max-width: 520px;
  margin: 22px auto 0;
  color: var(--spectra-product-muted);
  font-size: 16px;
  line-height: 1.55;
}

.spectra-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
}

.spectra-product-card {
  position: relative;
  display: flex;
  min-height: 600px;
  flex-direction: column;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--spectra-product-border);
  border-radius: 24px;
  background: var(--spectra-product-surface);
  box-shadow: 0 18px 50px rgba(4, 5, 8, 0.18);
  color: var(--spectra-product-text);
  text-decoration: none;
  transition:
    translate 220ms ease,
    box-shadow 220ms ease;
  translate: 0 0;
  box-sizing: border-box;
}

a.spectra-product-card {
  cursor: pointer;
}

a.spectra-product-card:hover {
  border-color: var(--spectra-product-border);
  box-shadow: 0 24px 62px rgba(4, 5, 8, 0.28);
  translate: 0 -3px;
}

.spectra-product-card:focus-visible {
  outline: 3px solid rgba(142, 147, 242, 0.65);
  outline-offset: 4px;
}

.spectra-product-card::before {
  display: none;
}

.spectra-product-card--popular {
  border-color: var(--spectra-product-border);
  background: var(--spectra-product-surface);
  box-shadow: 0 24px 66px rgba(5, 6, 12, 0.3);
  translate: 0 -10px;
}

a.spectra-product-card--popular:hover {
  translate: 0 -13px;
}

.spectra-product-card-topline,
.spectra-product-card-copy,
.spectra-product-card-benefits,
.spectra-product-card-action {
  position: relative;
  z-index: 1;
}

.spectra-product-card-topline {
  display: flex;
  min-height: 28px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--spectra-product-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spectra-product-card-topline small {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  border: 1px solid var(--spectra-product-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--spectra-product-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.spectra-product-card--popular .spectra-product-card-topline small {
  border-color: rgba(140, 145, 240, 0.3);
  background: rgba(110, 116, 227, 0.16);
  color: var(--spectra-product-accent-soft);
}

.spectra-product-card-topline svg {
  width: 13px;
  height: 13px;
}

.spectra-product-card-copy {
  margin-top: 48px;
}

.spectra-product-card-copy h2 {
  margin: 0;
  color: var(--spectra-product-text);
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1;
}

.spectra-product-card-copy p {
  min-height: 44px;
  margin: 12px 0 20px;
  color: var(--spectra-product-muted);
  font-size: 13px;
  line-height: 1.55;
}

.spectra-product-card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-variant-numeric: tabular-nums;
}

.spectra-product-card-price strong {
  color: var(--spectra-product-text);
  font-size: 46px;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
}

.spectra-product-card-price span {
  color: var(--spectra-product-muted);
  font-size: 16px;
  font-weight: 600;
}

.spectra-product-card-price-note {
  display: block;
  margin-top: 9px;
  color: var(--spectra-product-muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
}

.spectra-product-card-included {
  margin: 28px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--spectra-product-border);
  color: var(--spectra-product-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.spectra-product-card-benefits {
  display: grid;
  gap: 12px;
  margin: 13px 0 0;
  padding: 0;
  color: var(--spectra-product-text);
  font-size: 12px;
  line-height: 1.4;
  list-style: none;
}

.spectra-product-card-benefits li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.spectra-product-card-benefits svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  color: var(--spectra-product-text);
  opacity: 0.82;
}

.spectra-product-card-action {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding: 0 18px;
  border-radius: 13px;
  background: #f4f5f8;
  color: #15161b;
  font-size: 13px;
  font-weight: 500;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.spectra-product-card--popular .spectra-product-card-action {
  background: var(--spectra-product-accent);
  color: #ffffff;
}

.spectra-product-card-action svg {
  width: 16px;
  height: 16px;
  transition: transform 180ms ease;
}

a.spectra-product-card:hover .spectra-product-card-action svg {
  transform: translateX(3px);
}

.spectra-products-note {
  margin: 40px 0 0;
  color: var(--spectra-product-muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

body[data-theme="light"] .spectra-product-card,
html[data-theme="light"] .spectra-product-card {
  background: var(--spectra-product-surface);
  box-shadow: 0 18px 50px rgba(28, 30, 42, 0.1);
}

body[data-theme="light"] .spectra-product-card--popular,
html[data-theme="light"] .spectra-product-card--popular {
  border-color: var(--spectra-product-border);
  background: var(--spectra-product-surface);
}

body[data-theme="light"] .spectra-product-card-action,
html[data-theme="light"] .spectra-product-card-action {
  background: #202127;
  color: #ffffff;
}

body[data-theme="light"] .spectra-product-card--popular .spectra-product-card-action,
html[data-theme="light"] .spectra-product-card--popular .spectra-product-card-action {
  background: var(--spectra-product-accent);
}

.spectra-product-detail-root {
  min-height: 100vh !important;
  min-height: 100dvh !important;
  height: auto !important;
  padding-bottom: 84px !important;
  background: var(--spectra-product-bg) !important;
  color: var(--spectra-product-text);
}

.spectra-product-detail-heading {
  width: min(1180px, calc(100% - 40px)) !important;
  max-width: none !important;
  height: auto !important;
  margin: 0 auto !important;
  padding: 34px 0 16px !important;
}

.spectra-product-detail-heading * {
  color: inherit;
}

.spectra-product-detail-heading > div:first-child {
  display: grid !important;
  min-height: 0 !important;
  gap: 10px !important;
  padding: 0 !important;
}

.spectra-product-detail-heading > div:first-child > div {
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.spectra-product-detail-heading > div:last-child {
  margin-top: 16px !important;
}

.spectra-product-detail-heading h1,
.spectra-product-detail-heading h2,
.spectra-product-detail-heading > div > div:last-child {
  color: var(--spectra-product-text) !important;
}

.spectra-product-detail-heading h1 {
  margin: 0 !important;
  font-size: clamp(38px, 4vw, 52px) !important;
  line-height: 1 !important;
}

.spectra-product-detail-layout {
  display: grid !important;
  width: min(1180px, calc(100% - 40px)) !important;
  max-width: none !important;
  height: auto !important;
  margin: 0 auto !important;
  grid-template-columns: minmax(0, 1fr) 410px !important;
  align-items: start !important;
  gap: 24px !important;
}

.spectra-product-main,
.spectra-product-aside {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: auto !important;
  box-sizing: border-box !important;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
}

.spectra-product-main {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
}

.spectra-product-main > div {
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  align-self: stretch !important;
  box-sizing: border-box !important;
}

.spectra-visual-gallery-stage {
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9;
  overflow: hidden !important;
  border: 1px solid var(--spectra-product-border);
  border-radius: 18px !important;
  background: #08090c;
  box-shadow: 0 24px 60px rgba(2, 3, 6, 0.2);
  box-sizing: border-box !important;
}

.spectra-visual-gallery-stage > img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  border-radius: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
  opacity: 1;
  transition:
    opacity 180ms ease,
    transform 500ms ease !important;
}

.spectra-visual-gallery-stage > img.is-changing {
  opacity: 0.16;
  transform: scale(1.012);
}

.spectra-gallery-legacy-control {
  display: none !important;
}

.spectra-gallery-controls {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(8, 9, 13, 0.72);
  backdrop-filter: blur(14px);
}

.spectra-gallery-controls button {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.spectra-gallery-controls button:hover {
  background: var(--spectra-product-accent);
}

.spectra-gallery-controls button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.spectra-gallery-controls button svg {
  width: 17px;
  height: 17px;
}

.spectra-gallery-controls span {
  min-width: 44px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.spectra-gallery-preview-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(8, 9, 13, 0.7);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

.spectra-visual-gallery-thumbs {
  display: grid !important;
  width: 100% !important;
  height: auto !important;
  margin-top: 10px !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 8px !important;
}

.spectra-visual-thumb {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
  aspect-ratio: 16 / 9;
  overflow: hidden !important;
  padding: 0 !important;
  border: 1px solid var(--spectra-product-border) !important;
  border-radius: 10px !important;
  background: #08090c !important;
  cursor: pointer;
  opacity: 0.58;
  transform: none !important;
  transition:
    border-color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease !important;
}

.spectra-visual-thumb:hover,
.spectra-visual-thumb.is-active {
  border-color: var(--spectra-product-accent) !important;
  opacity: 1;
}

.spectra-visual-thumb.is-active {
  box-shadow: inset 0 0 0 1px var(--spectra-product-accent);
}

.spectra-visual-thumb:focus-visible {
  outline: 3px solid rgba(110, 116, 227, 0.48);
  outline-offset: 2px;
}

.spectra-visual-thumb img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

.spectra-purchase-benefits {
  margin-top: 34px;
}

.spectra-purchase-benefits-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.spectra-purchase-benefits-head > div > span {
  display: block;
  margin-bottom: 7px;
  color: var(--spectra-product-accent-soft);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.spectra-purchase-benefits-head h2 {
  margin: 0;
  color: var(--spectra-product-text);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.spectra-purchase-benefits-head > p {
  max-width: 320px;
  margin: 0;
  color: var(--spectra-product-muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
  text-align: right;
}

.spectra-purchase-benefits-grid {
  display: grid;
  margin-top: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 38px;
  row-gap: 26px;
}

.spectra-purchase-benefits-grid article {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-sizing: border-box;
}

.spectra-purchase-benefits-grid h3 {
  margin: 0 0 7px;
  color: var(--spectra-product-text);
  font-size: 14px;
  font-weight: 450;
  line-height: 1.3;
}

.spectra-purchase-benefits-grid p {
  margin: 0;
  color: var(--spectra-product-muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}

.spectra-product-main .product-intro-block {
  margin-top: 24px !important;
  padding: 0 !important;
  border: 0 !important;
  border-top: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

.spectra-product-description-title {
  margin: 0 0 10px !important;
  color: var(--spectra-product-text) !important;
  font-size: 13px !important;
  font-weight: 450 !important;
  line-height: 1.35 !important;
}

.spectra-product-main .product-intro-block p {
  margin: 0 !important;
  color: var(--spectra-product-muted) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
}

.spectra-product-features-hidden,
.spectra-beta-addon-hidden,
.spectra-requirement-hidden,
.spectra-duration-legacy,
.spectra-hwid-mode-hidden,
.spectra-hwid-copy-hidden,
.spectra-checkout-mode-hidden,
.spectra-funpay-hidden {
  display: none !important;
}

.spectra-requirements-block {
  width: auto !important;
  max-width: 100% !important;
  margin-top: 28px !important;
  padding: 0 !important;
  border: 0 !important;
  border-top: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--spectra-product-text);
  box-sizing: border-box !important;
  opacity: 1 !important;
  transform: none !important;
}

.spectra-requirements-title {
  display: block !important;
  width: auto !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--spectra-product-text) !important;
  font-size: 14px !important;
  font-weight: 450 !important;
  line-height: 1.35 !important;
  text-align: left !important;
}

.spectra-checkout-native-price {
  display: none !important;
}

.spectra-checkout-calculated-price {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 7px;
  font-variant-numeric: tabular-nums;
}

.spectra-checkout-calculated-price span {
  color: var(--spectra-product-accent-soft);
  font-size: 18px;
  font-weight: 650;
}

.spectra-checkout-calculated-price s {
  color: var(--spectra-product-muted);
  font-size: 11px;
  font-weight: 500;
}

.spectra-requirements-block * {
  border-color: var(--spectra-product-border) !important;
}

.spectra-requirement-label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-weight: 400 !important;
}

.spectra-requirement-value {
  font-weight: 450 !important;
}

.spectra-requirement-icon {
  width: 17px !important;
  height: 17px !important;
  flex: 0 0 17px;
  color: inherit !important;
  stroke: currentColor !important;
}

.spectra-product-aside {
  position: sticky !important;
  top: 88px !important;
  align-self: start !important;
}

body.spectra-product-detail-route #root {
  overflow: visible !important;
}

body.spectra-product-detail-route {
  overflow: visible !important;
}

.spectra-checkout-card {
  width: 100% !important;
  max-width: none !important;
  padding: 28px !important;
  border: 1px solid var(--spectra-product-border) !important;
  border-radius: 22px !important;
  background: var(--spectra-product-surface) !important;
  box-shadow: 0 22px 54px rgba(2, 3, 6, 0.16);
  color: var(--spectra-product-text) !important;
  box-sizing: border-box !important;
}

.spectra-checkout-product-name {
  display: block !important;
  max-width: 100% !important;
  color: var(--spectra-product-text) !important;
  font-size: 18px !important;
  line-height: 1.22 !important;
  overflow-wrap: normal;
  white-space: normal !important;
}

.spectra-checkout-header,
.spectra-checkout-card > :first-child {
  display: grid !important;
  width: 100% !important;
  grid-template-columns: minmax(0, 1fr) 64px !important;
  align-items: start !important;
  gap: 14px !important;
}

.spectra-checkout-title-region,
.spectra-checkout-card > :first-child > :first-child {
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
}

.spectra-checkout-price-region,
.spectra-checkout-card > :first-child > :last-child {
  display: flex !important;
  width: 64px !important;
  min-width: 64px !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  justify-self: end !important;
  text-align: right !important;
}

.spectra-checkout-card > :first-child > :first-child > :last-child {
  display: block !important;
  max-width: 100% !important;
  color: var(--spectra-product-text) !important;
  font-size: 18px !important;
  line-height: 1.22 !important;
  overflow-wrap: normal;
  white-space: normal !important;
}

.spectra-checkout-pay-label {
  white-space: nowrap;
}

.spectra-checkout-card input,
.spectra-checkout-card button {
  touch-action: manipulation;
}

.spectra-checkout-card button {
  min-height: 44px;
}

.spectra-checkout-card[data-spectra-purchases-disabled="true"]
  button:disabled,
.spectra-checkout-card[data-spectra-purchases-disabled="true"]
  input:disabled {
  cursor: not-allowed !important;
  opacity: 0.5 !important;
}

.spectra-checkout-unavailable {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px solid color-mix(in srgb, var(--spectra-product-accent) 30%, transparent);
  border-radius: 12px;
  background: color-mix(in srgb, var(--spectra-product-accent) 8%, transparent);
  line-height: 1.45;
}

.spectra-checkout-unavailable strong {
  color: var(--spectra-product-text);
  font-size: 14px;
}

.spectra-checkout-unavailable span {
  color: var(--spectra-product-muted);
  font-size: 13px;
}

.spectra-duration-block {
  width: 100% !important;
  height: auto !important;
  margin: 18px 0 !important;
}

.spectra-duration-block--fixed {
  display: none !important;
}

.spectra-duration-label {
  margin: 0 0 8px;
  color: var(--spectra-product-muted);
  font-size: 11px;
  font-weight: 550;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.spectra-duration-options {
  position: static !important;
  display: grid !important;
  width: 100% !important;
  height: auto !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.spectra-duration-options [data-duration-index] {
  position: static !important;
  display: grid !important;
  width: 100% !important;
  height: 30px !important;
  min-height: 30px !important;
  min-width: 0 !important;
  place-items: center;
  padding: 0 8px !important;
  border: 1px solid var(--spectra-product-border) !important;
  border-radius: 8px !important;
  background: var(--spectra-product-surface-soft) !important;
  color: var(--spectra-product-muted) !important;
  cursor: pointer;
  opacity: 1 !important;
  transform: none !important;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease !important;
}

.spectra-duration-options [data-duration-index]::after {
  content: attr(aria-label);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.spectra-duration-options [data-duration-index]:hover {
  border-color: rgba(110, 116, 227, 0.56) !important;
  color: var(--spectra-product-text) !important;
}

.spectra-duration-options [data-duration-index][aria-pressed="true"] {
  border-color: var(--spectra-product-accent) !important;
  background: var(--spectra-product-accent) !important;
  color: #ffffff !important;
  box-shadow: 0 5px 14px rgba(110, 116, 227, 0.18);
}

.spectra-duration-options [data-duration-index]:focus-visible {
  outline: 3px solid rgba(110, 116, 227, 0.42);
  outline-offset: 2px;
}

.spectra-hwid-intro {
  margin-top: 24px !important;
}

.spectra-hwid-checkout-note {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--spectra-product-border);
  color: var(--spectra-product-muted);
  font-size: 12px;
  line-height: 1.55;
}

.spectra-purchase-success-route {
  background: var(--spectra-product-bg);
  color: var(--spectra-product-text);
}

.spectra-success-root {
  position: relative !important;
  isolation: isolate;
  min-height: 100vh !important;
  min-height: 100dvh !important;
  overflow: hidden !important;
  background: #0f0f11 !important;
  color: var(--spectra-product-text) !important;
}

.spectra-success-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  border: 0;
  background:
    linear-gradient(
      180deg,
      rgba(8, 8, 10, 0.38) 0%,
      rgba(10, 10, 12, 0.68) 45%,
      #0f0f11 82%,
      #0f0f11 100%
    ),
    url("/assets/spectra-hero-fortress-v3.webp") center top / cover no-repeat;
  filter: none;
  pointer-events: none;
  transform: none;
  animation: none !important;
}

.spectra-success-root::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(6, 7, 10, 0.42), rgba(6, 7, 10, 0.56)),
    rgba(5, 6, 9, 0.24);
  content: "";
  pointer-events: none;
}

.spectra-success-root > div {
  position: relative !important;
  z-index: 2;
  display: flex !important;
  min-height: 100vh !important;
  min-height: 100dvh !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 92px 20px 52px !important;
  box-sizing: border-box !important;
  opacity: 1 !important;
  transform: none !important;
}

.spectra-success-content {
  width: min(540px, 100%) !important;
  max-width: 540px !important;
  padding: 30px 32px 28px !important;
  border: 1px solid rgba(255, 255, 255, 0.11) !important;
  border-radius: 24px !important;
  background: rgba(15, 15, 17, 0.97) !important;
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.48),
    inset 0 1px rgba(255, 255, 255, 0.025) !important;
  backdrop-filter: blur(18px);
  color: var(--spectra-product-text) !important;
  box-sizing: border-box !important;
}

.spectra-success-content * {
  border-color: var(--spectra-product-border);
}

.spectra-success-status {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  margin-bottom: 14px !important;
  padding: 6px 10px !important;
  border: 1px solid rgba(92, 202, 139, 0.2) !important;
  border-radius: 999px !important;
  background: rgba(92, 202, 139, 0.08) !important;
}

.spectra-success-status h1 {
  color: #61d391 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
}

.spectra-success-title {
  max-width: 480px !important;
  margin: 0 !important;
  color: var(--spectra-product-text) !important;
  font-size: clamp(30px, 3.5vw, 36px) !important;
  letter-spacing: -0.045em !important;
  line-height: 1.06 !important;
}

.spectra-success-title span {
  color: var(--spectra-product-accent-soft) !important;
}

.spectra-success-subtitle {
  margin: 14px 0 20px !important;
  color: var(--spectra-product-muted) !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
}

.spectra-success-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin: 0 0 22px !important;
}

.spectra-success-actions a {
  min-height: 38px !important;
  padding: 0 15px !important;
  border-radius: 10px !important;
  font-size: 13px !important;
}

.spectra-success-receipt {
  padding-top: 20px !important;
  border-top: 1px solid var(--spectra-product-border) !important;
  font-size: 12px !important;
}

.spectra-success-receipt > div:first-child span {
  font-size: 11px !important;
}

.spectra-success-receipt > div:nth-child(2) > span {
  font-size: 20px !important;
}

.spectra-success-details span {
  font-size: 12px !important;
}

.spectra-success-product {
  display: none !important;
}

.spectra-success-details {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.spectra-success-duration-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  border-bottom: 1px solid var(--spectra-product-border);
  color: var(--spectra-product-muted);
  font-size: 12px;
}

.spectra-success-duration-row strong {
  color: var(--spectra-product-text);
  font-size: 12px;
  font-weight: 700;
}

body[data-theme="light"] .spectra-success-content,
html[data-theme="light"] .spectra-success-content {
  border-color: rgba(20, 22, 30, 0.12) !important;
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 32px 90px rgba(25, 28, 38, 0.2) !important;
}

body[data-theme="light"] .spectra-success-root::after,
html[data-theme="light"] .spectra-success-root::after {
  background:
    linear-gradient(180deg, rgba(6, 7, 10, 0.42), rgba(6, 7, 10, 0.58)),
    rgba(5, 6, 9, 0.24);
}

@media (max-width: 900px) {
  .spectra-products-shell {
    padding-top: 124px;
  }

  .spectra-products-grid {
    grid-template-columns: 1fr;
  }

  .spectra-product-card {
    min-height: 600px;
  }

  .spectra-product-card--popular,
  a.spectra-product-card--popular:hover {
    translate: none;
  }

  .spectra-product-detail-layout {
    display: block !important;
    grid-template-columns: 1fr !important;
  }

  .spectra-product-aside {
    position: static !important;
    margin-top: 28px !important;
  }
}

@media (max-width: 600px) {
  .spectra-products-shell {
    width: min(100% - 28px, 960px);
    padding: 112px 0 72px;
  }

  .spectra-products-heading {
    margin-bottom: 36px;
  }

  .spectra-products-heading h1 {
    font-size: 42px;
  }

  .spectra-products-heading > span {
    font-size: 14px;
  }

  .spectra-product-card {
    min-height: 600px;
    padding: 24px;
  }

  .spectra-product-detail-heading,
  .spectra-product-detail-layout {
    width: min(100% - 28px, 1180px) !important;
    max-width: calc(100% - 28px) !important;
    box-sizing: border-box !important;
  }

  .spectra-product-detail-heading {
    padding-top: 88px !important;
  }

  .spectra-gallery-controls {
    right: 10px;
    bottom: 10px;
  }

  .spectra-gallery-controls button {
    width: 34px;
    height: 34px;
  }

  .spectra-gallery-controls span {
    min-width: 38px;
  }

  .spectra-visual-gallery-thumbs {
    gap: 5px !important;
  }

  .spectra-visual-thumb {
    border-radius: 7px !important;
  }

  .spectra-checkout-card {
    padding: 18px !important;
  }

  .spectra-product-main .product-intro-block,
  .spectra-requirements-block {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .spectra-purchase-benefits {
    margin-top: 28px;
  }

  .spectra-purchase-benefits-head {
    display: block;
  }

  .spectra-purchase-benefits-head > p {
    max-width: none;
    margin-top: 10px;
    text-align: left;
  }

  .spectra-purchase-benefits-grid {
    grid-template-columns: 1fr;
    row-gap: 22px;
  }

  .spectra-purchase-benefits-grid article {
    min-height: 0;
  }

  .spectra-duration-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .spectra-duration-options [data-duration-index] {
    height: 32px !important;
    min-height: 32px !important;
  }

  .spectra-success-root > div {
    min-height: 100vh !important;
    min-height: 100dvh !important;
    padding: 76px 14px 36px !important;
  }

  .spectra-success-content {
    padding: 24px 20px 22px !important;
    border-radius: 20px !important;
  }

  .spectra-success-title {
    font-size: 30px !important;
  }

  .spectra-success-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .spectra-success-actions a {
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .spectra-product-card,
  .spectra-visual-gallery-stage > img,
  .spectra-visual-thumb,
  .spectra-duration-options [data-duration-index],
  .spectra-success-actions a {
    transition: none !important;
  }
}

/* 2026-07 refinement: full-height catalog, neutral checkout, cleaner receipt. */
.spectra-products-catalog {
  min-height: 100vh;
  min-height: 100dvh;
}

.spectra-checkout-card {
  box-shadow: none !important;
}

.spectra-success-content {
  border-radius: 16px !important;
}

.spectra-success-receipt {
  border-top-style: dashed !important;
}

.spectra-success-summary-labels,
.spectra-success-summary {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 112px !important;
  align-items: center !important;
  column-gap: 16px !important;
}

.spectra-success-summary-labels > span:last-child,
.spectra-success-summary > span:last-child {
  width: 100% !important;
  justify-self: stretch !important;
  text-align: center !important;
}

.spectra-success-summary {
  padding-bottom: 18px !important;
  border-bottom: 0 !important;
}

.spectra-success-duration-row {
  border-bottom-style: dashed;
}

.spectra-success-details {
  display: block !important;
}

.spectra-success-details > div:not(:empty) {
  display: flex !important;
  width: 100% !important;
  min-height: 38px !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  border-bottom: 1px dashed var(--spectra-product-border) !important;
  box-sizing: border-box !important;
}

.spectra-success-details > div:not(:empty):last-child {
  border-bottom: 0 !important;
}

.spectra-success-details > div:empty {
  display: none !important;
}

@media (max-width: 600px) {
  .spectra-success-content {
    border-radius: 14px !important;
  }

  .spectra-success-summary-labels,
  .spectra-success-summary {
    grid-template-columns: minmax(0, 1fr) 96px !important;
    column-gap: 10px !important;
  }
}

/* Route entrances mirror the calm reveal motion used across the main page. */
@keyframes spectra-route-reveal {
  from {
    opacity: 0;
    transform: translate3d(0, var(--spectra-enter-y, 34px), 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes spectra-route-fade {
  from {
    opacity: 0;
  }
}

.spectra-route-reveal {
  animation:
    spectra-route-reveal
    var(--spectra-enter-duration, 420ms)
    cubic-bezier(0.16, 1, 0.3, 1)
    var(--spectra-enter-delay, 0ms)
    backwards;
  will-change: opacity, transform;
}

.spectra-route-fade {
  animation: spectra-route-fade 300ms ease-out backwards;
}

@media (prefers-reduced-motion: reduce) {
  .spectra-route-reveal,
  .spectra-route-fade {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .spectra-product-card,
  a.spectra-product-card:hover,
  .spectra-product-card--popular,
  a.spectra-product-card--popular:hover {
    translate: none !important;
  }
}
.spectra-payment-verification {
  position: fixed;
  inset: 50% auto auto 50%;
  z-index: 10000;
  width: min(460px, calc(100vw - 32px));
  transform: translate(-50%, -50%);
  padding: 36px;
  border: 1px solid rgba(130, 134, 160, 0.22);
  border-radius: 24px;
  background: #15161d;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  color: #f7f7fa;
  text-align: center;
}

.spectra-payment-verification h1 {
  margin: 14px 0 8px;
  font-size: 28px;
}

.spectra-payment-verification p {
  margin: 0;
  color: #a5a7b1;
  line-height: 1.55;
}

.spectra-payment-verification a {
  display: inline-flex;
  margin-top: 22px;
  padding: 11px 18px;
  border-radius: 12px;
  background: #6e74e3;
  color: #fff;
  text-decoration: none;
}

.spectra-payment-verification-spinner {
  display: inline-block;
  width: 28px;
  height: 28px;
  border: 3px solid rgba(255, 255, 255, 0.16);
  border-top-color: #858bf0;
  border-radius: 50%;
  animation: spectra-payment-spin 800ms linear infinite;
}

body.spectra-payment-status-pending #root,
body.spectra-payment-status-failed #root {
  visibility: hidden;
}

@keyframes spectra-payment-spin {
  to { transform: rotate(360deg); }
}

/* 2026-08 checkout pass: neutral states, tighter geometry, calmer type. */
.spectra-products-heading h1 {
  font-weight: 600;
}

.spectra-product-card-topline,
.spectra-product-card-topline small,
.spectra-product-card-included {
  font-weight: 550;
}

.spectra-product-card-copy h2 {
  font-weight: 600;
}

.spectra-checkout-card {
  border-color: rgba(255, 255, 255, 0.075) !important;
  border-radius: 16px !important;
}

.spectra-checkout-product-name,
.spectra-checkout-card > :first-child > :first-child > :last-child {
  font-weight: 500 !important;
}

body[data-theme="light"].spectra-product-detail-route
  .spectra-checkout-card,
html[data-theme="light"]
  body.spectra-product-detail-route
  .spectra-checkout-card {
  border-color: rgba(20, 22, 30, 0.18) !important;
}

.spectra-gallery-controls {
  z-index: 4;
  pointer-events: auto;
}

.spectra-gallery-controls button {
  width: 40px;
  height: 40px;
  touch-action: manipulation;
}

.spectra-gallery-controls button:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.spectra-gallery-controls button:active {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(0.96);
}

body[data-theme="light"] .spectra-gallery-controls button:hover,
html[data-theme="light"] .spectra-gallery-controls button:hover {
  background: rgba(20, 22, 30, 0.08);
  color: #17181d;
}

body[data-theme="light"] .spectra-gallery-controls button:active,
html[data-theme="light"] .spectra-gallery-controls button:active {
  background: rgba(20, 22, 30, 0.13);
}

.spectra-purchase-benefits {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--spectra-product-border);
}

.spectra-payment-option {
  min-height: 38px !important;
  padding: 0 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 9px !important;
  background: rgba(255, 255, 255, 0.025) !important;
  box-shadow: none !important;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease !important;
}

.spectra-payment-option:hover {
  border-color: rgba(255, 255, 255, 0.15) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  opacity: 1;
}

.spectra-payment-option.is-selected,
.spectra-payment-option[aria-pressed="true"] {
  border-color: rgba(255, 255, 255, 0.2) !important;
  background: rgba(255, 255, 255, 0.085) !important;
  opacity: 1;
}

.spectra-payment-option:active {
  background: rgba(255, 255, 255, 0.11) !important;
  opacity: 1;
}

body[data-theme="light"] .spectra-payment-option,
html[data-theme="light"] .spectra-payment-option {
  border-color: rgba(20, 22, 30, 0.12) !important;
  background: #f7f7f9 !important;
}

body[data-theme="light"] .spectra-payment-option:hover,
html[data-theme="light"] .spectra-payment-option:hover {
  border-color: rgba(20, 22, 30, 0.18) !important;
  background: #f1f2f5 !important;
}

body[data-theme="light"] .spectra-payment-option.is-selected,
body[data-theme="light"]
  .spectra-payment-option[aria-pressed="true"],
html[data-theme="light"] .spectra-payment-option.is-selected,
html[data-theme="light"]
  .spectra-payment-option[aria-pressed="true"] {
  border-color: rgba(20, 22, 30, 0.22) !important;
  background: #e9eaef !important;
}

.spectra-checkout-help,
.spectra-checkout-help a {
  font-family: Inter, "Segoe UI", sans-serif !important;
  font-weight: 400 !important;
}

.spectra-success-content {
  width: min(590px, 100%) !important;
  max-width: 590px !important;
}

.spectra-success-status {
  display: flex !important;
  width: max-content !important;
  max-width: 100% !important;
  justify-content: center !important;
  margin: 0 auto 16px !important;
}

.spectra-success-status h1 {
  margin: 0 !important;
  font-weight: 500 !important;
  line-height: 1.25 !important;
}

.spectra-success-title {
  max-width: 520px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  font-weight: 500 !important;
  line-height: 1.08 !important;
  text-align: center !important;
}

.spectra-success-subtitle {
  text-align: center !important;
}

.spectra-success-actions {
  justify-content: center !important;
}

.spectra-success-duration-row strong {
  font-weight: 550;
}

@media (max-width: 600px) {
  .spectra-checkout-card {
    border-radius: 14px !important;
  }

  .spectra-gallery-controls button {
    width: 38px;
    height: 38px;
  }

  .spectra-purchase-benefits {
    padding-bottom: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .spectra-payment-verification-spinner {
    animation: none;
  }
}
