:root {
  --bg: #010101;
  --bg-2: #050205;
  --panel: rgba(10, 6, 9, 0.82);
  --panel-strong: rgba(6, 3, 6, 0.97);
  --line: rgba(255, 35, 157, 0.18);
  --line-hot: rgba(255, 35, 157, 0.76);
  --text: #fff7fc;
  --muted: #d7a8c5;
  --pink: #ff239d;
  --pink-2: #ff73c8;
  --pink-dark: #210014;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.68);
  --glow: 0 0 26px rgba(255, 35, 157, 0.34), 0 0 86px rgba(255, 35, 157, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(180deg, #010101 0%, #050205 48%, #010101 100%),
    #010101;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body:has(.vault-loader:not(.done)) {
  overflow: hidden;
}

body::before,
body::after,
.page-glow {
  position: fixed;
  pointer-events: none;
  content: "";
}

body::before {
  inset: 0;
  z-index: -4;
  background-image:
    linear-gradient(rgba(255, 35, 157, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 35, 157, 0.04) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.85) 56%, transparent 100%);
}

body::after {
  inset: 0;
  z-index: -3;
  opacity: 0.36;
  background:
    repeating-linear-gradient(0deg, transparent 0, transparent 11px, rgba(255, 255, 255, 0.024) 12px),
    linear-gradient(112deg, transparent 0 38%, rgba(255, 35, 157, 0.12) 48%, transparent 60% 100%);
  animation: scan 9s linear infinite;
}

.page-glow {
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(255, 35, 157, 0.16), transparent 22%, transparent 78%, rgba(255, 35, 157, 0.1)),
    linear-gradient(180deg, rgba(255, 35, 157, 0.1), transparent 34%);
  filter: blur(58px);
  animation: glowShift 11s ease-in-out infinite alternate;
}

.vault-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
  animation: loaderFade 900ms ease 3.12s forwards;
}

.vault-loader-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 35, 157, 0.3), transparent 22%),
    radial-gradient(circle at 50% 52%, rgba(255, 0, 110, 0.16), transparent 42%),
    linear-gradient(115deg, #000 0 42%, #17000d 60%, #000 100%),
    repeating-linear-gradient(90deg, rgba(255, 35, 157, 0.055) 0 1px, transparent 1px 54px),
    repeating-linear-gradient(0deg, rgba(255, 35, 157, 0.04) 0 1px, transparent 1px 54px);
  animation: loaderThemeShift 3.45s ease forwards;
}

.vault-loader-bg::before,
.vault-loader-bg::after {
  position: absolute;
  inset: -20%;
  content: "";
  pointer-events: none;
}

.vault-loader-bg::before {
  background:
    conic-gradient(from 0deg, transparent, rgba(255, 35, 157, 0.18), transparent 18%, transparent 36%, rgba(255, 35, 157, 0.12), transparent 54%),
    radial-gradient(circle, transparent 0 42%, rgba(255, 35, 157, 0.12) 43% 44%, transparent 45%);
  filter: blur(1px);
  animation: loaderOrbit 3.3s cubic-bezier(.2, .8, .2, 1) forwards;
}

.vault-loader-bg::after {
  background:
    linear-gradient(90deg, transparent 0 48.5%, rgba(255, 35, 157, 0.12) 50%, transparent 51.5%),
    linear-gradient(0deg, transparent 0 48.5%, rgba(255, 35, 157, 0.08) 50%, transparent 51.5%);
  opacity: 0.24;
  transform: scale(0.7);
  animation: loaderTarget 1.35s ease-in-out infinite alternate;
}

.vault-door {
  position: relative;
  isolation: isolate;
  display: grid;
  width: min(62vw, 360px);
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid rgba(255, 35, 157, 0.62);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #ff239d 0 5%, #210012 6% 14%, #0b0006 15% 32%, #1d0011 33% 38%, #050003 39% 100%),
    repeating-conic-gradient(from 0deg, rgba(255, 35, 157, 0.2) 0deg 8deg, transparent 8deg 16deg);
  box-shadow:
    0 0 0 18px rgba(255, 35, 157, 0.055),
    0 0 85px rgba(255, 35, 157, 0.38),
    0 0 150px rgba(255, 0, 112, 0.34),
    inset 0 0 48px rgba(255, 35, 157, 0.2);
  animation: vaultOpen 3.18s cubic-bezier(.2, .8, .2, 1) forwards;
}

.vault-door::before,
.vault-door::after {
  position: absolute;
  inset: -16%;
  border: 1px solid rgba(255, 35, 157, 0.28);
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 18deg, rgba(255, 35, 157, 0.22) 0deg 5deg, transparent 5deg 18deg),
    linear-gradient(90deg, rgba(255, 35, 157, 0.2), transparent 38% 62%, rgba(255, 35, 157, 0.2)),
    rgba(0, 0, 0, 0.86);
  content: "";
  z-index: 0;
  transform-origin: center;
  animation: vaultDoorSplit 3.18s cubic-bezier(.2, .8, .2, 1) forwards;
}

.vault-door::after {
  animation-name: vaultDoorSplitReverse;
}

.vault-tunnel {
  position: absolute;
  inset: 22%;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 35, 157, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle, #000 0 25%, #15000c 26% 42%, rgba(255, 35, 157, 0.22) 43% 49%, transparent 50%),
    #000;
  box-shadow:
    inset 0 0 44px rgba(255, 35, 157, 0.24),
    0 0 46px rgba(255, 35, 157, 0.28);
  opacity: 0;
  transform: scale(0.45);
  animation: tunnelDive 3.35s cubic-bezier(.2, .8, .2, 1) forwards;
}

.vault-tunnel span {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255, 35, 157, 0.26);
  border-radius: 50%;
  animation: tunnelRing 900ms linear infinite;
}

.vault-tunnel span:nth-child(2) {
  inset: 24%;
  animation-delay: -260ms;
}

.vault-tunnel span:nth-child(3) {
  inset: 38%;
  animation-delay: -520ms;
}

.vault-ring {
  position: absolute;
  inset: 16%;
  z-index: 2;
  border: 1px solid rgba(255, 35, 157, 0.62);
  border-radius: 50%;
  box-shadow: inset 0 0 40px rgba(255, 35, 157, 0.22), 0 0 44px rgba(255, 35, 157, 0.24);
}

.vault-ring::before,
.vault-ring::after {
  position: absolute;
  inset: -11%;
  border: 1px dashed rgba(255, 35, 157, 0.36);
  border-radius: inherit;
  content: "";
  animation: lockDial 1.9s cubic-bezier(.2, .8, .2, 1) forwards;
}

.vault-ring::after {
  inset: 14%;
  animation-duration: 1.35s;
  animation-direction: reverse;
}

.vault-wheel {
  position: relative;
  z-index: 3;
  width: 42%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 35, 157, 0.26), transparent 48%),
    rgba(0, 0, 0, 0.54);
  box-shadow: 0 0 36px rgba(255, 35, 157, 0.26);
  animation: wheelSpin 2.15s ease-in-out forwards;
}

.vault-wheel span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 86%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #ff239d, transparent);
  transform-origin: center;
}

.vault-wheel span:nth-child(1) { transform: translate(-50%, -50%) rotate(0deg); }
.vault-wheel span:nth-child(2) { transform: translate(-50%, -50%) rotate(60deg); }
.vault-wheel span:nth-child(3) { transform: translate(-50%, -50%) rotate(120deg); }

.vault-loader p {
  position: absolute;
  bottom: 13%;
  margin: 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-shadow: 0 0 30px rgba(255, 35, 157, 0.72);
  animation: loaderText 820ms ease-in-out infinite alternate;
}

.vault-loader p::before,
.vault-loader p::after {
  color: var(--pink);
}

.vault-loader p::before {
  content: "[ ";
}

.vault-loader p::after {
  content: " ]";
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0;
  backdrop-filter: blur(22px);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 35, 157, 0.74), transparent);
  content: "";
}

.brand,
.site-nav,
.header-tools,
.header-action,
.button,
.filter-chip {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 950;
}

.brand img {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 35, 157, 0.5);
  border-radius: var(--radius);
  box-shadow: var(--glow);
}

.site-nav {
  justify-content: center;
  gap: 8px;
}

.site-nav a {
  position: relative;
  padding: 10px 13px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-nav a:hover {
  color: var(--text);
  border-color: rgba(255, 35, 157, 0.36);
  background: rgba(255, 35, 157, 0.08);
  box-shadow: 0 0 28px rgba(255, 35, 157, 0.18);
}

.header-tools {
  position: relative;
  gap: 10px;
  justify-content: flex-end;
}

.header-action,
.button,
.icon-button,
.filter-chip {
  min-height: 44px;
  justify-content: center;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 950;
}

.header-action {
  position: relative;
  overflow: hidden;
  padding: 0 17px;
  color: #15000d;
  border: 0;
  background: linear-gradient(135deg, var(--pink), var(--pink-2));
  box-shadow: 0 16px 48px rgba(255, 35, 157, 0.3);
}

.account-menu {
  position: relative;
  z-index: 30;
}

.account-menu-login,
.account-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(255, 35, 157, 0.34);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.56);
  color: var(--text);
  box-shadow: 0 0 26px rgba(255, 35, 157, 0.12);
  cursor: pointer;
}

.account-menu-login {
  padding: 0 16px;
  font-size: 13px;
  font-weight: 950;
}

.account-trigger {
  position: relative;
  width: 48px;
  height: 48px;
  padding: 3px;
}

.account-trigger img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.account-trigger span {
  position: absolute;
  right: -5px;
  bottom: -4px;
  padding: 3px 6px;
  border: 1px solid rgba(255, 35, 157, 0.5);
  border-radius: 999px;
  background: #050003;
  color: var(--pink-2);
  font-size: 9px;
  font-weight: 1000;
  box-shadow: 0 0 18px rgba(255, 35, 157, 0.34);
}

.account-trigger span.free {
  color: var(--muted);
}

