/* ============================================================================
   MMO Maid — pricing page styles
   Inherited from the (now-removed) v2 landing redesign. Carries unused rules;
   kept as-is because gzipping and 24h browser cache make trimming low-value.
   ============================================================================ */

:root {
  --void: #07080d;
  --abyss: #0d0f1a;
  --depth: #131728;
  --surface: #1a1f35;
  --raised: #21273f;

  --gold: #c9a84c;
  --gold-light: #e4c678;
  --gold-dim: rgba(201, 168, 76, 0.32);
  --gold-hair: rgba(201, 168, 76, 0.22);
  --gold-soft: rgba(201, 168, 76, 0.08);
  --cyan: #4ecdc4;
  --green: #6bcb8b;
  --red: #e05a5a;

  --text-prime: #e8dcc8;
  --text-mid: #9a8f7a;
  --text-dim: #5c5448;

  --border: rgba(180, 150, 80, 0.16);
  --border-strong: rgba(180, 150, 80, 0.32);

  --glow-gold: 0 0 40px rgba(201, 168, 76, 0.14);
  --glow-gold-strong: 0 0 80px rgba(201, 168, 76, 0.24);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  --fs-mono-xs: 0.6rem;
  --fs-mono-sm: 0.72rem;
  --fs-mono-md: 0.82rem;
  --fs-body: 1.0625rem;
  --fs-lead: 1.22rem;
  --fs-h2: clamp(1.9rem, 4vw, 2.8rem);
  --fs-h1: clamp(2.8rem, 7vw, 5.8rem);
}

*,*::before,*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text-prime);
  background: var(--void);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse 1400px 800px at 12% -10%, rgba(201, 168, 76, 0.09), transparent 60%),
    radial-gradient(ellipse 1200px 600px at 100% 30%, rgba(78, 205, 196, 0.045), transparent 60%),
    radial-gradient(ellipse 1000px 1000px at 50% 120%, rgba(201, 168, 76, 0.05), transparent 70%);
  background-attachment: fixed;
}
body::before {
  /* Subtle grain */
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.7  0 0 0 0 0.6  0 0 0 0 0.3  0 0 0 0.04 0'/></filter><rect width='120' height='120' filter='url(%23n)'/></svg>");
  opacity: 0.35;
  mix-blend-mode: overlay;
}

h1, h2, h3, h4 { font-family: 'Cinzel', Georgia, serif; font-weight: 600; margin: 0; color: var(--text-prime); }

a { color: var(--gold-light); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--gold); }

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

/* ---------- preview banner ---------- */
.preview-banner {
  position: sticky; top: 0; z-index: 100;
  background: linear-gradient(90deg, rgba(78,205,196,0.14), rgba(201,168,76,0.14));
  border-bottom: 1px solid var(--border-strong);
  padding: 8px 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-mono-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-prime);
  text-align: center;
  backdrop-filter: blur(6px);
}
.preview-banner strong { color: var(--gold-light); }
.preview-banner a { margin-left: 14px; color: var(--cyan); border-bottom: 1px dotted var(--cyan); }

/* ---------- layout primitives ---------- */
.wrap { position: relative; z-index: 2; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section-band { background: linear-gradient(180deg, transparent, rgba(13,15,26,0.45), transparent); }
.section-head { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-mono-sm);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
h2.section-title {
  font-size: var(--fs-h2);
  letter-spacing: 0.08em;
  line-height: 1.15;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}
h2.section-title::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 64px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
}
.section-sub {
  color: var(--text-mid);
  max-width: 660px;
  margin: 18px auto 0;
  font-size: var(--fs-lead);
}

/* ---------- nav ---------- */
.nav-v2 {
  position: sticky; top: 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  background: rgba(7, 8, 13, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-v2.with-banner { top: 38px; }
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-prime);
  font-size: 0.95rem;
}
.nav-brand-mark {
  display: inline-grid; place-items: center;
  width: 30px; height: 30px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 3px;
  font-size: 15px;
}
.nav-brand-avatar { width: 30px; height: 30px; border-radius: 4px; border: 1px solid var(--gold-hair); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-mono-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  padding: 9px 18px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-mono-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background .18s ease, color .18s ease;
}
.nav-cta:hover { background: var(--gold-soft); color: var(--gold-light); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 32px;
  font-family: 'Cinzel', serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #1a1508;
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, var(--glow-gold);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.22) inset, var(--glow-gold-strong); color: #1a1508; }
.btn-ghost {
  background: transparent;
  color: var(--text-prime);
  border-color: var(--gold-hair);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); background: var(--gold-soft); }

