/* ==========================================================================
   LyricBingo — Public site (landing + auth)
   ========================================================================== */

.wx-site,
.lb-v2 .wx-site {
  --wx-bg: #000000;
  --wx-pink: #e91479;
  --wx-violet: #8b5cf6;
  --wx-cyan: #1ed760;
  --wx-lime: #1ed760;
  --wx-gold: #ffd54a;
  --wx-line: rgba(255, 255, 255, 0.08);
  --wx-text: #ffffff;
  --wx-muted: #b3b3b3;
  --wx-max: min(1180px, calc(100% - 2.5rem));
  --wx-display: "DM Sans", system-ui, sans-serif;
  --wx-body: "DM Sans", system-ui, sans-serif;
  position: relative;
  min-height: 100vh;
  background: var(--wx-bg);
  color: var(--wx-text);
  font-family: var(--wx-body);
  overflow-x: hidden;
}

/* ── Ambient background ── */
.wx-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.wx-ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.wx-ambient__orb--1 {
  width: 42vw;
  height: 42vw;
  top: -12%;
  left: -8%;
  background: rgba(139, 92, 246, 0.2);
}

.wx-ambient__orb--2 {
  width: 36vw;
  height: 36vw;
  top: 8%;
  right: -10%;
  background: rgba(30, 215, 96, 0.12);
}

.wx-ambient__orb--3 {
  width: 28vw;
  height: 28vw;
  bottom: 10%;
  left: 30%;
  background: rgba(233, 20, 121, 0.1);
}

.wx-site > *:not(.wx-ambient) {
  position: relative;
  z-index: 1;
}

/* ── Nav (shared landing + auth) ── */
.wx-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0 clamp(1rem, 4vw, 3.5rem);
  background: rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid var(--wx-line);
  backdrop-filter: blur(20px);
}

.wx-nav-brand img {
  height: 38px;
  width: auto;
  display: block;
  filter: none;
}

.wx-nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.wx-nav-links a {
  color: var(--wx-muted);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.15s ease;
}

.wx-nav-links a:hover {
  color: #fff;
}

.wx-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wx-nav-link {
  color: var(--wx-muted);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
}

.wx-nav-link:hover,
.wx-nav-link[aria-current="page"] {
  color: #fff;
}

/* ── Buttons ── */
.wx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0 1.25rem;
  border-radius: 14px;
  border: 1px solid var(--wx-line);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.wx-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 215, 96, 0.35);
}

.wx-btn--primary {
  border: none;
  background: var(--wx-cyan);
  color: #000;
  box-shadow: none;
}

.wx-btn--primary:hover {
  background: #1fdf64;
  box-shadow: 0 8px 24px rgba(30, 215, 96, 0.25);
}

.wx-btn--ghost {
  background: transparent;
}

.wx-btn--outline {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.18);
}

.wx-btn--lg {
  min-height: 54px;
  padding: 0 1.6rem;
  font-size: 1rem;
  border-radius: 16px;
}

.wx-btn.wide {
  width: 100%;
}

/* ── Typography helpers ── */
.wx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wx-cyan);
}

.wx-eyebrow--hot {
  color: var(--wx-violet);
}

.wx-grad {
  background: linear-gradient(100deg, #fff 0%, var(--wx-cyan) 55%, var(--wx-violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wx-stars {
  color: var(--wx-gold);
  letter-spacing: 0.08em;
}

/* ── Hero ── */
.wx-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: min(1280px, 100% - 2rem);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1rem, 4vw, 2rem) clamp(2.5rem, 6vw, 4rem);
}

.wx-hero__copy h1 {
  font-family: var(--wx-display);
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin: 0.75rem 0 1.25rem;
  text-transform: uppercase;
}

.wx-hero__copy > p {
  margin: 0;
  max-width: 52ch;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--wx-muted);
}

.wx-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.wx-hero__proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--wx-muted);
}

/* Hero console mock */
.wx-hero__visual {
  display: flex;
  justify-content: center;
}