.account-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  width: min(340px, calc(100vw - 24px));
  gap: 12px;
  padding: 16px;
  pointer-events: none;
  opacity: 0;
  border: 1px solid rgba(255, 35, 157, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 35, 157, 0.14), transparent 46%),
    rgba(0, 0, 0, 0.94);
  box-shadow: var(--shadow), var(--glow);
  transform: translateY(-6px) scale(0.98);
  transition: opacity 160ms ease, transform 160ms ease;
}

.account-menu.open .account-dropdown {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.login-choice-dropdown {
  width: min(240px, calc(100vw - 24px));
}

.dropdown-profile {
  display: flex;
  gap: 12px;
  align-items: center;
}

.dropdown-profile img {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 35, 157, 0.42);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 26px rgba(255, 35, 157, 0.2);
}

.dropdown-profile span,
.dropdown-profile em,
.dropdown-metrics span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.dropdown-profile strong {
  display: block;
  margin: 3px 0;
  color: var(--text);
  font-size: 17px;
}

.dropdown-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.dropdown-metrics div {
  padding: 10px;
  border: 1px solid rgba(255, 35, 157, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 35, 157, 0.06);
}

.dropdown-metrics strong {
  display: block;
  margin-top: 4px;
  color: var(--pink);
  font-size: 16px;
}

.account-dropdown a,
.account-dropdown button {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 35, 157, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.account-dropdown a:hover,
.account-dropdown button:hover {
  border-color: rgba(255, 35, 157, 0.44);
  background: rgba(255, 35, 157, 0.12);
}

.header-action::after,
.button-primary::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0 35%, rgba(255, 255, 255, 0.36) 49%, transparent 63% 100%);
  content: "";
  transform: translateX(-120%);
  animation: buttonSheen 4.6s ease-in-out infinite;
}

.menu-button {
  display: none;
}

.hero,
.strip,
.section,
.site-footer {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: calc(100vh - 72px);
  padding: 70px 0 92px;
  text-align: center;
}

.hero-copy {
  max-width: 980px;
}

.hero::before {
  position: absolute;
  inset: 11% 8% 8%;
  z-index: -1;
  border: 1px solid rgba(255, 35, 157, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 35, 157, 0.12), transparent),
    repeating-linear-gradient(90deg, transparent 0 54px, rgba(255, 35, 157, 0.055) 55px);
  box-shadow: inset 0 0 90px rgba(255, 35, 157, 0.06), var(--glow);
  content: "";
  transform: skewY(-5deg);
  animation: heroSweep 7s ease-in-out infinite alternate;
}

.hero-center {
  display: grid;
  justify-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(255, 35, 157, 0.48);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 1080px;
  margin-bottom: 24px;
  font-size: clamp(62px, 11vw, 148px);
  line-height: 0.86;
  letter-spacing: 0;
  text-shadow: 0 0 46px rgba(255, 35, 157, 0.24);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.7vw, 62px);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow),
.section-heading p,
.feature-stack p,
.module-card p,
.price-card p,
.stock-preview p,
.compare-grid span,
.site-footer,
.stock-row small,
.vouch-card p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 32px;
  font-size: 19px;
}

.hero-actions,
.quick-stats,
.strip,
.hero-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  position: relative;
  overflow: hidden;
  padding: 0 18px;
  border: 1px solid transparent;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button-primary {
  color: #15000d;
  background: linear-gradient(135deg, var(--pink), var(--pink-2));
  box-shadow: 0 18px 54px rgba(255, 35, 157, 0.28);
}

.button-soft {
  color: var(--text);
  border-color: rgba(255, 35, 157, 0.24);
  background: rgba(255, 255, 255, 0.055);
}

.button-ghost {
  color: var(--text);
  border-color: rgba(255, 35, 157, 0.36);
  background: rgba(255, 35, 157, 0.1);
}

.button:hover,
.price-card:hover,
.module-card:hover,
.feature-stack article:hover,
.social-grid a:hover,
.filter-chip:hover,
.filter-chip.active,
.compare-grid article:hover,
.mini-row:hover,
.stock-row:hover,
.vouch-card:hover,
.pass-card:hover,
.proof-line:hover,
.upsell-strip article:hover,
.claim-core:hover,
.savings-core:hover,
.claim-row:hover,
.value-pill:hover,
.hype-item:hover {
  border-color: var(--line-hot);
  box-shadow:
    0 0 0 1px rgba(255, 35, 157, 0.12),
    0 0 34px rgba(255, 35, 157, 0.26),
    0 0 92px rgba(255, 35, 157, 0.13),
    0 24px 70px rgba(0, 0, 0, 0.38);
  transform: translateY(-4px);
}

.quick-stats {
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.quick-stats span,
.strip span {
  border: 1px solid rgba(255, 35, 157, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  box-shadow: inset 0 0 20px rgba(255, 35, 157, 0.04);
}

.quick-stats span {
  position: relative;
  overflow: visible;
  min-width: 172px;
  padding: 16px 18px;
  font-size: 15px;
}

.quick-stats strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 0.95;
  text-shadow: 0 0 30px rgba(255, 35, 157, 0.22);
}

.number-animating {
  display: inline-block;
  color: var(--pink) !important;
  text-shadow: 0 0 22px rgba(255, 35, 157, 0.52);
  animation: numberPop 620ms ease-in-out infinite alternate;
}

.stat-burst::before,
.stat-burst::after {
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  content: "";
}

.stat-burst::before {
  border: 1px solid rgba(255, 35, 157, 0.42);
  box-shadow: 0 0 42px rgba(255, 35, 157, 0.38);
  animation: statPunch 760ms ease-out forwards;
}

.stat-burst::after {
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 35, 157, 0.28), transparent 28%),
    radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.16), transparent 24%),
    radial-gradient(circle at 50% 80%, rgba(255, 35, 157, 0.22), transparent 30%);
  filter: blur(10px);
  animation: smokeEvaporate 900ms ease-out forwards;
}

.hero-stage {
  position: relative;
  display: grid;
  gap: 16px;
  min-height: 568px;
  align-content: center;
}

.hero-stage::before {
  position: absolute;
  inset: 7% 5%;
  border: 1px solid rgba(255, 35, 157, 0.2);
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 35, 157, 0.18), transparent),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255, 35, 157, 0.065) 43px);
  box-shadow: inset 0 0 80px rgba(255, 35, 157, 0.08), var(--glow);
  content: "";
  transform: skewY(-7deg);
  animation: heroSweep 7s ease-in-out infinite alternate;
}

.hero-stage::after {
  position: absolute;
  inset: 19% 0 13%;
  border-top: 1px solid rgba(255, 35, 157, 0.16);
  border-bottom: 1px solid rgba(255, 35, 157, 0.16);
  background: linear-gradient(90deg, transparent, rgba(255, 35, 157, 0.1), transparent);
  content: "";
  transform: skewY(8deg);
}

.hero-logo-mark,
.pass-stack,
.hero-proof,
.proof-feed,
.hero-stage .ticker {
  position: relative;
  z-index: 1;
}

.hero-logo-mark {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.hero-logo-mark img {
  width: clamp(94px, 12vw, 150px);
  border: 1px solid rgba(255, 35, 157, 0.44);
  border-radius: var(--radius);
  box-shadow: var(--glow), 0 28px 90px rgba(0, 0, 0, 0.6);
  animation: logoFloat 4.8s ease-in-out infinite;
}

.hero-logo-mark span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 11px;
  border: 1px solid rgba(255, 35, 157, 0.18);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(0, 0, 0, 0.44);
  font-size: 12px;
  font-weight: 900;
}

.hero-logo-mark strong {
  color: var(--pink);
}

.pass-stack {
  display: grid;
  grid-template-columns: 0.72fr 1.2fr 0.72fr;
  align-items: stretch;
  gap: 12px;
}

.pass-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 35, 157, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 35, 157, 0.11), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.034)),
    rgba(0, 0, 0, 0.34);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.38);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  animation: cardIn 520ms ease both;
}

.pass-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 38%, rgba(255, 255, 255, 0.13) 48%, transparent 59% 100%);
  content: "";
  transform: translateX(-120%);
  animation: consoleSweep 6.2s ease-in-out infinite;
}

.compact-pass {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}

.main-pass {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-color: rgba(255, 35, 157, 0.56);
  background:
    linear-gradient(135deg, rgba(255, 35, 157, 0.2), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.42);
  box-shadow: var(--glow), 0 28px 100px rgba(0, 0, 0, 0.54);
}

.pass-card span,
.pass-card small {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.pass-card h2,
.pass-card p,
.pass-card strong {
  position: relative;
  z-index: 1;
}

.main-pass h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 4vw, 54px);
}

.main-pass p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.pass-card strong {
  color: var(--text);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 0.95;
  text-shadow: 0 0 28px rgba(255, 35, 157, 0.24);
}

.compact-pass strong {
  margin: 10px 0 8px;
  font-size: clamp(28px, 3vw, 38px);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.proof-stat {
  min-height: 88px;
  padding: 15px;
  border: 1px solid rgba(255, 35, 157, 0.16);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.38);
  box-shadow: inset 0 0 24px rgba(255, 35, 157, 0.035);
}

.proof-stat span {
  display: block;
  color: var(--text);
  font-size: 26px;
  font-weight: 950;
}

.proof-stat strong {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.proof-feed {
  display: grid;
  gap: 8px;
}

.proof-line {
  display: grid;
  grid-template-columns: 0.42fr minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 52px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 35, 157, 0.14);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.36);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  animation: cardIn 520ms ease both;
}

.proof-line span,
.proof-line p {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.proof-line span {
  color: var(--pink);
  font-size: 13px;
  font-weight: 950;
}

.proof-line p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.vouch-dump {
  position: relative;
  overflow: hidden;
  min-height: 568px;
  padding: 22px;
  border: 1px solid rgba(255, 35, 157, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(18, 7, 14, 0.96), rgba(3, 1, 3, 0.99)),
    #050205;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.05), var(--glow);
}

.vouch-dump::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, transparent 0 32%, rgba(255, 255, 255, 0.12) 45%, transparent 58% 100%),
    repeating-linear-gradient(90deg, transparent 0 32px, rgba(255, 35, 157, 0.055) 33px);
  content: "";
  transform: translateX(-120%);
  animation: consoleSweep 5.8s ease-in-out infinite;
}