/* ---------- hero ---------- */
.hero-v2 {
  padding: 72px 0 40px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-copy .hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-mono-sm);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: var(--fs-h1);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0.005em;
  margin-bottom: 26px;
  color: var(--text-prime);
}
.hero-title .accent {
  background: linear-gradient(92deg, var(--gold-light) 10%, var(--gold) 50%, var(--gold-light) 90%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer 9s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: 0 0; }
}
.hero-sub {
  color: var(--text-mid);
  font-size: var(--fs-lead);
  margin-bottom: 32px;
  max-width: 600px;
  line-height: 1.55;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

/* Work log ticker */
.worklog {
  position: relative;
  padding: 16px 18px 16px 20px;
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  background: linear-gradient(90deg, rgba(201,168,76,0.04), rgba(13,15,26,0.5));
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  max-width: 580px;
  overflow: hidden;
}
.worklog-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-mono-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.worklog-label .live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.worklog-window {
  height: 96px; /* shows ~4 entries */
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(180deg, transparent 0, #000 10%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 10%, #000 88%, transparent 100%);
}
.worklog-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
  transition: transform 0.6s cubic-bezier(.3,.8,.4,1);
}
.worklog-entry {
  flex: 0 0 auto;
  height: 24px;
  display: flex; align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-mono-sm);
  color: var(--text-prime);
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  opacity: 1;
}
.worklog-entry .tick {
  color: var(--green);
  font-weight: bold;
  flex: 0 0 auto;
}
.worklog-entry .dim { color: var(--text-mid); }

/* ----- Maid silhouette (right side of hero) ----- */
.hero-maid {
  position: relative;
  aspect-ratio: 1 / 1.15;
  display: grid;
  place-items: center;
}
.hero-maid-halo {
  position: absolute; inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.14), transparent 60%);
  filter: blur(30px);
  animation: haloBreathe 6s ease-in-out infinite;
}
@keyframes haloBreathe {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.8; }
}
.hero-maid-svg {
  position: relative;
  width: 100%;
  max-width: 440px;
  filter: drop-shadow(0 10px 40px rgba(0,0,0,0.5));
}
.hero-maid-svg .m-line { fill: none; stroke: var(--gold); stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.hero-maid-svg .m-line-soft { fill: none; stroke: var(--gold-hair); stroke-width: 0.9; stroke-linecap: round; stroke-linejoin: round; }
.hero-maid-svg .m-fill { fill: var(--gold-soft); stroke: var(--gold); stroke-width: 1.1; }
.hero-maid-svg .m-fill-deep { fill: rgba(201,168,76,0.18); stroke: var(--gold-light); stroke-width: 0.8; }
.hero-maid-svg .m-accent { fill: var(--gold-light); }
.hero-maid-rune {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  pointer-events: none;
}
.hero-maid-rune svg { width: 72%; max-width: 340px; opacity: 0.45; animation: runeSpin 120s linear infinite; }
@keyframes runeSpin { to { transform: rotate(360deg); } }
.hero-maid-rune .r-line { fill: none; stroke: var(--gold); stroke-width: 0.8; opacity: 0.6; }

/* ---------- action-verb stat strip ---------- */
.action-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(13,15,26,0.6), rgba(13,15,26,0.3));
}
.action-stat {
  padding: 34px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.action-stat:last-child { border-right: 0; }
.action-stat-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--gold-light);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  line-height: 1;
  text-shadow: 0 0 24px rgba(201,168,76,0.25);
}
.action-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-mono-sm);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.action-stat.joke .action-stat-num { color: var(--red); text-shadow: 0 0 24px rgba(224,90,90,0.22); }