.wx-console {
  width: min(100%, 420px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--pro-elevated, #181818);
  box-shadow:
    0 40px 100px -24px rgba(0, 0, 0, 0.75),
    0 0 60px rgba(168, 85, 247, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.wx-console__bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}

.wx-console__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.wx-console__bar span:nth-child(1) { background: #ff5f57; }
.wx-console__bar span:nth-child(2) { background: #febc2e; }
.wx-console__bar span:nth-child(3) { background: #28c840; }

.wx-console__bar b {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wx-lime);
}

.wx-console__body {
  padding: 1.25rem;
  display: grid;
  gap: 1rem;
}

.wx-console__now small {
  display: block;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wx-muted);
}

.wx-console__now strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.1rem;
}

.wx-console__hints {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 1.75rem;
}

.wx-console__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.wx-console__stats div {
  padding: 0.65rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
}

.wx-console__stats b {
  display: block;
  font-family: var(--wx-display);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--wx-cyan);
}

.wx-console__stats span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wx-muted);
}

.wx-console__board {
  border-radius: 14px;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wx-console__board > span {
  display: block;
  text-align: center;
  font-family: var(--wx-display);
  font-size: 1.1rem;
  letter-spacing: 0.35em;
  margin-bottom: 0.5rem;
  color: var(--wx-lime);
}

.wx-console__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}

.wx-console__grid span {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}

.wx-console__grid span.free {
  background: var(--wx-cyan);
  color: #000;
  font-size: 0.55rem;
}

/* ── Marquee ── */
.wx-marquee {
  border-block: 1px solid var(--wx-line);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  padding: 0.85rem 0;
}

.wx-marquee__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: wx-marquee 28s linear infinite;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wx-muted);
}

.wx-marquee__track em {
  color: var(--wx-lime);
  font-style: normal;
  margin-right: 0.5rem;
}