.vouch-dump::after {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 35, 157, 0.15);
  border-radius: var(--radius);
  content: "";
}

.board-top,
.vouch-feature,
.vouch-metrics,
.vouch-list,
.hero-panel-actions,
.ticker {
  position: relative;
  z-index: 1;
}

.board-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 35, 157, 0.2);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.board-top strong {
  margin-left: auto;
  color: var(--pink);
  text-shadow: 0 0 22px rgba(255, 35, 157, 0.5);
}

.signal {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 24px var(--pink);
  animation: pulseDot 1.6s ease-in-out infinite;
}

.vouch-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  margin: 18px 0 12px;
  padding: 24px;
  border: 1px solid rgba(255, 35, 157, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 35, 157, 0.15), transparent 42%),
    rgba(0, 0, 0, 0.28);
}

.vouch-feature h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.vouch-feature p:not(.plan-label) {
  max-width: 440px;
  color: var(--muted);
  line-height: 1.6;
}

.vouch-score {
  display: flex;
  min-width: 150px;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 7px;
  padding: 14px;
  border: 1px solid rgba(255, 35, 157, 0.18);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.32);
}

.vouch-score span {
  color: var(--muted);
  font-weight: 900;
}

.vouch-score strong {
  font-size: 44px;
  line-height: 0.9;
}

.vouch-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.vouch-metrics article {
  min-height: 86px;
  padding: 14px 12px;
  border: 1px solid rgba(255, 35, 157, 0.15);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.26);
}

.vouch-metrics span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.vouch-metrics strong {
  display: block;
  margin-top: 10px;
  font-size: 26px;
}

.vouch-list,
.vouch-grid {
  display: grid;
  gap: 10px;
}

.vouch-list {
  margin-bottom: 14px;
}

.vouch-card {
  position: relative;
  overflow: hidden;
  min-height: 166px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.032)),
    rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  animation: cardIn 520ms ease both;
}

.vouch-card::before {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(120deg, transparent 0 34%, rgba(255, 35, 157, 0.13) 47%, transparent 60% 100%);
  content: "";
  transition: opacity 180ms ease;
}

.vouch-card:hover::before {
  opacity: 1;
}

.vouch-card.compact {
  min-height: 104px;
  padding: 15px;
}

.vouch-card.empty {
  min-height: 120px;
}

.vouch-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.vouch-card span,
.vouch-card-head span {
  min-width: 0;
  overflow: hidden;
  color: var(--text);
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vouch-card-head strong {
  color: var(--pink);
  font-size: 12px;
  white-space: nowrap;
}

.vouch-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}

.vouch-card small {
  position: relative;
  z-index: 1;
  color: var(--pink-2);
  font-size: 12px;
  font-weight: 900;
}

.hero-panel-actions .button {
  flex: 1;
}

.ticker {
  overflow: hidden;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid rgba(255, 35, 157, 0.22);
  border-radius: var(--radius);
  color: var(--pink);
  background: rgba(0, 0, 0, 0.32);
  white-space: nowrap;
}

.ticker span {
  display: inline-block;
  min-width: 100%;
  animation: ticker 18s linear infinite;
}

.strip {
  justify-content: center;
  padding: 0 0 52px;
}

.strip span {
  padding: 11px 14px;
}

.section {
  padding: 80px 0;
}

.upsell-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 18px;
}

.upsell-strip article {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 35, 157, 0.12), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032));
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.upsell-strip span {
  display: block;
  margin-bottom: 18px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.upsell-strip strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

.upsell-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.hype-rail {
  position: fixed;
  top: 94px;
  right: 16px;
  z-index: 45;
  display: grid;
  gap: 10px;
  width: 232px;
  padding: 12px;
  border: 1px solid rgba(255, 35, 157, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 35, 157, 0.13), transparent 48%),
    rgba(0, 0, 0, 0.78);
  box-shadow: var(--shadow), 0 0 38px rgba(255, 35, 157, 0.2);
  backdrop-filter: blur(18px);
}

.login-prompt {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 18px;
  pointer-events: none;
  opacity: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
  transition: opacity 180ms ease;
}

.login-prompt.open {
  pointer-events: auto;
  opacity: 1;
}

.login-prompt-card {
  width: min(520px, 100%);
  padding: 26px;
  border: 1px solid rgba(255, 35, 157, 0.36);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 35, 157, 0.18), transparent 48%),
    rgba(0, 0, 0, 0.92);
  box-shadow: var(--shadow), var(--glow);
  transform: translateY(16px) scale(0.98);
  transition: transform 180ms ease;
}

.login-prompt.open .login-prompt-card {
  transform: translateY(0) scale(1);
}

.login-prompt-card span,
.account-profile span,
.account-profile small,
.account-status span,
.account-order span,
.account-order small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.login-prompt-card h2 {
  margin: 12px 0;
  font-size: clamp(34px, 5vw, 54px);
}

.login-prompt-card p {
  color: var(--muted);
  line-height: 1.6;
}

.login-prompt-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.welcome-toast {
  position: fixed;
  top: 86px;
  right: 18px;
  z-index: 125;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-12px) scale(0.96);
  transition: opacity 220ms ease, transform 220ms ease;
}

.welcome-toast.open {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.welcome-card {
  display: flex;
  width: min(390px, calc(100vw - 28px));
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 35, 157, 0.42);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 35, 157, 0.22), transparent 34%),
    rgba(0, 0, 0, 0.94);
  box-shadow: var(--shadow), var(--glow);
  animation: welcomePulse 900ms ease both;
}

.welcome-card img {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 35, 157, 0.54);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 30px rgba(255, 35, 157, 0.28);
}

.welcome-card span {
  color: var(--pink);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.welcome-card strong {
  display: block;
  margin-top: 3px;
  color: var(--text);
  font-size: 20px;
}

.welcome-card p {
  margin: 3px 0 0;
  color: var(--muted);
}

@keyframes welcomePulse {
  0% {
    filter: brightness(1.5);
    transform: scale(0.92);
  }
  58% {
    filter: brightness(1.12);
    transform: scale(1.035);
  }
  100% {
    filter: brightness(1);
    transform: scale(1);
  }
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes checkoutCardPop {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes chatGlow {
  0%,
  100% {
    box-shadow: 0 0 24px rgba(255, 35, 157, 0.26);
  }
  50% {
    box-shadow: 0 0 42px rgba(255, 35, 157, 0.48);
  }
}

.mobile-quickbar {
  display: none;
}

.hype-rail::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 0 36%, rgba(255, 255, 255, 0.16) 48%, transparent 60% 100%);
  content: "";
  transform: translateX(-120%);
  animation: consoleSweep 6s ease-in-out infinite;
}

.hype-rail-head,
.hype-list,
.hype-item {
  position: relative;
  z-index: 1;
}

.hype-rail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 35, 157, 0.18);
}

.hype-rail-head span,
.hype-item small,
.hype-item em {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hype-rail-head strong {
  display: block;
  margin-top: 3px;
  color: var(--pink);
  font-size: 15px;
  text-shadow: 0 0 20px rgba(255, 35, 157, 0.5);
}

.hype-rail-head i {
  width: 13px;
  height: 13px;
  border: 1px solid rgba(255, 35, 157, 0.68);
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 20px rgba(255, 35, 157, 0.82);
  animation: pulseDot 1.4s ease-in-out infinite;
}

.hype-list {
  display: grid;
  gap: 8px;
}

.hype-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 10px;
  padding: 10px;
  border: 1px solid rgba(255, 35, 157, 0.15);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.36);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hype-item div:first-child {
  min-width: 0;
}

.hype-item span {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: var(--text);
  font-size: 13px;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hype-item small,
.hype-item em {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hype-item strong {
  color: var(--pink);
  font-size: 16px;
  text-shadow: 0 0 18px rgba(255, 35, 157, 0.48);
}

.hype-item em {
  grid-column: 1 / -1;
  margin-top: 0;
  font-style: normal;
}

.hype-bar {
  grid-column: 1 / -1;
  overflow: hidden;
  height: 7px;
  border: 1px solid rgba(255, 35, 157, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.hype-bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff239d, #ff73c8);
  box-shadow: 0 0 18px rgba(255, 35, 157, 0.68);
  transition: width 620ms cubic-bezier(.2, .8, .2, 1);
}

.claim-pulse-section {
  padding-top: 38px;
  padding-bottom: 58px;
}

.claim-pulse-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.48fr);
  gap: 24px;
  align-items: end;
  max-width: none;
  margin-bottom: 18px;
}

.claim-pulse-heading h2 {
  max-width: 760px;
  font-size: clamp(32px, 4vw, 50px);
}

.claim-pulse-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
  line-height: 1.55;
}

.claim-pulse-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.58fr);
  gap: 14px;
  align-items: stretch;
}

.claim-core,
.savings-core {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 35, 157, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 35, 157, 0.14), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.032)),
    rgba(0, 0, 0, 0.34);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.claim-core {
  min-height: 372px;
  padding: 16px;
}

.claim-core::before,
.savings-core::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 35%, rgba(255, 255, 255, 0.13) 48%, transparent 61% 100%),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255, 35, 157, 0.052) 43px);
  content: "";
  transform: translateX(-120%);
  animation: consoleSweep 6.6s ease-in-out infinite;
}

.claim-core-head,
.claim-reactor,
.claim-burst-layer,
.claim-list,
.savings-core > * {
  position: relative;
  z-index: 1;
}

.claim-core-head {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 35, 157, 0.18);
}

.claim-core-head strong {
  display: block;
  font-size: 17px;
}

.claim-core-head small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.claim-reactor {
  display: grid;
  flex: 0 0 auto;
  width: 66px;
  aspect-ratio: 1;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(255, 35, 157, 0.32);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 35, 157, 0.24) 0 12%, rgba(255, 35, 157, 0.06) 13% 30%, transparent 31%),
    repeating-conic-gradient(from 0deg, rgba(255, 35, 157, 0.22) 0 12deg, transparent 12deg 28deg);
  box-shadow:
    inset 0 0 55px rgba(255, 35, 157, 0.1),
    0 0 55px rgba(255, 35, 157, 0.24);
  animation: reactorBreathe 2.8s ease-in-out infinite;
}