/* ---------- frame panel (shared) ---------- */
.frame-panel {
  position: relative;
  background:
    linear-gradient(180deg, rgba(26,31,53,0.55), rgba(13,15,26,0.85));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.frame-panel > .corner-tl,
.frame-panel > .corner-tr,
.frame-panel > .corner-bl,
.frame-panel > .corner-br {
  content: ""; position: absolute;
  width: 14px; height: 14px;
  border-color: var(--gold);
  pointer-events: none;
}
.frame-panel > .corner-tl { top: 6px; left: 6px; border-top: 1px solid; border-left: 1px solid; }
.frame-panel > .corner-tr { top: 6px; right: 6px; border-top: 1px solid; border-right: 1px solid; }
.frame-panel > .corner-bl { bottom: 6px; left: 6px; border-bottom: 1px solid; border-left: 1px solid; }
.frame-panel > .corner-br { bottom: 6px; right: 6px; border-bottom: 1px solid; border-right: 1px solid; }

/* ---------- problem / solution ---------- */
.ps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.ps-col { padding: 32px; }
.ps-col-head {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-mono-sm);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.ps-col.problem .ps-col-head { color: var(--red); }
.ps-col.solution .ps-col-head { color: var(--cyan); }
.ps-list { list-style: none; padding: 0; margin: 0; }
.ps-list li {
  padding: 12px 0 12px 28px;
  position: relative;
  border-bottom: 1px dashed var(--border);
  color: var(--text-prime);
}
.ps-list li:last-child { border-bottom: 0; }
.ps-list li::before {
  position: absolute; left: 0; top: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
}
.ps-col.problem .ps-list li::before { content: "✗"; color: var(--red); }
.ps-col.solution .ps-list li::before { content: "✓"; color: var(--green); }

/* ---------- plugins: heraldic tab icons + interactive mocks ---------- */
.plugins-v2 {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: stretch;
}
.plugin-tabs-v2 {
  display: flex; flex-direction: column;
  gap: 3px;
  border-right: 1px solid var(--border);
  padding-right: 12px;
}
.plugin-tab-v2 {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: transparent;
  border: 1px solid transparent;
  border-left: 2px solid transparent;
  color: var(--text-mid);
  cursor: pointer;
  text-align: left;
  font-family: 'Cinzel', serif;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  transition: all .18s ease;
}
.plugin-tab-v2:hover { color: var(--text-prime); background: rgba(201,168,76,0.04); }
.plugin-tab-v2.active {
  color: var(--gold-light);
  background: var(--gold-soft);
  border-left-color: var(--gold);
}
.plugin-tab-v2 .heraldic-icon {
  width: 22px; height: 22px;
  flex: 0 0 auto;
  color: currentColor;
}
.plugin-tab-v2 .heraldic-icon svg { width: 100%; height: 100%; stroke: currentColor; stroke-width: 1.4; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.plugin-tab-v2 .tag {
  margin-left: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.plugin-tab-v2.active .tag { color: var(--gold); }

.plugin-panel { display: none; padding: 32px; }
.plugin-panel.active { display: block; animation: panelIn .5s ease; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.plugin-panel-head {
  display: flex; align-items: baseline; gap: 16px;
  margin-bottom: 14px;
}
.plugin-panel-name {
  font-family: 'Cinzel', serif;
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  color: var(--text-prime);
}
.plugin-panel-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-mono-sm);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
}
.plugin-panel-desc { color: var(--text-mid); margin-bottom: 20px; font-size: 1.05rem; }

/* Mock container */
.plugin-mock {
  background: rgba(7,8,13,0.72);
  border: 1px solid var(--gold-hair);
  border-radius: var(--radius-sm);
  padding: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  color: var(--text-prime);
  position: relative;
}
.plugin-mock-header {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
  font-size: var(--fs-mono-sm);
  color: var(--text-mid);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.plugin-mock-header .mock-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 6px var(--green);
}
.plugin-mock-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(201,168,76,0.08);
}
.plugin-mock-row:last-child { border-bottom: 0; }
.plugin-mock-row .mock-key { color: var(--text-mid); }
.plugin-mock-row .mock-val { color: var(--gold-light); }
.plugin-mock-row .mock-pill {
  display: inline-block;
  padding: 2px 8px;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  background: rgba(78,205,196,0.12);
  color: var(--cyan);
  border: 1px solid rgba(78,205,196,0.2);
}
.plugin-mock-row .mock-pill.danger { background: rgba(224,90,90,0.12); color: var(--red); border-color: rgba(224,90,90,0.2); }
.plugin-mock-row .mock-pill.ok     { background: rgba(107,203,139,0.12); color: var(--green); border-color: rgba(107,203,139,0.2); }
.plugin-mock-row .mock-pill.premium{ background: rgba(201,168,76,0.12); color: var(--gold-light); border-color: var(--gold-hair); }

/* Interactive Group Finder slots */
.mock-slots { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.mock-slot {
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.7rem;
  color: var(--text-mid);
  background: rgba(255,255,255,0.02);
  cursor: pointer;
  transition: all .25s ease;
  user-select: none;
}
.mock-slot.filled {
  color: var(--gold-light);
  border-color: var(--gold-hair);
  background: var(--gold-soft);
  cursor: default;
}
.mock-slot:not(.filled):hover {
  color: var(--gold-light);
  border-color: var(--gold-hair);
  background: rgba(201,168,76,0.06);
}
.mock-slot.just-filled {
  animation: slotFillFlash 1.2s ease;
}
@keyframes slotFillFlash {
  0% { background: rgba(107,203,139,0.28); border-color: var(--green); transform: scale(1.05); }
  100% { background: var(--gold-soft); border-color: var(--gold-hair); transform: scale(1); }
}

/* Sentinel simulate spam */
.mock-action-row {
  margin-top: 12px; padding-top: 12px; border-top: 1px dashed rgba(201,168,76,0.12);
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
}
.mock-btn {
  padding: 7px 14px;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text-prime);
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-mono-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: all .18s ease;
}
.mock-btn:hover { border-color: var(--gold); color: var(--gold-light); background: var(--gold-soft); }
.mock-btn:active { transform: translateY(1px); }

.mock-feed {
  margin-top: 10px;
  min-height: 22px;
  font-size: 0.8rem;
  color: var(--text-mid);
  font-family: 'JetBrains Mono', monospace;
}
.mock-feed-line {
  display: flex; gap: 8px; align-items: center;
  padding: 4px 0;
  opacity: 0;
  transform: translateY(-3px);
  animation: feedIn .4s ease forwards;
}
.mock-feed-line.danger { color: var(--red); }
.mock-feed-line.ok { color: var(--green); }
@keyframes feedIn { to { opacity: 1; transform: translateY(0); } }

/* Beacon countdown */
.mock-countdown {
  display: flex; gap: 10px; align-items: baseline;
  margin-top: 8px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--gold-light);
}
.mock-countdown-val {
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  text-shadow: 0 0 14px rgba(201,168,76,0.3);
}