@keyframes wx-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Stats band ── */
.wx-band {
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.wx-band__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--wx-max);
  margin: 0 auto;
  border: 1px solid var(--wx-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.wx-band__inner article {
  padding: 1.5rem 1.25rem;
  text-align: center;
  border-right: 1px solid var(--wx-line);
}

.wx-band__inner article:last-child {
  border-right: none;
}

.wx-band__inner strong {
  display: block;
  font-family: var(--wx-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1;
  color: var(--wx-cyan);
}

.wx-band__inner span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: var(--wx-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Sections ── */
.wx-section {
  max-width: var(--wx-max);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1rem, 4vw, 0);
}

.wx-section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.wx-section-head h2 {
  font-family: var(--wx-display);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1;
  margin: 0.5rem 0 0.75rem;
  text-transform: uppercase;
}

.wx-section-head p {
  margin: 0;
  color: var(--wx-muted);
  line-height: 1.65;
}

/* Trio cards */
.wx-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.wx-trio-card {
  padding: 1.75rem 1.5rem;
  border-radius: 20px;
  border: 1px solid var(--wx-line);
  background: var(--pro-elevated, #181818);
  border: 1px solid var(--wx-line);
}

.wx-trio-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

.wx-trio-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.wx-trio-card p {
  margin: 0;
  color: var(--wx-muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

/* Bento */
.wx-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.wx-bento--wide {
  grid-column: span 2;
}

.wx-bento {
  /* article selector */
}

article.wx-bento {
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--wx-line);
  background: var(--pro-elevated, #181818);
  transition: border-color 0.18s ease, transform 0.18s ease;
}

article.wx-bento:hover {
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}

.wx-bento__icon {
  font-size: 1.75rem;
  margin-bottom: 0.85rem;
}

article.wx-bento h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

article.wx-bento p {
  margin: 0;
  color: var(--wx-muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

/* Steps */
.wx-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.wx-step {
  padding: 1.25rem 1rem;
  border-radius: 18px;
  border: 1px solid var(--wx-line);
  background: rgba(255, 255, 255, 0.03);
}

.wx-step b {
  display: block;
  font-family: var(--wx-display);
  font-size: 1.75rem;
  color: var(--wx-pink);
  margin-bottom: 0.5rem;
}

.wx-step strong {
  display: block;
  margin-bottom: 0.35rem;
}

.wx-step p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--wx-muted);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════════════════
   PRICING — hero section
   ══════════════════════════════════════════════════════════════════════════ */
.wx-pricing {
  position: relative;
  margin: clamp(2rem, 5vw, 4rem) 0;
  padding: clamp(4rem, 10vw, 7rem) clamp(1rem, 4vw, 2rem);
  overflow: hidden;
}

.wx-pricing__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(255, 47, 208, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(24, 227, 255, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(184, 255, 43, 0.1), transparent 50%),
    linear-gradient(180deg, rgba(12, 8, 28, 0.6), rgba(5, 4, 11, 0.95));
  border-block: 1px solid rgba(255, 255, 255, 0.1);
}

.wx-pricing__inner {
  position: relative;
  z-index: 1;
  max-width: var(--wx-max);
  margin: 0 auto;
}

.wx-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
  margin-top: 2.5rem;
}

.wx-price {
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: 24px;
  border: 1px solid var(--wx-line);
  background: rgba(10, 8, 22, 0.75);
  backdrop-filter: blur(12px);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.wx-price:hover {
  transform: translateY(-4px);
}

.wx-price header {
  margin-bottom: 1.25rem;
}

.wx-price h3 {
  margin: 0;
  font-family: var(--wx-display);
  font-size: 1.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.wx-price__tag {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wx-muted);
}

.wx-price__amount {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-top: 1rem;
}

.wx-price__amount strong {
  font-family: var(--wx-display);
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.wx-price__amount em {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--wx-muted);
}

.wx-price ul {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex: 1;
  display: grid;
  gap: 0.65rem;
}

.wx-price li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.wx-price li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--wx-lime);
  font-weight: 900;
}

/* Featured Pro plan */
.wx-price--hot {
  position: relative;
  border: 2px solid rgba(30, 215, 96, 0.45);
  background: var(--pro-elevated, #181818);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transform: scale(1.02);
  z-index: 2;
}

.wx-price--hot:hover {
  transform: scale(1.02) translateY(-4px);
  border-color: rgba(30, 215, 96, 0.6);
  box-shadow: 0 16px 48px rgba(30, 215, 96, 0.12);
}

.wx-price__ribbon {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.4rem 1rem;
  border-radius: 500px;
  background: var(--wx-cyan);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(184, 255, 43, 0.4);
  white-space: nowrap;
}

.wx-price--hot .wx-price__amount strong {
  background: linear-gradient(100deg, #fff 0%, var(--wx-cyan) 50%, var(--wx-lime) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.wx-price__note {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--wx-muted);
}

.wx-pricing-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--wx-muted);
}

/* Quotes */
.wx-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.wx-quote {
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid var(--wx-line);
  background: rgba(255, 255, 255, 0.04);
}

.wx-quote blockquote {
  margin: 0.75rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.wx-quote cite {
  font-size: 0.8rem;
  font-style: normal;
  color: var(--wx-muted);
}

/* FAQ */
.wx-faq {
  display: grid;
  gap: 0.75rem;
}

.wx-faq details {
  border-radius: 16px;
  border: 1px solid var(--wx-line);
  background: rgba(255, 255, 255, 0.03);
  padding: 0 1.25rem;
}

.wx-faq summary {
  cursor: pointer;
  padding: 1.1rem 0;
  font-weight: 800;
  list-style: none;
}

.wx-faq summary::-webkit-details-marker {
  display: none;
}

.wx-faq p {
  margin: 0 0 1.1rem;
  color: var(--wx-muted);
  line-height: 1.6;
}

/* Finale */
.wx-finale {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5rem) 1.5rem;
  text-align: center;
}

.wx-finale h2 {
  font-family: var(--wx-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.wx-finale p {
  margin: 0 0 2rem;
  color: var(--wx-muted);
  line-height: 1.65;
}

.wx-finale .wx-hero__cta {
  justify-content: center;
}

/* Footer */
.wx-foot {
  border-top: 1px solid var(--wx-line);
  padding: 2.5rem clamp(1rem, 4vw, 2rem) 3rem;
  background: rgba(0, 0, 0, 0.25);
}

.wx-foot-inner {
  max-width: var(--wx-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.wx-foot-brand img {
  height: 32px;
  opacity: 0.85;
}

.wx-foot nav {
  display: flex;
  gap: 1.25rem;
}

.wx-foot nav a {
  color: var(--wx-muted);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
}

.wx-foot nav a:hover {
  color: #fff;
}

.wx-foot p {
  width: 100%;
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
}

/* ══════════════════════════════════════════════════════════════════════════
   AUTH — integrated with landing
   ══════════════════════════════════════════════════════════════════════════ */
.wx-auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wx-auth-main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 2rem);
}

.wx-auth-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 440px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: min(100%, 1040px);
}

.wx-auth-story h1 {
  font-family: var(--wx-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 0.98;
  margin: 0.75rem 0 1rem;
  text-transform: uppercase;
}

.wx-auth-story > p {
  margin: 0;
  max-width: 48ch;
  color: var(--wx-muted);
  line-height: 1.65;
  font-size: 1.05rem;
}

.wx-auth-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.wx-auth-list li {
  position: relative;
  padding-left: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.wx-auth-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--wx-lime);
  font-weight: 900;
}

.wx-auth-quote {
  margin: 2rem 0 0;
  padding: 1.25rem 1.35rem;
  border-radius: 16px;
  border: 1px solid var(--wx-line);
  background: rgba(255, 255, 255, 0.04);
}

.wx-auth-quote p {
  margin: 0.5rem 0;
  line-height: 1.55;
  color: var(--wx-muted);
}

.wx-auth-quote cite {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  font-style: normal;
}

.wx-auth-card {
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--pro-elevated, #181818);
  box-shadow:
    0 32px 80px -24px rgba(0, 0, 0, 0.7),
    0 0 48px rgba(168, 85, 247, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.wx-auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.35rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 1.5rem;
}

.wx-auth-tabs a {
  display: grid;
  place-items: center;
  min-height: 42px;
  border-radius: 11px;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--wx-muted);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.wx-auth-tabs a.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.wx-auth-card h2 {
  margin: 0 0 0.35rem;
  font-family: var(--wx-display);
  font-size: 1.75rem;
  text-transform: uppercase;
}

.wx-auth-sub {
  margin: 0 0 1.5rem;
  color: var(--wx-muted);
  font-size: 0.92rem;
}

.wx-field {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.wx-field span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wx-muted);
}

.wx-input {
  width: 100%;
  min-height: 50px;
  padding: 0 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.wx-input:focus {
  outline: none;
  border-color: rgba(24, 227, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(24, 227, 255, 0.12);
}

.wx-field--pw {
  position: relative;
}

.wx-pw-toggle {
  position: absolute;
  right: 0.75rem;
  bottom: 0.65rem;
  border: 0;
  background: transparent;
  color: var(--wx-muted);
  cursor: pointer;
  padding: 0.25rem;
}

.wx-auth-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: var(--wx-muted);
}

.wx-auth-row a {
  color: var(--wx-cyan);
  text-decoration: none;
  font-weight: 700;
}

.wx-auth-switch {
  margin: 1.25rem 0 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--wx-muted);
}

.wx-auth-switch a {
  color: var(--wx-cyan);
  font-weight: 800;
  text-decoration: none;
}

.wx-auth-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--wx-line);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

/* Reveal animation */
.wx-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.wx-reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Scroll / overflow */
body.lb-v2-active:has(.wx-site),
html:has(.wx-site) {
  overflow-y: auto !important;
  height: auto !important;
}

.lb-v2.v2-public-root:has(.wx-site),
.lb-v2 .wx-site {
  min-height: 100vh !important;
  height: auto !important;
  overflow: visible !important;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .wx-hero {
    grid-template-columns: 1fr;
  }

  .wx-hero__visual {
    order: -1;
  }

  .wx-console {
    width: min(100%, 380px);
  }

  .wx-trio,
  .wx-quotes {
    grid-template-columns: 1fr;
  }

  .wx-bento {
    grid-template-columns: 1fr 1fr;
  }

  .wx-bento--wide {
    grid-column: span 2;
  }

  .wx-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .wx-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .wx-price--hot {
    transform: none;
    order: -1;
  }

  .wx-price--hot:hover {
    transform: translateY(-4px);
  }

  .wx-auth-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .wx-auth-story {
    text-align: center;
  }

  .wx-auth-story > p,
  .wx-auth-list {
    margin-inline: auto;
  }

  .wx-auth-quote {
    display: none;
  }
}

@media (max-width: 720px) {
  .wx-nav-links {
    display: none;
  }

  .wx-nav-actions > .wx-nav-link {
    display: none;
  }

  .wx-band__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .wx-band__inner article:nth-child(2) {
    border-right: none;
  }

  .wx-bento {
    grid-template-columns: 1fr;
  }

  .wx-bento--wide {
    grid-column: auto;
  }

  .wx-steps {
    grid-template-columns: 1fr;
  }

  .wx-hero__cta {
    display: grid;
  }

  .wx-hero__cta .wx-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wx-marquee__track,
  .wx-reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