.claim-reactor span {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 35, 157, 0.24);
  border-radius: 50%;
  animation: claimRing 2.2s linear infinite;
}

.claim-reactor span:nth-child(2) {
  inset: 25%;
  animation-delay: -720ms;
}

.claim-reactor span:nth-child(3) {
  inset: 38%;
  animation-delay: -1.4s;
}

.claim-reactor strong {
  color: var(--text);
  font-size: 13px;
  line-height: 0.9;
  text-shadow: 0 0 34px rgba(255, 35, 157, 0.52);
}

.claim-burst-layer {
  position: absolute;
  top: 70px;
  right: 16px;
  left: 16px;
  display: grid;
  justify-items: center;
  gap: 10px;
  pointer-events: none;
}

.claim-burst {
  display: grid;
  min-width: min(360px, 100%);
  gap: 4px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 35, 157, 0.62);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 35, 157, 0.28), rgba(0, 0, 0, 0.9)),
    #050205;
  box-shadow: var(--glow), 0 24px 70px rgba(0, 0, 0, 0.5);
  animation: claimBurst 3.5s ease forwards;
}

.claim-burst span,
.claim-burst small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.claim-burst strong {
  color: var(--text);
  font-size: 20px;
}

.claim-list {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.claim-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 35, 157, 0.14);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.34);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  animation: claimRowIn 520ms ease both;
}

.claim-row.latest {
  border-color: rgba(255, 35, 157, 0.42);
  box-shadow: inset 0 0 28px rgba(255, 35, 157, 0.055), 0 0 34px rgba(255, 35, 157, 0.14);
}

.claim-row.latest::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 18px rgba(255, 35, 157, 0.85);
  content: "";
}

.claim-row.latest {
  grid-template-columns: 8px minmax(0, 1fr) auto;
}

.claim-row div {
  min-width: 0;
}

.claim-row span,
.claim-row small {
  display: block;
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.claim-row strong {
  display: block;
  min-width: 0;
  overflow: hidden;
  margin: 2px 0;
  color: var(--text);
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.claim-row b {
  color: var(--pink);
  font-size: 16px;
  text-shadow: 0 0 22px rgba(255, 35, 157, 0.38);
}

.savings-core {
  display: flex;
  min-height: 372px;
  flex-direction: column;
  padding: 16px;
}

.savings-core > span {
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 9px;
  border-radius: var(--radius);
  color: #16000e;
  background: linear-gradient(135deg, var(--pink), var(--pink-2));
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.savings-core > strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(42px, 4.6vw, 64px);
  line-height: 0.85;
  text-shadow: 0 0 42px rgba(255, 35, 157, 0.28);
}

.savings-core p {
  margin-bottom: 12px;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

.savings-mini-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 12px;
}

.savings-mini-stats div {
  min-height: 64px;
  padding: 9px;
  border: 1px solid rgba(255, 35, 157, 0.16);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.32);
}

.savings-mini-stats strong {
  display: block;
  color: var(--text);
  font-size: 22px;
}

.savings-mini-stats small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.value-pill {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  max-width: 100%;
  padding: 6px 8px;
  border: 1px solid rgba(255, 35, 157, 0.16);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(0, 0, 0, 0.28);
  font-size: 11px;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.value-pill strong {
  color: var(--pink);
  white-space: nowrap;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: 42px;
}

.feature-stack,
.module-grid,
.generate-grid,
.pricing-grid,
.stock-mini-list,
.social-grid,
.compare-grid {
  display: grid;
  gap: 14px;
}

.feature-stack {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-stack article,
.module-card,
.price-card,
.compare-card,
.social-grid a,
.stock-mini-list,
.drawer-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.032)),
    rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.feature-stack article {
  padding: 22px;
}

.feature-stack span,
.module-badge,
.plan-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 950;
}

.feature-stack span {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: #16000e;
  background: linear-gradient(135deg, var(--pink), var(--pink-2));
  box-shadow: 0 0 24px rgba(255, 35, 157, 0.24);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.module-count {
  display: inline-flex;
  margin-top: 14px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 35, 157, 0.22);
  border-radius: var(--radius);
  color: var(--pink);
  background: rgba(255, 35, 157, 0.06);
  box-shadow: inset 0 0 18px rgba(255, 35, 157, 0.04);
}

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

.generate-shell {
  display: grid;
  gap: 14px;
}

.generate-notice {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid rgba(255, 35, 157, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 35, 157, 0.18), rgba(255, 35, 157, 0.03) 48%, transparent),
    rgba(0, 0, 0, 0.46);
  box-shadow:
    0 0 32px rgba(255, 35, 157, 0.12),
    inset 0 0 22px rgba(255, 35, 157, 0.04);
}

.generate-notice div {
  display: grid;
  gap: 5px;
}

.generate-notice span {
  color: var(--pink-2);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.generate-notice strong {
  font-size: clamp(18px, 3vw, 27px);
  line-height: 1.05;
}

.generate-notice p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.generate-notice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.generate-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 35, 157, 0.18);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.3);
}

.generate-toolbar input {
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid rgba(255, 35, 157, 0.2);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(0, 0, 0, 0.42);
  outline: none;
}

.generate-toolbar span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

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

.generate-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 18px;
  border: 1px solid rgba(255, 35, 157, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 35, 157, 0.1), transparent 48%),
    rgba(0, 0, 0, 0.34);
  box-shadow: var(--shadow);
}

.generate-card.premium {
  border-color: rgba(255, 35, 157, 0.36);
}

.generate-card.down {
  border-color: rgba(255, 168, 64, 0.32);
}

.generate-card.empty {
  border-color: rgba(255, 75, 112, 0.32);
}

.generate-card-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: center;
}

.generate-card strong {
  font-size: 20px;
}

.generate-card small,
.generate-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.generate-card .button {
  width: 100%;
}

.status-light {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: 0 0 18px currentColor;
}

.status-light.online {
  color: #35ff9e;
  background: #35ff9e;
}

.status-light.down {
  color: #ffae42;
  background: #ffae42;
}

.status-light.empty {
  color: #ff4b70;
  background: #ff4b70;
}

.generate-badges,
.generate-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.generate-badges span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(255, 35, 157, 0.2);
  border-radius: 999px;
  color: var(--pink-2);
  background: rgba(255, 35, 157, 0.07);
  font-size: 11px;
  font-weight: 900;
}

.generate-card-actions .button {
  flex: 1 1 130px;
}

.module-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -10px 0 24px;
}

.filter-chip {
  min-height: 40px;
  padding: 0 14px;
  color: var(--muted);
  border: 1px solid rgba(255, 35, 157, 0.18);
  background: rgba(255, 255, 255, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease;
}

.filter-chip.active {
  color: var(--text);
  background: rgba(255, 35, 157, 0.1);
}

.module-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 24px;
  animation: cardIn 520ms ease both;
}

.module-card::before {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(120deg, transparent 0 36%, rgba(255, 35, 157, 0.16) 46%, transparent 57% 100%);
  content: "";
  transition: opacity 180ms ease;
}

.module-card:hover::before {
  opacity: 1;
}

.module-card h3,
.module-card p,
.module-meta,
.module-tags {
  position: relative;
  z-index: 1;
}

.module-card h3 {
  min-height: 54px;
}

.module-meta,
.module-tags,
.drawer-tools,
.drawer-head,
.stock-row,
.mini-row,
.site-footer {
  display: flex;
  align-items: center;
}

.module-meta,
.module-tags {
  flex-wrap: wrap;
  gap: 8px;
}

.module-meta {
  margin-bottom: 16px;
}

.module-tags {
  margin-top: 20px;
}

.module-badge {
  padding: 7px 9px;
  color: #16000e;
  background: linear-gradient(135deg, var(--pink), var(--pink-2));
}

.module-badge.premium {
  color: var(--text);
  border: 1px solid rgba(255, 35, 157, 0.24);
  background: rgba(255, 35, 157, 0.22);
}

.module-badge.offline {
  color: var(--text);
  background: rgba(255, 35, 157, 0.35);
}

.module-badge.synced,
.module-badge.empty {
  color: var(--text);
  background: rgba(255, 255, 255, 0.13);
}

.module-tags span {
  padding: 6px 8px;
  border: 1px solid rgba(255, 35, 157, 0.16);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  background: rgba(0, 0, 0, 0.22);
}

.skeleton-card {
  min-height: 250px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(255, 35, 157, 0.04), rgba(255, 35, 157, 0.13), rgba(255, 35, 157, 0.04));
  background-size: 240% 100%;
  animation: skeleton 1.4s ease-in-out infinite;
}

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

.checkout-identity {
  display: grid;
  grid-template-columns: auto minmax(280px, 520px);
  gap: 12px;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: -8px auto 22px;
  padding: 12px;
  border: 1px solid rgba(255, 35, 157, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 35, 157, 0.11), transparent),
    rgba(0, 0, 0, 0.34);
  box-shadow: inset 0 0 24px rgba(255, 35, 157, 0.04);
}

.checkout-identity label {
  color: var(--pink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.checkout-identity div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.checkout-identity span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.checkout-identity span[data-state="success"] {
  color: var(--pink-2);
}

.checkout-identity span[data-state="error"] {
  color: #ff7aa8;
}

.checkout-login[hidden] {
  display: none;
}

.checkout-success-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 35, 157, 0.2), transparent 34%),
    rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(16px);
  animation: modalFadeIn 0.25s ease both;
}

.checkout-success-card {
  position: relative;
  width: min(560px, 100%);
  padding: 28px;
  border: 1px solid rgba(255, 35, 157, 0.48);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 35, 157, 0.18), transparent 44%),
    linear-gradient(180deg, rgba(18, 0, 12, 0.98), rgba(0, 0, 0, 0.98));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 42px rgba(255, 35, 157, 0.34),
    0 26px 80px rgba(0, 0, 0, 0.62);
  text-align: center;
  overflow: hidden;
  animation: checkoutCardPop 0.45s cubic-bezier(0.2, 1.4, 0.3, 1) both;
}