/* Music EQ bars */
.mock-eq {
  display: flex; align-items: flex-end; gap: 3px;
  height: 24px;
  margin-top: 10px;
}
.mock-eq-bar {
  width: 4px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  border-radius: 1px;
  animation: eq 1.1s ease-in-out infinite;
}
.mock-eq-bar:nth-child(1) { animation-delay: 0s; height: 30%; }
.mock-eq-bar:nth-child(2) { animation-delay: -0.2s; height: 70%; }
.mock-eq-bar:nth-child(3) { animation-delay: -0.4s; height: 50%; }
.mock-eq-bar:nth-child(4) { animation-delay: -0.1s; height: 90%; }
.mock-eq-bar:nth-child(5) { animation-delay: -0.3s; height: 60%; }
.mock-eq-bar:nth-child(6) { animation-delay: -0.5s; height: 40%; }
.mock-eq-bar:nth-child(7) { animation-delay: -0.15s; height: 80%; }
.mock-eq-bar:nth-child(8) { animation-delay: -0.35s; height: 55%; }
.mock-eq-bar:nth-child(9) { animation-delay: -0.05s; height: 75%; }
.mock-eq-bar:nth-child(10) { animation-delay: -0.25s; height: 45%; }
@keyframes eq {
  0%, 100% { transform: scaleY(0.35); transform-origin: bottom; }
  50%      { transform: scaleY(1); transform-origin: bottom; }
}

/* Sentinel ticking counter */
.counter-ticking { transition: color .5s ease; }
.counter-ticking.bumped { color: var(--green); }

/* ---------- marketplace ---------- */
.mp-grid-wrap { display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; }
.mp-side-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-mono-sm);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
.mp-side-head {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--text-prime);
  margin-bottom: 8px;
}
.mp-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-mono-sm);
  color: var(--text-mid);
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}
.mp-meta strong { color: var(--gold-light); font-weight: 500; }

.mp-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 22px; }
.mp-card {
  display: block;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(13,15,26,0.6);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.mp-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold-hair);
  background: rgba(26,31,53,0.8);
}
.mp-card-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.mp-card-icon {
  width: 38px; height: 38px; border-radius: 6px;
  background: linear-gradient(135deg, var(--gold-soft), rgba(78,205,196,0.08));
  border: 1px solid var(--gold-hair);
  display: grid; place-items: center;
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-weight: 700;
}
.mp-card-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 5px; }
.mp-card-name { font-family: 'Cinzel', serif; font-size: 0.95rem; letter-spacing: 0.06em; color: var(--text-prime); }
.mp-card-author { font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; letter-spacing: 0.14em; color: var(--text-dim); text-transform: uppercase; }
.mp-card-summary { font-size: 0.88rem; color: var(--text-mid); line-height: 1.5; margin-bottom: 10px; min-height: 40px; }
.mp-card-foot { display: flex; align-items: center; justify-content: space-between; font-family: 'JetBrains Mono', monospace; font-size: var(--fs-mono-sm); color: var(--text-dim); letter-spacing: 0.08em; }
.mp-card-rating { color: var(--gold-light); }
.mp-card-installs { color: var(--text-mid); }
.mp-card.empty {
  grid-column: span 2;
  display: grid; place-items: center;
  min-height: 120px;
  color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-mono-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.dev-callout { padding: 28px; }
.dev-callout-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-mono-sm);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
.dev-callout-title {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--text-prime);
  margin-bottom: 18px;
}
.dev-list { list-style: none; padding: 0; margin: 0 0 24px 0; }
.dev-list li {
  padding: 10px 0 10px 24px;
  position: relative;
  color: var(--text-prime);
  border-bottom: 1px dashed var(--border);
  font-size: 0.95rem;
}
.dev-list li:last-child { border-bottom: 0; }
.dev-list li::before {
  content: "◆"; position: absolute; left: 0; top: 10px;
  color: var(--gold); font-size: 0.6rem;
}