.checkout-success-card.guide-modal-card {
  width: min(720px, 100%);
  max-height: min(82vh, 780px);
  overflow: auto;
  text-align: left;
}

.checkout-success-card.guide-modal-card h2,
.checkout-success-card.guide-modal-card .checkout-success-copyline,
.checkout-success-card.guide-modal-card .eyebrow {
  text-align: center;
}

.checkout-success-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 90deg, transparent, rgba(255, 35, 157, 0.28), transparent 28%);
  animation: wheelSpin 4s linear infinite;
  opacity: 0.55;
}

.checkout-success-card > * {
  position: relative;
  z-index: 1;
}

.checkout-success-card h2 {
  margin: 6px 0 10px;
  font-size: clamp(30px, 6vw, 52px);
  line-height: 0.95;
  text-shadow: 0 0 22px rgba(255, 35, 157, 0.5);
}

.checkout-success-copyline {
  max-width: 420px;
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.checkout-key-box {
  display: grid;
  gap: 8px;
  padding: 18px;
  margin: 18px 0;
  border: 1px solid rgba(255, 35, 157, 0.4);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.62);
  box-shadow: 0 0 28px rgba(255, 35, 157, 0.18) inset;
}

.checkout-key-box span {
  color: var(--pink-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-key-box strong {
  color: #fff;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(18px, 4vw, 29px);
  line-height: 1.15;
  overflow-wrap: anywhere;
  text-shadow: 0 0 18px rgba(255, 35, 157, 0.46);
}

.generated-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 0;
}

.generated-fields span {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(255, 35, 157, 0.22);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.46);
}

.generated-fields small {
  color: var(--pink-2);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.generated-fields strong {
  overflow-wrap: anywhere;
}

.generated-image {
  display: block;
  width: min(240px, 100%);
  margin: 16px auto 0;
  border: 1px solid rgba(255, 35, 157, 0.3);
  border-radius: 16px;
  box-shadow: 0 0 28px rgba(255, 35, 157, 0.18);
}

.guide-content {
  position: relative;
  z-index: 1;
  max-height: 440px;
  padding: 18px;
  margin: 18px 0;
  overflow: auto;
  border: 1px solid rgba(255, 35, 157, 0.24);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.58);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.62;
  overflow-wrap: anywhere;
  white-space: normal;
  box-shadow: 0 0 28px rgba(255, 35, 157, 0.14) inset;
}

.otp-status {
  min-height: 20px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.otp-status strong {
  color: var(--pink-2);
}

.checkout-success-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.checkout-success-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}

.access-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(860px, 100%);
  margin: 0 auto 18px;
}

.access-choice-card {
  display: grid;
  gap: 7px;
  padding: 17px;
  border: 1px solid rgba(255, 35, 157, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 35, 157, 0.08), transparent 48%),
    rgba(0, 0, 0, 0.32);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.access-choice-card:hover,
.access-choice-card.active {
  border-color: rgba(255, 35, 157, 0.55);
  background:
    linear-gradient(145deg, rgba(255, 35, 157, 0.18), transparent 48%),
    rgba(0, 0, 0, 0.44);
  box-shadow: 0 0 32px rgba(255, 35, 157, 0.18);
  transform: translateY(-1px);
}

.access-choice-card span,
.key-login-card label span,
.key-login-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.access-choice-card strong {
  font-size: 20px;
}

.access-choice-card small {
  color: var(--muted);
  line-height: 1.45;
}

.price-card {
  display: flex;
  min-height: 382px;
  flex-direction: column;
  padding: 27px;
}

.price-card.featured {
  border-color: rgba(255, 35, 157, 0.55);
  background:
    linear-gradient(135deg, rgba(255, 35, 157, 0.2), transparent 46%),
    linear-gradient(180deg, rgba(255, 35, 157, 0.15), rgba(255, 255, 255, 0.04));
  box-shadow: var(--glow);
}

.plan-label {
  margin-bottom: 20px;
  padding: 7px 10px;
  color: #16000e !important;
  background: linear-gradient(135deg, var(--pink), var(--pink-2));
}

.price-card strong {
  margin: auto 0 22px;
  font-size: 52px;
  line-height: 1;
  text-shadow: 0 0 28px rgba(255, 35, 157, 0.2);
}

.sale-card {
  border-color: rgba(255, 35, 157, 0.34);
}

.sale-price {
  margin: auto 0 22px;
}

.sale-price span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-weight: 900;
  text-decoration: line-through;
}

.sale-price strong {
  margin: 0;
}

.account-section {
  padding-top: 42px;
}

.account-panel {
  width: min(760px, 100%);
  margin: 0 auto;
}

.key-login-card {
  display: grid;
  width: min(760px, 100%);
  gap: 14px;
  margin: 16px auto 0;
  padding: 22px;
  border: 1px solid rgba(255, 35, 157, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 35, 157, 0.1), transparent 48%),
    rgba(0, 0, 0, 0.3);
  box-shadow: var(--shadow);
}

.support-card {
  display: grid;
  width: min(760px, 100%);
  gap: 14px;
  margin: 16px auto 0;
  padding: 22px;
  border: 1px solid rgba(255, 35, 157, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 35, 157, 0.09), transparent 48%),
    rgba(0, 0, 0, 0.28);
  box-shadow: var(--shadow);
}

.support-card[hidden] {
  display: none;
}

.support-card h3 {
  margin: 5px 0 6px;
  font-size: 28px;
}

.support-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.support-card label {
  display: grid;
  gap: 7px;
}

.support-card label span,
.support-card small,
.support-ticket span,
.support-ticket small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.support-card input,
.support-card textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(255, 35, 157, 0.2);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(0, 0, 0, 0.42);
  outline: none;
}

.support-card textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

.support-card input:focus,
.support-card textarea:focus {
  border-color: rgba(255, 35, 157, 0.58);
  box-shadow: 0 0 0 3px rgba(255, 35, 157, 0.12);
}

.support-card small[data-state="success"] {
  color: var(--pink-2);
}

.support-card small[data-state="error"] {
  color: #ff7aa8;
}

.support-list {
  display: grid;
  gap: 8px;
}

.support-ticket {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid rgba(255, 35, 157, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.support-ticket strong {
  color: var(--text);
}

.live-chat {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9990;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease;
}

body.site-loaded .live-chat,
body:not(:has(.vault-loader)) .live-chat {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.chat-launcher {
  display: grid;
  min-width: 184px;
  gap: 3px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 35, 157, 0.48);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 35, 157, 0.95), rgba(255, 119, 202, 0.95));
  color: #13000c;
  box-shadow: 0 0 34px rgba(255, 35, 157, 0.36);
  cursor: pointer;
  text-decoration: none;
  text-align: left;
  animation: chatGlow 2.8s ease-in-out infinite;
  outline: 1px solid rgba(255, 255, 255, 0.16);
  outline-offset: 3px;
}

.chat-launcher.public-chat-launcher {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 0 44px rgba(255, 35, 157, 0.48),
    0 0 0 8px rgba(255, 35, 157, 0.08);
}

.chat-launcher span {
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chat-launcher strong {
  font-size: 20px;
  font-weight: 1000;
}

.chat-launcher small {
  color: rgba(19, 0, 12, 0.72);
  font-size: 11px;
  font-weight: 950;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  display: grid;
  width: min(390px, calc(100vw - 24px));
  max-height: min(620px, calc(100vh - 120px));
  overflow: hidden;
  border: 1px solid rgba(255, 35, 157, 0.36);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 35, 157, 0.13), transparent 42%),
    rgba(0, 0, 0, 0.96);
  box-shadow: 0 0 48px rgba(255, 35, 157, 0.22), 0 28px 80px rgba(0, 0, 0, 0.62);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.96);
  transition: opacity 180ms ease, transform 180ms ease;
}

.live-chat.open .chat-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.chat-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px;
  border-bottom: 1px solid rgba(255, 35, 157, 0.14);
}

.chat-tabs button {
  min-height: 34px;
  border: 1px solid rgba(255, 35, 157, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.chat-tabs button:hover,
.chat-tabs button.active {
  color: #14000d;
  border-color: rgba(255, 35, 157, 0.62);
  background: linear-gradient(135deg, var(--pink), var(--pink-2));
  transform: translateY(-1px);
}

.chat-head {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border-bottom: 1px solid rgba(255, 35, 157, 0.16);
}

.chat-identity {
  display: flex;
  min-width: 0;
  gap: 11px;
  align-items: center;
}

.chat-avatar,
.chat-mini-avatar {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 35, 157, 0.42);
  border-radius: 50%;
  background: rgba(255, 35, 157, 0.12);
  color: var(--pink-2);
  font-weight: 950;
  overflow: hidden;
}

.chat-avatar {
  width: 44px;
  height: 44px;
}

.chat-mini-avatar {
  width: 30px;
  height: 30px;
  font-size: 11px;
}

.chat-avatar img,
.chat-mini-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-identity strong,
.chat-identity small {
  display: block;
}

.chat-identity strong {
  max-width: 230px;
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-identity small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.chat-head button {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.48);
  color: var(--text);
  cursor: pointer;
  font-weight: 950;
}

.chat-messages {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 230px;
  max-height: 370px;
  overflow-y: auto;
  padding: 14px;
}

.chat-empty,
.chat-error {
  padding: 14px;
  border: 1px solid rgba(255, 35, 157, 0.18);
  border-radius: 16px;
  background: rgba(255, 35, 157, 0.07);
}

.chat-empty p,
.chat-error {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.chat-message {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.chat-message > div {
  max-width: 78%;
  padding: 10px 12px;
  border: 1px solid rgba(255, 35, 157, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.chat-message.customer {
  justify-content: flex-end;
}

.chat-message.customer .chat-mini-avatar {
  order: 2;
}

.chat-message.customer > div {
  border-color: rgba(255, 35, 157, 0.36);
  background: rgba(255, 35, 157, 0.12);
}

.chat-message strong {
  display: block;
  margin-bottom: 4px;
  color: var(--pink-2);
  font-size: 11px;
}

.chat-message strong em {
  display: inline-flex;
  margin-left: 5px;
  padding: 2px 6px;
  border: 1px solid rgba(255, 35, 157, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-style: normal;
  font-weight: 950;
}

.chat-message.public:not(.customer) > div {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 35, 157, 0.08), transparent 52%),
    rgba(255, 255, 255, 0.035);
}

.chat-message p {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.chat-message small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
}

.chat-compose,
.chat-locked {
  gap: 9px;
  padding: 12px;
  border-top: 1px solid rgba(255, 35, 157, 0.16);
}

.chat-compose {
  display: grid;
  grid-template-columns: 1fr auto;
}

.chat-compose[hidden],
.chat-locked[hidden] {
  display: none;
}

.chat-compose input {
  min-width: 0;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 35, 157, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--text);
  outline: none;
}

.chat-compose button {
  min-height: 42px;
  padding: 0 15px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--pink-2));
  color: #15000d;
  cursor: pointer;
  font-weight: 950;
}

.chat-locked {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.chat-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 75% 18%, rgba(255, 35, 157, 0.22), transparent 26%),
    radial-gradient(circle at 12% 72%, rgba(255, 119, 202, 0.12), transparent 28%),
    #020001;
}