/* ---------- setup + pricing ---------- */
.sp-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.setup-list { list-style: none; padding: 0; margin: 0; counter-reset: step; }
.setup-step {
  display: flex; gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  counter-increment: step;
  position: relative;
}
.setup-step:last-child { border-bottom: 0; }
.setup-step-num {
  flex: 0 0 auto;
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--gold-soft);
}
.setup-step-num::before { content: counter(step, upper-roman); }
.setup-step-body h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  color: var(--text-prime);
}
.setup-step-body p { color: var(--text-mid); font-size: 0.96rem; margin: 0; line-height: 1.55; }

.pricing-cards-v2 { display: grid; grid-template-columns: 1fr; gap: 16px; }
.pricing-card-v2 {
  padding: 24px;
  border: 1px solid var(--border);
  background: rgba(13,15,26,0.6);
  border-radius: var(--radius-md);
  position: relative;
  transition: border-color .18s ease, transform .18s ease;
}
.pricing-card-v2:hover { border-color: var(--gold-hair); transform: translateY(-2px); }
.pricing-card-v2.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201,168,76,0.08), rgba(13,15,26,0.8));
  box-shadow: var(--glow-gold);
}
.pricing-card-v2.featured::before {
  content: "Most Popular";
  position: absolute; top: -10px; right: 18px;
  padding: 4px 12px;
  background: var(--gold);
  color: #1a1508;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  font-weight: 600;
}
.pricing-top-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 10px; }
.pricing-name { font-family: 'Cinzel', serif; font-size: 1.15rem; letter-spacing: 0.08em; color: var(--text-prime); }
.pricing-price { font-family: 'JetBrains Mono', monospace; font-size: 1.45rem; color: var(--gold-light); letter-spacing: 0.02em; }
.pricing-tagline { color: var(--text-mid); font-size: 0.92rem; margin-bottom: 14px; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 18px 0; }
.pricing-features li {
  padding: 5px 0 5px 22px;
  position: relative;
  color: var(--text-prime);
  font-size: 0.94rem;
}
.pricing-features li::before {
  content: "+"; position: absolute; left: 0; top: 4px;
  color: var(--green); font-family: 'JetBrains Mono', monospace;
}
.pricing-cta {
  display: inline-block;
  padding: 11px 22px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background .18s ease;
}
.pricing-cta:hover { background: var(--gold-soft); color: var(--gold-light); }
.pricing-card-v2.featured .pricing-cta {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #1a1508;
  border-color: transparent;
}
.pricing-card-v2.featured .pricing-cta:hover { box-shadow: var(--glow-gold); color: #1a1508; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(13,15,26,0.5);
  transition: border-color .18s ease;
}
.faq-item:hover { border-color: var(--gold-hair); }
.faq-item[open] { border-color: var(--gold-hair); background: rgba(26,31,53,0.7); }
.faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-family: 'Cinzel', serif;
  font-size: 1.0rem;
  letter-spacing: 0.04em;
  color: var(--text-prime);
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: 'JetBrains Mono', monospace; color: var(--gold); font-size: 1.15rem; transition: transform .18s ease;
}
.faq-item[open] summary::after { content: "×"; }
.faq-item .faq-body { padding: 0 22px 20px; color: var(--text-mid); line-height: 1.6; }