.chat-site-header {
  position: sticky;
}

.public-chat-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 126px 0 42px;
}

.public-chat-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.public-chat-hero h1 {
  margin: 8px 0 12px;
  font-size: clamp(54px, 11vw, 132px);
  line-height: 0.82;
  text-shadow:
    0 0 22px rgba(255, 35, 157, 0.52),
    0 0 62px rgba(255, 35, 157, 0.2);
}

.public-chat-hero p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.public-chat-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(108px, 1fr));
  gap: 10px;
  min-width: min(430px, 100%);
}

.public-chat-stats span {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(255, 35, 157, 0.22);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.44);
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.public-chat-stats strong {
  color: var(--text);
  font-size: 26px;
  line-height: 1;
  text-shadow: 0 0 18px rgba(255, 35, 157, 0.42);
  text-transform: none;
}

.public-chat-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.public-chat-side,
.public-chat-room {
  border: 1px solid rgba(255, 35, 157, 0.24);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 35, 157, 0.1), transparent 42%),
    rgba(0, 0, 0, 0.68);
  box-shadow: 0 0 48px rgba(255, 35, 157, 0.16), 0 24px 80px rgba(0, 0, 0, 0.52);
}

.public-chat-side {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
}

.public-chat-profile {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 35, 157, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.public-chat-profile strong,
.public-chat-profile small {
  display: block;
}

.public-chat-profile small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.public-chat-login {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 35, 157, 0.2);
  border-radius: 18px;
  background: rgba(255, 35, 157, 0.08);
}

.public-chat-login[hidden] {
  display: none;
}

.public-chat-login h2,
.public-chat-login p {
  margin: 0;
}

.public-chat-login p,
.public-chat-note p {
  color: var(--muted);
  line-height: 1.45;
}

.public-chat-fun {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 14px;
  border: 1px solid rgba(255, 35, 157, 0.16);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.32);
}

.public-chat-fun span {
  flex: 1 0 100%;
  color: var(--pink-2);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.public-chat-fun button {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(255, 35, 157, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
}

.public-chat-fun button:hover {
  border-color: rgba(255, 35, 157, 0.58);
  background: rgba(255, 35, 157, 0.14);
}

.public-chat-note {
  padding: 14px;
  border: 1px solid rgba(255, 75, 112, 0.24);
  border-radius: 18px;
  background: rgba(255, 75, 112, 0.08);
}

.public-chat-note strong {
  color: #ff8bad;
}

.public-chat-room {
  display: grid;
  grid-template-rows: auto minmax(380px, 58vh) auto;
  min-height: 660px;
  overflow: hidden;
}

.public-chat-room-head {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 35, 157, 0.16);
}

.public-chat-room-head span,
.public-chat-room-head strong {
  display: block;
}

.public-chat-room-head span {
  color: var(--pink-2);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.public-chat-room-head strong {
  margin-top: 4px;
  font-size: 24px;
}

.public-chat-messages {
  display: grid;
  align-content: start;
  gap: 14px;
  overflow-y: auto;
  padding: 18px;
  scroll-behavior: smooth;
}

.public-chat-room .chat-message > div {
  max-width: min(620px, 82%);
  padding: 13px 15px;
  border-radius: 18px;
}

.public-chat-room .chat-message p {
  font-size: 15px;
}

.public-chat-compose {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 16px;
  border-top: 1px solid rgba(255, 35, 157, 0.16);
  background: rgba(0, 0, 0, 0.28);
}

.public-chat-compose[hidden] {
  display: none;
}

.public-chat-compose input {
  min-width: 0;
  min-height: 54px;
  padding: 0 17px;
  border: 1px solid rgba(255, 35, 157, 0.22);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  color: var(--text);
  font-size: 15px;
  outline: none;
}

.public-chat-compose input:focus {
  border-color: rgba(255, 35, 157, 0.62);
  box-shadow: 0 0 0 4px rgba(255, 35, 157, 0.12);
}

.public-chat-compose button {
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--pink-2));
  color: #15000d;
  cursor: pointer;
  font-weight: 1000;
}

.key-login-card h3 {
  margin: 5px 0 6px;
  font-size: 28px;
}

.key-login-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.key-login-card label {
  display: grid;
  gap: 7px;
}

.key-login-card input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(255, 35, 157, 0.2);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(0, 0, 0, 0.42);
  outline: none;
}

.key-login-card input:focus {
  border-color: rgba(255, 35, 157, 0.58);
  box-shadow: 0 0 0 3px rgba(255, 35, 157, 0.12);
}

.key-login-card small[data-state="success"] {
  color: var(--pink-2);
}

.key-login-card small[data-state="error"] {
  color: #ff7aa8;
}

.account-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 35, 157, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 35, 157, 0.13), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.032)),
    rgba(0, 0, 0, 0.34);
  box-shadow: var(--shadow);
}

.account-card.active {
  border-color: rgba(255, 35, 157, 0.4);
  box-shadow: var(--shadow), var(--glow);
}

.account-card.vip {
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 35, 157, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 35, 157, 0.16), transparent 46%),
    rgba(0, 0, 0, 0.42);
}

.account-card.free {
  border-color: rgba(255, 255, 255, 0.12);
}

.account-hero,
.account-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.account-dashboard-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 12px;
}

.profile-avatar-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  padding: 14px;
  border: 1px solid rgba(255, 35, 157, 0.16);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.24);
}

.profile-avatar-form label {
  display: grid;
  gap: 7px;
}

.profile-avatar-form span,
.profile-avatar-form small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.profile-avatar-form input {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 35, 157, 0.18);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.46);
  color: var(--text);
  outline: none;
}

.profile-avatar-form small {
  grid-column: 1 / -1;
}

.profile-avatar-form small[data-state="success"] {
  color: var(--pink-2);
}

.profile-avatar-form small[data-state="error"] {
  color: #ff7aa8;
}

.account-badge {
  display: inline-flex;
  min-width: 64px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 35, 157, 0.44);
  border-radius: 999px;
  color: var(--pink-2);
  font-size: 13px;
  font-weight: 1000;
  box-shadow: 0 0 28px rgba(255, 35, 157, 0.2);
}

.account-badge.free {
  color: var(--muted);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.account-profile {
  display: flex;
  gap: 14px;
  align-items: center;
}

.account-avatar {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(255, 35, 157, 0.36);
  border-radius: 50%;
  background: rgba(255, 35, 157, 0.12);
  box-shadow: 0 0 26px rgba(255, 35, 157, 0.18);
}

img.account-avatar {
  object-fit: cover;
}

.account-profile strong {
  display: block;
  margin: 2px 0;
  font-size: 24px;
}

.account-card p {
  margin: 0;
  color: var(--muted);
}

.account-status,
.account-order {
  padding: 14px;
  border: 1px solid rgba(255, 35, 157, 0.16);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.28);
}

.account-status.premium {
  border-color: rgba(255, 35, 157, 0.42);
  box-shadow: inset 0 0 24px rgba(255, 35, 157, 0.06);
}

.account-status p {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.45;
}

.account-status strong,
.account-order strong {
  display: block;
  margin-top: 5px;
  color: var(--text);
  font-size: 20px;
  overflow-wrap: anywhere;
}

.account-orders {
  display: grid;
  gap: 8px;
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button.loading::before {
  position: absolute;
  inset: 9px auto 9px 10px;
  width: 16px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-top-color: var(--text);
  border-radius: 50%;
  content: "";
  animation: spin 720ms linear infinite;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: 38px;
}

.stock-mini-list {
  padding: 16px;
  background: var(--panel);
  box-shadow: var(--shadow), var(--glow);
}

.mini-row,
.stock-row {
  justify-content: space-between;
  gap: 18px;
  min-height: 56px;
  padding: 0 12px;
  border: 1px solid rgba(255, 35, 157, 0.1);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.mini-row + .mini-row,
.stock-row + .stock-row {
  margin-top: 8px;
}

.mini-row span,
.stock-row span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 850;
}

.mini-row strong,
.stock-row strong {
  color: var(--pink);
  white-space: nowrap;
}

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

.vouch-highlights {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.92fr));
  gap: 14px;
  margin-bottom: 18px;
}

.vouch-highlight {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(255, 35, 157, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 35, 157, 0.14), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.032)),
    rgba(0, 0, 0, 0.34);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  animation: cardIn 560ms ease both;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.vouch-highlight::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 35%, rgba(255, 255, 255, 0.14) 47%, transparent 59% 100%),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(255, 35, 157, 0.055) 39px);
  content: "";
  transform: translateX(-120%);
  animation: consoleSweep 6.4s ease-in-out infinite;
}

.vouch-highlight:hover {
  border-color: var(--line-hot);
  box-shadow: var(--glow), 0 30px 90px rgba(0, 0, 0, 0.44);
  transform: translateY(-4px);
}

.vouch-highlight > span,
.vouch-highlight-head,
.vouch-highlight p,
.vouch-highlight small {
  position: relative;
  z-index: 1;
}