/* ---------- footer ---------- */
.footer-v2 {
  padding: 48px 24px 40px;
  border-top: 1px solid var(--border);
  background: rgba(7,8,13,0.8);
}
.footer-v2-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
}
.footer-brand { font-family: 'Cinzel', serif; letter-spacing: 0.18em; color: var(--gold-light); }
.footer-links {
  display: flex; gap: 24px; flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-mono-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-links a { color: var(--text-mid); }
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { font-family: 'JetBrains Mono', monospace; font-size: var(--fs-mono-sm); color: var(--text-dim); letter-spacing: 0.1em; }

/* ---------- cookie banner ---------- */
.cookie-banner-v2 {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  max-width: 560px; margin: 0 auto;
  background: rgba(13,15,26,0.96);
  border: 1px solid var(--gold-hair);
  padding: 14px 18px;
  color: var(--text-prime);
  font-size: 0.9rem;
  border-radius: 6px;
  gap: 14px;
  align-items: center;
  z-index: 200;
  backdrop-filter: blur(8px);
  display: none; /* flipped to flex by JS */
}
.cookie-banner-v2.open { display: flex; }
.cookie-banner-v2 .cookie-buttons { display: flex; gap: 8px; margin-left: auto; }
.cookie-banner-v2 .cookie-btn {
  padding: 7px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
}
.cookie-banner-v2 .cookie-btn.decline { background: transparent; border: 1px solid var(--border); color: var(--text-mid); }
.cookie-banner-v2 .cookie-btn.accept  { background: var(--gold); border: 1px solid var(--gold); color: #1a1508; font-weight: 700; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-maid { max-width: 360px; margin: 0 auto; }
  .plugins-v2 { grid-template-columns: 1fr; }
  .plugin-tabs-v2 { flex-direction: row; flex-wrap: wrap; border-right: 0; padding-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 12px; }
  .plugin-tab-v2 { flex: 1 1 160px; border-left: 0; border-bottom: 2px solid transparent; }
  .plugin-tab-v2.active { border-left: 0; border-bottom-color: var(--gold); }
  .mp-grid-wrap { grid-template-columns: 1fr; }
  .sp-grid { grid-template-columns: 1fr; gap: 48px; }
  .faq-grid { grid-template-columns: 1fr; }
  .action-stats { grid-template-columns: repeat(2, 1fr); }
  .action-stat { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 16px; }
  .action-stat:nth-child(2n) { border-right: 0; }
  .action-stat:nth-last-child(-n+2) { border-bottom: 0; }
  .ps-grid { grid-template-columns: 1fr; gap: 16px; }
  .nav-links { display: none; }
  .section { padding: 64px 0; }
}

@media (max-width: 600px) {
  .mp-cards { grid-template-columns: 1fr; }
  .mp-card.empty { grid-column: span 1; }
  .ps-col { padding: 20px; }
  .section { padding: 48px 0; }
  .container { padding: 0 16px; }
  .hero-v2 { padding: 48px 0 32px; }
  .worklog-window { height: 72px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .hero-title .accent, .live-dot, .hero-maid-halo, .hero-maid-rune svg, .mock-eq-bar { animation: none !important; }
  .worklog-list { transition: none !important; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================================
   Conversion-focused additions
   ============================================================================ */

/* Trust line under primary CTA — kills "is this free?" objection instantly */
.trust-line {
  margin-top: 8px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-mono-sm);
  letter-spacing: 0.14em;
  color: var(--text-mid);
  padding: 6px 12px;
  border-radius: 3px;
  background: rgba(107,203,139,0.05);
  border: 1px solid rgba(107,203,139,0.18);
}
.trust-line::before {
  content: "✓";
  color: var(--green);
  font-weight: bold;
}

/* ---------- Discord-embed hero card (right side of hero, under maid) ---------- */
.hero-discord {
  max-width: 420px;
  margin: 24px auto 0;
  border-radius: 6px;
  background: #2b2d31; /* Discord dark */
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  font-family: ui-sans-serif, system-ui, 'Segoe UI', sans-serif;
  font-size: 0.84rem;
  color: #dbdee1;
  position: relative;
  z-index: 2;
}
.disc-msg-header {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px 4px;
}
.disc-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: grid; place-items: center;
  color: #1a1508; font-family: 'Cinzel', serif; font-weight: 700; font-size: 14px;
  flex: 0 0 auto;
}
.disc-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.disc-author {
  font-weight: 600; color: #fff; font-size: 0.92rem;
}
.disc-bot-badge {
  font-size: 0.74rem; letter-spacing: 0.08em;
  background: #5865f2; color: #fff; padding: 1px 5px; border-radius: 3px;
  margin-left: 6px; font-weight: 600; text-transform: uppercase;
  vertical-align: middle;
}
.disc-ts { margin-left: 8px; font-size: 0.7rem; color: #949ba4; }
.disc-body { padding: 0 12px 10px; color: #dbdee1; font-size: 0.88rem; }
.disc-embed {
  margin: 4px 12px 12px 12px;
  display: flex;
  background: #1e1f22;
  border-radius: 4px;
  overflow: hidden;
  border-left: 4px solid var(--gold);
}
.disc-embed-body { padding: 10px 14px; flex: 1; }
.disc-embed-title {
  font-weight: 600; color: #fff; font-size: 0.9rem; margin-bottom: 4px;
}
.disc-embed-desc { color: #dbdee1; font-size: 0.82rem; margin-bottom: 10px; }
.disc-embed-fields {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px;
  margin-bottom: 10px;
}
.disc-embed-field-label { color: #b5bac1; font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 2px; }
.disc-embed-field-val { color: #fff; font-size: 0.82rem; }
.disc-embed-foot { color: #949ba4; font-size: 0.7rem; padding-top: 6px; border-top: 1px solid #2b2d31; }
.disc-embed-btn-row { display: flex; gap: 6px; margin-top: 8px; }
.disc-embed-btn {
  padding: 5px 12px;
  font-size: 0.75rem; font-weight: 600;
  border-radius: 3px;
  background: #248046; color: #fff; border: none;
  cursor: pointer;
}
.disc-embed-btn.secondary { background: #4e5058; }

/* In hero, stack maid + embed vertically on narrow */
.hero-maid-wrap { display: flex; flex-direction: column; align-items: center; gap: 20px; }

/* ---------- Mini-FAQ row (objection-handling between hero + plugins) ---------- */
.mini-faq {
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.03), transparent);
}
.mini-faq .mini-faq-head {
  text-align: center;
  margin-bottom: 32px;
}
.mini-faq h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  letter-spacing: 0.06em;
  color: var(--text-prime);
}
.mini-faq-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.mini-faq-card {
  background: rgba(13,15,26,0.6);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 22px;
}
.mini-faq-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.mini-faq-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

/* ---------- Competitor comparison table ---------- */
.compare-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(13,15,26,0.5);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Crimson Pro', serif;
}
.compare-table thead th {
  padding: 20px 18px;
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-align: center;
  color: var(--text-mid);
  background: rgba(7,8,13,0.6);
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}
.compare-table thead th.ours {
  color: var(--gold-light);
  background: linear-gradient(180deg, rgba(201,168,76,0.1), rgba(13,15,26,0.6));
  border-bottom: 1px solid var(--gold);
  position: relative;
}
.compare-table thead th.ours::after {
  content: "";
  position: absolute; left: 0; right: 0; top: -1px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.compare-table thead th:first-child { text-align: left; color: var(--text-dim); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; }
.compare-table td {
  padding: 16px 18px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--text-prime);
  font-size: 0.95rem;
}
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table tbody td:first-child {
  text-align: left;
  color: var(--text-mid);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.compare-table tbody td.ours {
  background: rgba(201,168,76,0.04);
  color: var(--gold-light);
}
.compare-table .check { color: var(--green); font-weight: bold; }
.compare-table .x { color: var(--red); opacity: 0.7; }
.compare-table .partial { color: var(--text-dim); font-style: italic; font-size: 0.85rem; }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.testimonial-card {
  padding: 24px;
  border: 1px solid var(--border);
  background: rgba(13,15,26,0.55);
  border-radius: var(--radius-md);
  position: relative;
}
.testimonial-card::before {
  content: "\201C";
  position: absolute; top: -12px; left: 16px;
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}
.testimonial-quote {
  color: var(--text-prime);
  font-size: 1.0rem;
  line-height: 1.6;
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-author-row {
  display: flex; align-items: center; gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), rgba(78,205,196,0.08));
  border: 1px solid var(--gold-hair);
  display: grid; place-items: center;
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.9rem;
  flex: 0 0 auto;
}
.testimonial-author {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  color: var(--text-prime);
  letter-spacing: 0.04em;
}
.testimonial-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- Pricing comparison table (replaces stacked cards in wide view) ---------- */
.pricing-compare {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(13,15,26,0.5);
  overflow: hidden;  /* clip any right-edge column spill (e.g. Governess) */
}
.pricing-compare-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;  /* respect column widths, don't expand to content */
}
.pricing-compare-table colgroup col.feat { width: 26%; }
.pricing-compare-table colgroup col.tier { width: 24.66%; }
.pricing-compare-table th {
  padding: 22px 18px;
  font-family: 'Cinzel', serif;
  text-align: center;
  background: rgba(7,8,13,0.6);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.pricing-compare-table th.feat-col {
  text-align: left;
  background: transparent;
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.pricing-compare-table th.tier-col {
  color: var(--text-prime);
  font-size: 1rem;
  letter-spacing: 0.08em;
  position: relative;
}
.pricing-compare-table th.tier-col.featured {
  background: linear-gradient(180deg, rgba(201,168,76,0.12), rgba(13,15,26,0.6));
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold);
  padding-top: 48px;  /* room for the "Most Popular" badge above the tier name */
}
.pricing-compare-table th.tier-col.featured::after {
  content: "Most Popular";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1a1508;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  padding: 4px 14px;
  border-radius: 3px;
  white-space: nowrap;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(201,168,76,0.25);
}
.pricing-compare-table th.tier-col .tier-price {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.2rem;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  margin-top: 8px;
}
.pricing-compare-table th.tier-col .tier-tagline {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  color: var(--text-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 400;
}
.pricing-compare-table td {
  padding: 14px 18px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--text-prime);
  font-size: 0.92rem;
}
.pricing-compare-table tbody td:first-child {
  text-align: left;
  color: var(--text-mid);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pricing-compare-table tr:last-child td { border-bottom: 0; }
.pricing-compare-table td.featured-cell { background: rgba(201,168,76,0.05); color: var(--gold-light); }
.pricing-compare-table .cta-cell { padding: 20px 14px; }
.pricing-compare-table .cta-cell .pricing-cta {
  display: block;
  width: 100%;
  padding: 11px 8px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  line-height: 1.25;
  box-sizing: border-box;
  text-align: center;
  /* Let text wrap naturally — the cell is the constraint, not the text */
  white-space: normal;
  word-spacing: 0.05em;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Sticky bottom conversion bar ---------- */
.sticky-cta {
  position: fixed;
  bottom: -80px;
  left: 0; right: 0;
  z-index: 150;
  background: rgba(13,15,26,0.92);
  border-top: 1px solid var(--gold-hair);
  backdrop-filter: blur(10px);
  padding: 14px 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px;
  transition: bottom 0.4s cubic-bezier(.3,.8,.4,1);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.4);
}
.sticky-cta.visible { bottom: 0; }
.sticky-cta-text {
  font-family: 'Cinzel', serif;
  color: var(--text-prime);
  font-size: 1rem;
  letter-spacing: 0.06em;
}
.sticky-cta-actions { display: flex; gap: 10px; align-items: center; }
.sticky-cta-dismiss {
  background: transparent; border: 0;
  color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 10px;
}
.sticky-cta-dismiss:hover { color: var(--text-mid); }

/* ---------- Exit-intent overlay ---------- */
.exit-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(7,8,13,0.82);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.exit-overlay.open { display: flex; opacity: 1; }
.exit-modal {
  max-width: 480px;
  background: linear-gradient(180deg, var(--abyss), var(--void));
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  box-shadow: var(--glow-gold-strong);
}
.exit-modal-close {
  position: absolute; top: 10px; right: 12px;
  background: transparent; border: 0; color: var(--text-mid);
  font-size: 1.4rem; cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}
.exit-modal-close:hover { color: var(--gold); }
.exit-modal h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.exit-modal p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 28px;
}
.exit-modal .btn { min-width: 220px; }

/* ---------- Footer live ticker ---------- */
.footer-ticker {
  max-width: 1200px;
  margin: 0 auto 24px;
  padding: 0 24px;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-mono-sm);
  color: var(--text-mid);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-ticker strong { color: var(--gold-light); font-weight: 500; }
.footer-ticker .dot {
  display: inline-block;
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--gold-dim);
  margin: 0 10px;
  vertical-align: middle;
}

/* ---------- Action stat count-up ---------- */
.action-stat-num { font-variant-numeric: tabular-nums; }
.action-stat-num[data-countup-target] { opacity: 0.8; transition: opacity .4s ease; }
.action-stat-num[data-countup-target].counted { opacity: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .mini-faq-cards { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
  .compare-wrap { overflow-x: auto; }
  .compare-table { min-width: 680px; }
  .pricing-compare { overflow-x: auto; }
  .pricing-compare-table { min-width: 720px; }
  .sticky-cta { padding: 10px 14px; }
  .sticky-cta-text { font-size: 0.88rem; }
  .hero-discord { max-width: 100%; }
}

@media (max-width: 600px) {
  .trust-line { font-size: 0.64rem; padding: 5px 10px; }
  .exit-modal { padding: 28px 22px; }
  .exit-modal h2 { font-size: 1.5rem; }
}