.vouch-highlight > span {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 7px 10px;
  border-radius: var(--radius);
  color: #170006;
  background: linear-gradient(135deg, #ff2b2b, #ff84b8);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 0 28px rgba(255, 43, 43, 0.24);
}

.vouch-highlight-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.vouch-highlight h3 {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  font-size: clamp(24px, 2.6vw, 38px);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vouch-highlight-head strong {
  color: var(--pink-2);
  font-size: 12px;
  white-space: nowrap;
}

.vouch-highlight p {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
}

.vouch-highlight small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.vouch-highlight.first-member {
  border-color: rgba(255, 43, 43, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 43, 43, 0.22), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035)),
    rgba(10, 0, 3, 0.72);
  box-shadow:
    0 0 0 1px rgba(255, 43, 43, 0.16),
    0 0 36px rgba(255, 43, 43, 0.38),
    0 0 110px rgba(255, 35, 157, 0.18),
    0 30px 90px rgba(0, 0, 0, 0.48);
}

.vouch-highlight.first-member::after {
  position: absolute;
  right: -54px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 43, 43, 0.24);
  border-radius: 50%;
  background: rgba(255, 43, 43, 0.12);
  box-shadow: 0 0 70px rgba(255, 43, 43, 0.2);
  content: "";
}

.vouch-more-button {
  width: min(320px, 100%);
  margin: 24px auto 0;
}

.vouch-more-button[hidden] {
  display: none;
}

.premium-difference {
  padding-top: 34px;
}

.difference-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 14px;
}

.difference-card {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.032)),
    rgba(0, 0, 0, 0.32);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.difference-card::before {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(120deg, transparent 0 34%, rgba(255, 35, 157, 0.13) 47%, transparent 60% 100%);
  content: "";
  transition: opacity 180ms ease;
}

.difference-card:hover {
  border-color: var(--line-hot);
  box-shadow: var(--glow), 0 24px 70px rgba(0, 0, 0, 0.38);
  transform: translateY(-4px);
}

.difference-card:hover::before {
  opacity: 1;
}

.difference-card span,
.difference-card h3,
.difference-card ul,
.difference-card .button {
  position: relative;
  z-index: 1;
}

.difference-card span {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 7px 10px;
  border-radius: var(--radius);
  color: #16000e;
  background: linear-gradient(135deg, var(--pink), var(--pink-2));
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.difference-card h3 {
  margin-bottom: 22px;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1;
}

.difference-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.difference-card li {
  padding: 13px 14px;
  border: 1px solid rgba(255, 35, 157, 0.13);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(0, 0, 0, 0.24);
  font-weight: 850;
}

.difference-card li::before {
  color: var(--pink);
  content: "-> ";
}

.premium-side {
  border-color: rgba(255, 35, 157, 0.52);
  background:
    linear-gradient(135deg, rgba(255, 35, 157, 0.18), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.38);
  box-shadow: var(--glow);
}

.premium-side .button {
  width: 100%;
  margin-top: 22px;
}

.free-side {
  opacity: 0.82;
}

.upgrade-ribbon {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 35, 157, 0.24);
  border-radius: var(--radius);
  color: var(--muted);
  background:
    linear-gradient(90deg, rgba(255, 35, 157, 0.14), transparent),
    rgba(0, 0, 0, 0.34);
  box-shadow: inset 0 0 24px rgba(255, 35, 157, 0.04);
}

.upgrade-ribbon strong {
  color: var(--pink);
  white-space: nowrap;
}

.compare-card {
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(255, 35, 157, 0.13), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.035));
}

.compare-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

.compare-grid article {
  display: grid;
  gap: 11px;
  padding: 20px;
  border: 1px solid rgba(255, 35, 157, 0.16);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.23);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.compare-grid strong {
  font-size: 22px;
}

.compare-grid span::before {
  color: var(--pink);
  content: "-> ";
}

.social-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.social-grid a {
  min-height: 156px;
  padding: 22px;
}

.social-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 850;
}

.social-grid strong {
  font-size: 23px;
}

.stock-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.stock-drawer.open {
  pointer-events: auto;
  opacity: 1;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.drawer-panel {
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  width: min(640px, calc(100% - 36px));
  flex-direction: column;
  padding: 20px;
  background: var(--panel-strong);
  box-shadow: var(--shadow), var(--glow);
  transform: translateX(24px);
  transition: transform 180ms ease;
}

.stock-drawer.open .drawer-panel {
  transform: translateX(0);
}

.drawer-head {
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 35, 157, 0.18);
}

.drawer-head h2 {
  font-size: 38px;
}

.icon-button {
  padding: 0 14px;
  color: var(--text);
  border: 1px solid rgba(255, 35, 157, 0.2);
  background: rgba(255, 255, 255, 0.055);
}

.drawer-tools {
  gap: 10px;
  padding: 16px 0;
}

.drawer-tools input,
.drawer-tools select {
  min-width: 0;
  height: 44px;
  border: 1px solid rgba(255, 35, 157, 0.18);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(0, 0, 0, 0.34);
}

.drawer-tools input {
  flex: 1;
  padding: 0 12px;
}

.drawer-tools select {
  padding: 0 10px;
}

.stock-table {
  overflow: auto;
  padding-right: 4px;
}

.stock-row {
  min-height: 64px;
}

.stock-row div {
  min-width: 0;
}

.stock-row small {
  display: block;
  margin-top: 2px;
}

.site-footer {
  justify-content: space-between;
  gap: 20px;
  padding: 38px 0 52px;
  border-top: 1px solid rgba(255, 35, 157, 0.16);
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 950;
}

.site-footer img {
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  box-shadow: 0 0 22px rgba(255, 35, 157, 0.24);
}

.site-footer p {
  margin: 0;
}

.site-footer a:hover {
  color: var(--pink);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes scan {
  from { transform: translateY(-80px); }
  to { transform: translateY(80px); }
}

@keyframes glowShift {
  from { transform: translateX(-2%); }
  to { transform: translateX(2%); }
}

@keyframes loaderThemeShift {
  0% { filter: brightness(0.72) saturate(0.9); transform: scale(1.04); }
  54% { filter: brightness(1.08) saturate(1.35); transform: scale(1.01); }
  100% { filter: brightness(1.22) saturate(1.6); transform: scale(1.18); }
}

@keyframes loaderOrbit {
  0% { opacity: 0.24; transform: rotate(0deg) scale(0.8); }
  62% { opacity: 0.82; transform: rotate(220deg) scale(1.02); }
  100% { opacity: 0; transform: rotate(420deg) scale(1.8); }
}

@keyframes loaderTarget {
  from { opacity: 0.18; transform: scale(0.72) rotate(0deg); }
  to { opacity: 0.5; transform: scale(0.82) rotate(1deg); }
}

@keyframes vaultOpen {
  0% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  24% {
    transform: scale(0.98) rotate(-4deg);
  }
  52% {
    transform: scale(1.05) rotate(8deg);
  }
  100% {
    opacity: 0;
    transform: scale(2.65) rotate(34deg);
  }
}

@keyframes vaultDoorSplit {
  0%, 48% { clip-path: inset(0 50% 0 0); transform: translateX(0) rotate(0deg); opacity: 1; filter: brightness(1); }
  66% { filter: brightness(1.6); }
  100% { clip-path: inset(0 50% 0 0); transform: translateX(-72%) rotate(-24deg); opacity: 0; filter: brightness(1.9); }
}

@keyframes vaultDoorSplitReverse {
  0%, 48% { clip-path: inset(0 0 0 50%); transform: translateX(0) rotate(0deg); opacity: 1; filter: brightness(1); }
  66% { filter: brightness(1.6); }
  100% { clip-path: inset(0 0 0 50%); transform: translateX(72%) rotate(24deg); opacity: 0; filter: brightness(1.9); }
}

@keyframes tunnelDive {
  0%, 42% { opacity: 0; transform: scale(0.25); filter: brightness(0.7); }
  58% { opacity: 1; transform: scale(0.78); filter: brightness(1.35); }
  100% { opacity: 0; transform: scale(10.5); filter: brightness(2); }
}

@keyframes tunnelRing {
  from { transform: scale(0.75); opacity: 0.9; }
  to { transform: scale(1.55); opacity: 0; }
}

@keyframes wheelSpin {
  from { transform: rotate(0deg); }
  72% { transform: rotate(860deg) scale(1); }
  to { transform: rotate(930deg) scale(0.34); opacity: 0; }
}

@keyframes lockDial {
  from { transform: rotate(0deg) scale(0.96); }
  to { transform: rotate(720deg) scale(1.1); }
}

@keyframes loaderText {
  from { opacity: 0.66; transform: translateY(0); }
  to { opacity: 1; transform: translateY(-2px); }
}

@keyframes loaderFade {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes numberPop {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(-1px) scale(1.04); }
}

@keyframes statPunch {
  0% { opacity: 0; transform: scale(0.78); }
  28% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 0; transform: scale(1.34); }
}

@keyframes smokeEvaporate {
  0% { opacity: 0; transform: translateY(6px) scale(0.82); }
  24% { opacity: 0.75; }
  100% { opacity: 0; transform: translateY(-22px) scale(1.48); }
}

@keyframes heroSweep {
  from { transform: skewY(-7deg) translateY(-8px); opacity: 0.64; }
  to { transform: skewY(-7deg) translateY(8px); opacity: 1; }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes consoleSweep {
  0%, 40% { transform: translateX(-120%); }
  62%, 100% { transform: translateX(120%); }
}

@keyframes buttonSheen {
  0%, 48% { transform: translateX(-120%); }
  68%, 100% { transform: translateX(120%); }
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.42); opacity: 0.68; }
}

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

@keyframes reactorBreathe {
  0%, 100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.035);
    filter: brightness(1.18);
  }
}

@keyframes claimRing {
  from {
    opacity: 0.9;
    transform: scale(0.62);
  }
  to {
    opacity: 0;
    transform: scale(1.64);
  }
}

@keyframes claimBurst {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.92);
  }
  13% {
    opacity: 1;
    transform: translateY(0) scale(1.04);
  }
  24%, 70% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-24px) scale(0.96);
  }
}

@keyframes claimRowIn {
  from {
    opacity: 0;
    transform: translateX(-16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@keyframes skeleton {
  from { background-position: 120% 0; }
  to { background-position: -120% 0; }
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1800px) {
  .hype-rail {
    position: relative;
    top: auto;
    right: auto;
    width: min(1240px, calc(100% - 32px));
    margin: 18px auto 0;
  }

  .hype-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  body {
    padding-bottom: 76px;
  }

  .hype-rail {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .menu-button {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    margin-left: auto;
    border: 1px solid rgba(255, 35, 157, 0.2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
  }

  .menu-button span {
    width: 18px;
    height: 2px;
    background: var(--text);
  }

  .site-nav,
  .header-action {
    display: none;
  }

  .header-tools {
    grid-column: 3;
    grid-row: 1;
  }

  .menu-button {
    grid-column: 2;
    justify-self: end;
  }

  .account-menu {
    display: block;
  }

  .account-menu-login {
    min-height: 40px;
    padding: 0 13px;
  }

  .account-trigger {
    width: 42px;
    height: 42px;
  }

  .account-dropdown {
    position: fixed;
    top: 76px;
    right: 12px;
    left: 12px;
    width: auto;
  }

  .site-header.open .site-nav {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    padding: 12px;
    border: 1px solid rgba(255, 35, 157, 0.18);
    border-radius: var(--radius);
    background: rgba(7, 3, 7, 0.97);
  }

  .site-header.open .site-nav a {
    padding: 12px;
  }

  .mobile-quickbar {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 90;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 35, 157, 0.32);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.88);
    box-shadow: 0 0 34px rgba(255, 35, 157, 0.24);
    backdrop-filter: blur(18px);
  }

  .mobile-quickbar a,
  .mobile-quickbar button {
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 35, 157, 0.1);
    color: var(--text);
    font: inherit;
    font-size: 13px;
    font-weight: 950;
    text-align: center;
  }

  .mobile-quickbar a {
    display: grid;
    place-items: center;
  }

  .mobile-quickbar a:first-child {
    background: linear-gradient(135deg, var(--pink), var(--pink-2));
    color: #15000d;
    box-shadow: 0 0 24px rgba(255, 35, 157, 0.3);
  }

  .chat-page {
    padding-bottom: 0;
  }

  .chat-page .site-header {
    grid-template-columns: 1fr auto;
  }

  .chat-page .header-tools {
    display: block;
    grid-column: 2;
  }

  .chat-page .header-action {
    display: inline-flex;
  }

  .chat-page-nav {
    display: none;
  }

  .public-chat-page {
    width: min(100% - 22px, 760px);
    padding-top: 102px;
  }

  .public-chat-hero {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .public-chat-hero h1 {
    font-size: clamp(52px, 18vw, 82px);
  }

  .public-chat-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-width: 0;
  }

  .public-chat-stats span {
    min-width: 0;
    padding: 11px;
    font-size: 9px;
  }

  .public-chat-stats strong {
    font-size: 21px;
  }

  .public-chat-layout {
    grid-template-columns: 1fr;
  }

  .public-chat-room {
    grid-row: 1;
    min-height: 620px;
    grid-template-rows: auto minmax(360px, 56vh) auto;
  }

  .public-chat-side {
    grid-row: 2;
  }

  .public-chat-room .chat-message > div {
    max-width: 84%;
  }

  .public-chat-compose {
    grid-template-columns: 1fr;
  }

  .public-chat-compose button {
    width: 100%;
  }

  main {
    display: flex;
    flex-direction: column;
  }

  .section,
  .strip {
    order: 11;
  }

  .hero {
    order: 1;
  }

  #pulse {
    order: 2;
  }

  #pricing {
    order: 3;
  }

  #account {
    order: 4;
  }

  #generate {
    order: 5;
  }

  .strip {
    order: 6;
  }

  .upsell-strip {
    order: 7;
  }

  #modules {
    order: 8;
  }

  #stock {
    order: 9;
  }

  #vouches {
    order: 10;
  }

  .premium-difference {
    order: 11;
  }

  #socials {
    order: 12;
  }

  .hero,
  .split,
  .showcase {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: calc(100svh - 78px);
    padding-top: 18px;
    padding-bottom: 92px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-proof {
    margin-top: 18px;
  }

  .quick-stats {
    justify-content: center;
  }

  .quick-stats span {
    min-width: 112px;
    justify-content: center;
  }

  .claim-pulse-section {
    padding-top: 18px;
    padding-bottom: 20px;
  }

  .claim-pulse-heading,
  .claim-core {
    display: none;
  }

  .claim-pulse-layout {
    display: block;
  }

  .savings-core {
    min-height: auto;
    text-align: center;
  }

  .savings-core > span {
    margin-right: auto;
    margin-left: auto;
  }

  .savings-core > strong {
    font-size: clamp(48px, 15vw, 72px);
  }

  .value-list {
    max-height: 132px;
    overflow: hidden;
  }

  .section {
    padding-top: 54px;
  }

  .pricing-grid {
    gap: 12px;
  }

  .access-choice {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: auto;
    padding: 18px;
  }

  .price-card strong,
  .sale-price strong {
    font-size: 34px;
  }

  .checkout-identity {
    padding: 14px;
  }

  .account-panel {
    width: 100%;
  }

  .account-hero,
  .account-actions,
  .profile-avatar-form {
    align-items: stretch;
    flex-direction: column;
  }

  .profile-avatar-form {
    grid-template-columns: 1fr;
  }

  .generated-fields {
    grid-template-columns: 1fr;
  }

  .live-chat {
    top: 76px;
    right: 12px;
    bottom: auto;
    left: auto;
    z-index: 94;
  }

  .chat-launcher {
    min-width: 0;
    width: auto;
    gap: 1px;
    margin-left: auto;
    padding: 9px 12px;
    border-radius: 999px;
    text-align: center;
    outline-offset: 2px;
  }

  .chat-launcher span {
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .chat-launcher strong {
    font-size: 13px;
    line-height: 1;
  }

  .chat-launcher small {
    display: none;
  }

  .chat-launcher.public-chat-launcher {
    box-shadow:
      0 0 22px rgba(255, 35, 157, 0.34),
      0 0 0 4px rgba(255, 35, 157, 0.06);
  }

  .chat-panel {
    right: 0;
    width: 100%;
    max-height: calc(100vh - 148px);
  }

  .account-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .account-card {
    padding: 18px;
  }

  .key-login-card {
    padding: 18px;
  }

  .support-card {
    padding: 18px;
  }

  .generate-notice {
    align-items: stretch;
    flex-direction: column;
  }

  .generate-notice-actions,
  .generate-notice .button,
  .generate-card-actions .button {
    width: 100%;
  }

  .feature-stack,
  .module-grid,
  .generate-grid,
  .generate-toolbar,
  .pricing-grid,
  .checkout-identity,
  .compare-grid,
  .social-grid,
  .claim-pulse-heading,
  .claim-pulse-layout,
  .difference-grid,
  .vouch-highlights,
  .pass-stack,
  .hero-proof,
  .vouch-metrics,
  .upsell-strip,
  .vouch-grid,
  .hype-list {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: auto;
  }

  .claim-core,
  .savings-core {
    min-height: auto;
  }

  .claim-pulse-heading {
    gap: 12px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .difference-card {
    min-height: auto;
  }

  .upgrade-ribbon {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero,
  .strip,
  .section,
  .site-footer,
  .site-header {
    width: min(100% - 24px, 1240px);
  }

  h1 {
    font-size: clamp(38px, 12.6vw, 58px);
    line-height: 0.92;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .menu-button {
    width: 40px;
    height: 40px;
  }

  .site-header {
    top: 8px;
    padding: 9px;
  }

  .welcome-toast {
    top: 72px;
    right: 12px;
    left: 12px;
  }

  .welcome-card {
    width: 100%;
    padding: 13px;
  }

  .login-prompt-card {
    padding: 20px;
  }

  .login-prompt {
    align-items: end;
    place-items: end center;
    padding: 12px 12px 82px;
    background: linear-gradient(180deg, transparent 0 36%, rgba(0, 0, 0, 0.76));
    backdrop-filter: none;
  }

  .login-prompt-card {
    display: grid;
    gap: 8px;
    padding: 10px;
  }

  .login-prompt-card > span,
  .login-prompt-card h2 {
    display: none;
  }

  .login-prompt-card p {
    display: none;
  }

  .login-prompt-card div {
    display: grid;
    grid-template-columns: 1fr 0.74fr;
  }

  .login-prompt-card .button {
    min-height: 42px;
    padding: 0 12px;
    font-size: 14px;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-copy > p:not(.eyebrow) {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .quick-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    margin-top: 14px;
  }

  .quick-stats span {
    min-width: 0;
    padding: 11px 8px;
  }

  .quick-stats strong {
    font-size: 30px;
  }

  .savings-core {
    padding: 18px;
  }

  .savings-mini-stats {
    grid-template-columns: 1fr;
  }

  .value-list {
    display: none;
  }

  #pricing .section-heading,
  #account .section-heading {
    text-align: left;
  }

  #pricing .section-heading h2,
  #account .section-heading h2 {
    font-size: 34px;
  }

  .hero-actions .button,
  .pricing-grid .button,
  .account-actions .button,
  .account-actions button {
    width: 100%;
  }

  .account-profile {
    align-items: flex-start;
  }

  .account-avatar {
    width: 54px;
    height: 54px;
  }

  .account-profile strong {
    font-size: 20px;
  }

  .account-badge {
    width: 100%;
  }

  .dropdown-metrics {
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .hero-panel-actions .button,
  .drawer-tools,
  .drawer-tools input,
  .drawer-tools select {
    width: 100%;
  }

  .vouch-feature {
    grid-template-columns: 1fr;
  }

  .proof-line {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .vouch-score {
    align-items: flex-start;
  }

  .drawer-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .drawer-panel {
    inset: 10px;
    width: auto;
    padding: 16px;
  }
}
