:root {
  --bg: #050816;
  --bg-alt: #0b1020;
  --bg-soft: #12172b;
  --card-bg: rgba(12, 18, 40, 0.95);
  --card-border: rgba(255, 255, 255, 0.06);
  --primary: #f472b6;
  --primary-soft: rgba(244, 114, 182, 0.14);
  --primary-strong: #fb5aa0;
  --accent: #38bdf8;
  --text: #f9fafb;
  --muted: #9ca3af;
  --danger: #fb7185;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.6);
  --shadow-subtle: 0 10px 30px rgba(15, 23, 42, 0.8);
  --blur: 24px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #1f2937 0, #020617 42%, #000 100%);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-attachment: fixed;
}

/* iOS Safari: `background-attachment: fixed` can cause blank/white repaint gaps.
   Disable only on iOS (iPhone/iPad), keep effect elsewhere. */
@supports (-webkit-touch-callout: none) {
  body.desiree-landing-page {
    background-attachment: scroll;
  }
}

/* Some themes/plugins lock scroll via `overflow: hidden` on html/body. */
html.desiree-landing-dark,
html.desiree-landing-light,
body.desiree-landing-page {
  height: auto !important;
  min-height: 100% !important;
  overflow: visible !important;
}

body.desiree-landing-page {
  overflow-y: auto !important;
  overscroll-behavior-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
}

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

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

/* WP/theme guard rails (keep index.html layout intact) */
body.desiree-landing-page .page-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 20px 72px;
}

@media (min-width: 1200px) {
  body.desiree-landing-page .page-shell {
    max-width: 1180px;
  }
}

/* Landing homepage personas grid: larger cards, fluid columns (click-to-chat friendly).
   NOTE: Do not apply on the full Personas directory template. */
body.desiree-landing-page:not(.page-template-page-desiree-personas-php) #personasGrid.personas-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)) !important;
  gap: 16px !important;
  overflow-x: visible !important;
  padding-bottom: 8px !important;
}

@media (min-width: 900px) {
  body.desiree-landing-page:not(.page-template-page-desiree-personas-php) #personasGrid.personas-grid {
    gap: 18px !important;
  }
}

body.desiree-landing-page:not(.page-template-page-desiree-personas-php) #personasGrid.personas-grid .persona-media {
  height: 200px !important;
}

body.desiree-landing-page:not(.page-template-page-desiree-personas-php) #personasGrid.personas-grid .persona-featured .persona-media {
  height: 240px !important;
}

@media (min-width: 768px) {
  body.desiree-landing-page:not(.page-template-page-desiree-personas-php) #personasGrid.personas-grid .persona-media {
    height: 220px !important;
  }

  body.desiree-landing-page:not(.page-template-page-desiree-personas-php) #personasGrid.personas-grid .persona-featured .persona-media {
    height: 300px !important;
  }
}

body.desiree-landing-page:not(.page-template-page-desiree-personas-php) #personasGrid.personas-grid .persona-featured {
  grid-column: span 2 !important;
}

@media (max-width: 620px) {
  body.desiree-landing-page:not(.page-template-page-desiree-personas-php) #personasGrid.personas-grid .persona-featured {
    grid-column: span 1 !important;
  }
}

body.desiree-landing-page:not(.page-template-page-desiree-personas-php) #personasGrid.personas-grid .persona-card-body {
  padding: 11px 12px 12px !important;
  font-size: 13px !important;
}

body.desiree-landing-page:not(.page-template-page-desiree-personas-php) #personasGrid.personas-grid .persona-name {
  font-size: 15px !important;
}

/* ------------------------------------------------------------------ */
/* Minimal theme bleed guards (avoid overriding index.html typography). */
/* ------------------------------------------------------------------ */
body.desiree-landing-page {
  color: var(--text) !important;
}

body.desiree-landing-page h1,
body.desiree-landing-page h2,
body.desiree-landing-page h3,
body.desiree-landing-page h4,
body.desiree-landing-page h5,
body.desiree-landing-page h6 {
  color: var(--text) !important;
}

body.desiree-landing-page a {
  color: inherit !important;
  text-decoration: none !important;
}

/* Ensure hero headline uses the exact typeface from index.html */
body.desiree-landing-page .hero-title {
  font-family: "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif !important;
  font-weight: 700 !important;
  color: var(--text) !important;
}

/* Hard layout lock to match newui/index.html (override theme global spacing) */
body.desiree-landing-page .page-shell {
  max-width: 1120px !important;
  margin: 0 auto !important;
  padding: 16px 20px 72px !important;
}

@media (min-width: 1200px) {
  body.desiree-landing-page .page-shell {
    max-width: 1180px !important;
  }
}

@media (max-width: 1024px) {
  body.desiree-landing-page .page-shell {
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px)) !important;
  }
}

body.desiree-landing-page section {
  margin-top: 40px !important;
}

body.desiree-landing-page header {
  border-bottom: 1px solid rgba(148, 163, 184, 0.12) !important;
}

body.desiree-landing-page .hero {
  gap: 32px !important;
  margin-top: 18px !important;
}

@media (max-width: 900px) {
  body.desiree-landing-page .hero {
    margin-top: 20px !important;
  }
}

body.desiree-landing-page .hero-card {
  padding: 18px 18px 16px !important;
}

body.desiree-landing-page .hero-side-info {
  padding: 12px 12px 11px !important;
}

body.desiree-landing-page .persona-card-body {
  padding: 9px 9px 9px !important;
}

body.desiree-landing-page .feature-card {
  padding: 12px 12px 11px !important;
}

body.desiree-landing-page .plan-card {
  padding: 11px 11px 10px !important;
}

body.desiree-landing-page .step-card {
  padding: 11px 11px 10px !important;
}

body.desiree-landing-page .quote-card {
  padding: 14px 14px 12px !important;
}

body.desiree-landing-page .privacy-card {
  padding: 14px 14px 12px !important;
}

body.desiree-landing-page .create-card {
  padding: 16px 16px 14px !important;
}

body.desiree-landing-page .cta-band {
  padding: 16px 16px 14px !important;
  margin-top: 48px !important;
}

body.desiree-landing-page footer {
  margin-top: 40px !important;
  padding-top: 24px !important;
}

/* Header color lock (override WP theme link styles) */
body.desiree-landing-page header .nav {
  color: var(--muted) !important;
}

body.desiree-landing-page header .nav-links a {
  color: inherit !important;
}

body.desiree-landing-page header .brand-text-sub {
  color: var(--muted) !important;
}

body.desiree-landing-page header .brand-text-main {
  color: var(--text) !important;
}

body.desiree-landing-page header .brand {
  color: var(--text) !important;
}

body.desiree-landing-page header .brand-logo {
  background: radial-gradient(circle at 20% 0, #f97316 0, #f472b6 40%, #38bdf8 90%) !important;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.7), 0 12px 25px rgba(15, 23, 42, 0.9) !important;
  border-radius: 12px !important;
  width: 32px !important;
  height: 32px !important;
  color: var(--text) !important;
}

body.desiree-landing-page header .badge-age {
  color: var(--muted) !important;
}

body.desiree-landing-page header .btn.btn-outline {
  color: var(--muted) !important;
}

/* Hide legacy floating toggle if injected by theme/plugin */
body.desiree-landing-page #desiree-theme-toggle,
body.desiree-landing-page .desiree-theme-toggle {
  display: none !important;
}

/* Hide non-index overlays/widgets on landing */
body.desiree-landing-page #age-verification-modal,
body.desiree-landing-page .age-verification-overlay,
body.desiree-landing-page .age-verification-modal {
  display: none !important;
}

/* Layout containers */
.page-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 20px 72px;
}

@media (min-width: 1200px) {
  .page-shell {
    max-width: 1180px;
  }
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: linear-gradient(to bottom, rgba(5, 6, 23, 0.96), rgba(5, 6, 23, 0.78), transparent);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 20px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: radial-gradient(circle at 20% 0, #f97316 0, #f472b6 40%, #38bdf8 90%);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.7), 0 12px 25px rgba(15, 23, 42, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.brand-text-main {
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 14px;
  text-transform: uppercase;
}

.brand-text-sub {
  font-size: 11px;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  transition: width 0.18s ease-out;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.btn {
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13px;
  border: 1px solid transparent;
  cursor: pointer;
  background: transparent;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  white-space: nowrap;
}

/* WP themes often ship a global `.btn` that breaks our layout on mobile. */
body.desiree-landing-page .btn {
  display: inline-flex !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  line-height: normal !important;
}

body.desiree-landing-page .btn-primary {
  color: #0b1120 !important;
}

body.desiree-landing-page .btn-outline,
body.desiree-landing-page .btn-subtle {
  color: var(--muted) !important;
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.6);
  color: var(--muted);
  background: rgba(15, 23, 42, 0.7);
}

.btn-outline:hover {
  border-color: rgba(248, 250, 252, 0.9);
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.95);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-strong), #f97316);
  color: #0b1120;
  border: none;
  box-shadow: 0 14px 30px rgba(248, 113, 113, 0.48);
}

.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn-primary.btn-lg {
  padding: 12px 20px;
  font-size: 14px;
  box-shadow: 0 18px 38px rgba(248, 113, 113, 0.56);
  position: relative;
  overflow: hidden;
}

.btn-primary.btn-lg::after {
  content: "";
  position: absolute;
  inset: -60% -40%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.22), transparent 55%);
  transform: translateX(-20%) rotate(8deg);
  opacity: 0.0;
  transition: opacity 0.2s ease-out;
  pointer-events: none;
}

.btn-primary.btn-lg:hover::after {
  opacity: 1;
}

@keyframes ctaGlow {
  0% { box-shadow: 0 18px 38px rgba(248, 113, 113, 0.52); }
  50% { box-shadow: 0 22px 48px rgba(236, 72, 153, 0.62); }
  100% { box-shadow: 0 18px 38px rgba(248, 113, 113, 0.52); }
}

.cta-glow {
  animation: ctaGlow 4.8s ease-in-out infinite;
}

.btn-subtle {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.4);
  color: #e5e7eb;
}

.badge-age {
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.16);
  padding: 3px 10px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(15, 23, 42, 0.94);
  color: #e5e7eb;
}

.nav-mobile-toggle {
  display: none;
  border: none;
  background: none;
  color: var(--text);
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .nav-mobile-toggle {
    display: inline-flex;
  }
}

.nav-mobile {
  display: none;
  padding: 0 20px 12px;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.98));
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.nav-mobile.open {
  display: block;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  margin: 8px 0;
  color: var(--muted);
}

.nav-mobile-cta {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.nav-mobile-cta--chat-first {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.nav-mobile-cta--chat-first .nav-mobile-cta-chat {
  width: 100%;
  justify-content: center;
}

.nav-mobile-cta-row2 {
  display: flex;
  gap: 8px;
  width: 100%;
}

.nav-mobile-cta-row2 .btn {
  flex: 1;
  justify-content: center;
}

.nav-cta-plans {
  padding: 8px 12px;
  font-size: 12px;
}

/* Hero */
main {
  flex: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: start;
  margin-top: 18px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 20px;
  }
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.86);
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 4px 10px 4px 4px;
  font-size: 11px;
  color: var(--muted);
  width: fit-content;
}

.hero-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, rgba(248, 113, 113, 0.55) 0, rgba(236, 72, 153, 0.55) 35%, rgba(56, 189, 248, 0.65) 100%);
  color: #0b1120;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-title {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: clamp(2.4rem, 4vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.hero-title span.accent {
  background: linear-gradient(120deg, #f97316, var(--primary-strong), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--muted);
  max-width: 460px;
}

body.desiree-landing-page .hero-subtitle {
  color: var(--muted) !important;
}

.hero-subtitle strong {
  color: #e5e7eb;
  font-weight: 500;
}

.hero-primary-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

body.desiree-landing-page .hero-primary-ctas {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

body.desiree-landing-page .hero-primary-ctas .btn {
  flex: 0 0 auto !important;
}

@media (max-width: 640px) {
  body.desiree-landing-page .hero-primary-ctas--chat-first .hero-cta-chat {
    flex: 1 1 100% !important;
    width: 100% !important;
    justify-content: center !important;
  }
}

.hero-primary-ctas .btn-subtle {
  padding: 10px 16px;
  font-size: 13px;
}

.hero-card-cta .btn {
  justify-content: center;
  text-decoration: none !important;
}

.hero-secondary-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 4px;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 11px;
  color: var(--muted);
}

.hero-trust strong {
  font-size: 12px;
  color: #e5e7eb;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
  font-size: 11px;
  color: var(--muted);
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-meta-item span.label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  color: #6b7280;
}

.hero-meta-item span.value {
  font-size: 13px;
  color: #e5e7eb;
}

/* Above-the-fold companion strip */
.hero-avatar-strip {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  max-width: 540px;
}

.hero-avatar-strip-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: #9ca3af;
}

.hero-avatar-strip-title strong {
  color: #e5e7eb;
  font-weight: 600;
}

.hero-avatars {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.hero-avatar-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 9px 5px 5px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.55);
  cursor: pointer;
  transition: transform 0.14s ease-out, border-color 0.14s ease-out;
  font-size: 11px;
  color: #e5e7eb;
}

.hero-avatar-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(248, 113, 113, 0.7);
}

.hero-avatar-pill img {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(248, 250, 252, 0.7);
}

.hero-avatar-pill span.meta {
  color: #9ca3af;
  font-size: 10px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-side-info {
  border-radius: 18px;
  padding: 12px 12px 11px;
  background: rgba(12, 18, 40, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-subtle);
}

.hero-side-info .hero-meta {
  margin-top: 10px;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 18px 18px 16px;
  background: radial-gradient(circle at top left, rgba(248, 113, 113, 0.16), rgba(15, 23, 42, 0.96));
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.35);
  overflow: hidden;
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.hero-card-ai {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-avatar {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(248, 250, 252, 0.8);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.8);
}

.hero-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-ai-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-ai-name {
  font-weight: 600;
  font-size: 14px;
}

.hero-ai-tagline {
  font-size: 11px;
  color: var(--muted);
}

.hero-ai-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.chip {
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 10px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.chip-soft {
  background: rgba(248, 113, 113, 0.12);
  border-color: rgba(248, 113, 113, 0.5);
  color: #fecaca;
}

.hero-card-status {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 11px;
  color: var(--muted);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(22, 163, 74, 0.9);
}

@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55), 0 0 12px rgba(22, 163, 74, 0.85); }
  70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0.0), 0 0 12px rgba(22, 163, 74, 0.85); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.0), 0 0 12px rgba(22, 163, 74, 0.85); }
}

.pulse-dot {
  animation: pulseRing 2.3s ease-out infinite;
}

.hero-card-main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 14px;
  align-items: start;
}

@media (max-width: 600px) {
  .hero-card-main {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hero-card-preview {
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.8), #020617);
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
}

.hero-card-preview img {
  width: 100%;
  height: 124px;
  object-fit: cover;
  object-position: top center;
}

.hero-card-preview-body {
  padding: 10px 11px 9px;
}

.hero-card-preview-body h3 {
  font-size: 13px;
  margin: 0 0 4px;
  font-weight: 600;
}

.hero-card-preview-body p {
  margin: 0;
  font-size: 11px;
  color: var(--muted);
}

.hero-card-messages {
  border-radius: 18px;
  padding: 10px 11px;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), rgba(15, 23, 42, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 168px;
  overflow: hidden;
}

.msg-row {
  display: flex;
  gap: 7px;
  align-items: flex-end;
}

.msg-row.me {
  justify-content: flex-end;
}

.msg-bubble {
  border-radius: 14px;
  padding: 6px 10px;
  font-size: 11px;
  max-width: 80%;
  line-height: 1.35;
}

.msg-ai {
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.msg-me {
  background: rgba(248, 113, 113, 0.18);
  border: 1px solid rgba(248, 113, 113, 0.7);
}

.msg-meta {
  font-size: 9px;
  color: #9ca3af;
  margin-top: 2px;
}

.hero-card-footer {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
}

.hero-card-input {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #9ca3af;
}

.hero-card-input span {
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-card-cta {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-card-cta .btn {
  padding: 6px 11px;
  font-size: 11px;
  box-shadow: none;
}

.hero-floating {
  position: absolute;
  right: -6px;
  bottom: -10px;
  width: 180px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.97);
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.95);
  padding: 9px 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 10px;
}

.hero-floating-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}

.hero-floating-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 9px;
  color: #6b7280;
}

.hero-floating-value {
  font-size: 11px;
  color: #e5e7eb;
}

.hero-floating-meter {
  position: relative;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  overflow: hidden;
}

.hero-floating-meter span {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 68%;
  border-radius: 999px;
  background: linear-gradient(90deg, #22c55e, #eab308, #f97316, #ef4444);
}

@media (max-width: 900px) {
  .hero-floating {
    display: none;
  }
}

/* Sections */
section {
  margin-top: 40px;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  color: #6b7280;
  margin-bottom: 4px;
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 18px;
}

.section-title-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .section-title-row {
    flex-direction: column;
    align-items: stretch;
  }

  .section-title-ctas {
    align-items: stretch;
    width: 100%;
  }

  .section-title-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

.section-title {
  font-size: 20px;
  font-weight: 600;
}

.section-description {
  font-size: 13px;
  color: var(--muted);
  max-width: 440px;
}

/* Personas */
.personas-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  margin: -6px 0 12px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}

.filter-chip {
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.42);
  color: #e5e7eb;
  cursor: pointer;
  transition: transform 0.14s ease-out, border-color 0.14s ease-out, background 0.14s ease-out;
  user-select: none;
  letter-spacing: 0.02em;
}

.filter-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(248, 113, 113, 0.7);
}

.filter-chip.active {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.28), rgba(56, 189, 248, 0.18));
  border-color: rgba(248, 113, 113, 0.75);
}

.personas-toolbar-right {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
}

.personas-count {
  border-radius: 999px;
  padding: 6px 10px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.65);
}

.personas-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  overflow-x: visible;
  padding-bottom: 4px;
}

@media (max-width: 1024px) {
  .personas-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow-x: visible;
  }
}

@media (max-width: 640px) {
  .personas-grid {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }
  .persona-media {
    height: 160px;
  }
  .persona-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
}

.persona-card {
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-subtle);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out, border-color 0.16s ease-out;
}

.persona-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.95);
  border-color: rgba(248, 113, 113, 0.75);
}

.persona-media {
  position: relative;
  height: 170px;
  overflow: hidden;
}

.persona-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(1.05);
}

.persona-chip {
  position: absolute;
  left: 9px;
  bottom: 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.86);
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 3px 8px;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.persona-card-body {
  padding: 9px 9px 9px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
}

.persona-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 10px;
  color: #9ca3af;
  margin-top: -2px;
}

.persona-stat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  padding: 3px 7px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.65);
}

.persona-stat strong {
  color: #e5e7eb;
  font-weight: 600;
  font-size: 10px;
}

.persona-featured {
  grid-column: span 2;
  position: relative;
  min-height: 100%;
}

@media (max-width: 1024px) {
  .persona-featured {
    grid-column: span 3;
  }
}

@media (max-width: 640px) {
  .persona-featured {
    grid-column: span 2;
  }
}

.persona-featured .persona-media {
  height: 190px;
}

.persona-featured::before {
  content: "Featured tonight";
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: rgba(12, 18, 40, 0.9);
  border: 1px solid rgba(248, 113, 113, 0.6);
  color: #fecaca;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.persona-featured .persona-chip {
  bottom: 10px;
  left: 10px;
}

/* Create your AI */
.create-card {
  margin-top: 14px;
  border-radius: 22px;
  padding: 16px 16px 14px;
  background: radial-gradient(circle at top left, rgba(168, 85, 247, 0.16), rgba(56, 189, 248, 0.14), rgba(12, 18, 40, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

@media (max-width: 900px) {
  .create-card {
    grid-template-columns: minmax(0, 1fr);
  }
}

.create-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
}

.create-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  max-width: 560px;
}

.create-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .create-card-actions {
    justify-content: flex-start;
  }
}

/* NSFW modes slider (visual) */
.mode-scale {
  margin-top: 8px;
  border-radius: 16px;
  padding: 10px 10px 9px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.7);
}

.mode-scale-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
}

.mode-track {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.26);
  overflow: hidden;
}

.mode-track span {
  position: absolute;
  inset: 0;
  width: 58%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.9), rgba(236, 72, 153, 0.9), rgba(249, 115, 22, 0.95));
  opacity: 0.9;
}

.mode-dots {
  margin-top: 7px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.mode-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.85);
}

.mode-dot.active {
  border-color: rgba(248, 113, 113, 0.7);
  background: rgba(248, 113, 113, 0.22);
  box-shadow: 0 0 14px rgba(236, 72, 153, 0.55);
}

.persona-name-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}

.persona-name {
  font-weight: 600;
  font-size: 13px;
}

.persona-meta {
  font-size: 11px;
  color: #9ca3af;
}

.persona-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.persona-tag {
  border-radius: 999px;
  padding: 2px 7px;
  font-size: 10px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: #e5e7eb;
}

.persona-tags.persona-excerpt-wrap {
  display: block;
}

.persona-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 3;
  max-height: calc(1.45em * 3);
  word-break: break-word;
  font-size: 11px;
  line-height: 1.45;
  color: #e5e7eb;
}

.persona-cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  font-size: 11px;
}

.persona-cta-row .btn {
  padding: 5px 9px;
  font-size: 11px;
  box-shadow: none;
}

.persona-cta-row span {
  color: var(--muted);
  font-size: 10px;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.feature-card {
  border-radius: 18px;
  padding: 12px 12px 11px;
  background: rgba(12, 18, 40, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
}

.feature-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(248, 113, 113, 0.18);
  border: 1px solid rgba(248, 113, 113, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-bottom: 2px;
}

.feature-title {
  font-weight: 600;
  font-size: 13px;
}

.feature-body {
  color: var(--muted);
}

.feature-meta {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 4px;
}

/* Pricing */
.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .pricing-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

.pricing-copy {
  font-size: 13px;
  color: var(--muted);
}

.pricing-copy p {
  margin-top: 0;
  margin-bottom: 6px;
}

.pricing-copy strong {
  color: #e5e7eb;
}

.pricing-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.compliance-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.compliance-badge {
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: #9ca3af;
}

.compliance-badge.good {
  border-color: rgba(34, 197, 94, 0.55);
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.10);
}

.compliance-badge.warn {
  border-color: rgba(249, 115, 22, 0.55);
  color: #fed7aa;
  background: rgba(249, 115, 22, 0.10);
}

.pricing-pill {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: var(--muted);
}

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

@media (max-width: 760px) {
  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.plan-card {
  border-radius: 18px;
  padding: 11px 11px 10px;
  background: rgba(12, 18, 40, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.35);
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 12px;
  box-shadow: var(--shadow-subtle);
}

.plan-card.popular {
  background: radial-gradient(circle at top, rgba(248, 113, 113, 0.14), rgba(12, 18, 40, 0.98));
  border-color: rgba(248, 113, 113, 0.75);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.98);
  position: relative;
}

.plan-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
}

.plan-pill {
  border-radius: 999px;
  padding: 3px 7px;
  font-size: 10px;
  background: rgba(248, 113, 113, 0.16);
  border: 1px solid rgba(248, 113, 113, 0.7);
  color: #fecaca;
}

.plan-name {
  font-weight: 600;
  font-size: 14px;
}

.plan-price {
  font-size: 18px;
  font-weight: 600;
}

.plan-price span {
  font-size: 11px;
  color: #9ca3af;
}

.plan-body {
  color: var(--muted);
  font-size: 12px;
}

.plan-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  font-size: 11px;
  color: #9ca3af;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 4px 0 2px;
  font-size: 11px;
  color: #e5e7eb;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
}

.plan-features li::before {
  content: "✓";
  color: #22c55e;
  font-size: 10px;
}

.plan-card .btn {
  margin-top: 4px;
  width: 100%;
  justify-content: center;
  padding: 6px 0;
  font-size: 12px;
}

/* How it works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .steps-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.step-card {
  border-radius: 18px;
  padding: 11px 11px 10px;
  background: rgba(12, 18, 40, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.step-index {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #e5e7eb;
  margin-bottom: 2px;
  background: rgba(15, 23, 42, 0.96);
}

.step-title {
  font-weight: 600;
  font-size: 13px;
}

.step-body {
  color: var(--muted);
}

.step-meta {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 4px;
}

/* Social proof & privacy */
.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .trust-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

.quote-card {
  border-radius: 20px;
  padding: 14px 14px 12px;
  background: rgba(12, 18, 40, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-subtle);
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote-text {
  font-size: 13px;
  color: #e5e7eb;
}

.quote-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: #9ca3af;
}

.quote-user {
  display: flex;
  align-items: center;
  gap: 7px;
}

.quote-avatar {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.quote-user-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.quote-user-name {
  font-size: 11px;
  color: #e5e7eb;
  font-weight: 500;
}

.quote-user-role {
  font-size: 10px;
  color: #9ca3af;
}

.quote-kpi-row {
  display: flex;
  gap: 14px;
  font-size: 11px;
}

.quote-kpi {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.quote-kpi span.value {
  font-weight: 600;
  font-size: 13px;
}

.quote-kpi span.label {
  font-size: 10px;
  color: #9ca3af;
}

.privacy-card {
  border-radius: 20px;
  padding: 14px 14px 12px;
  background: rgba(12, 18, 40, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--shadow-subtle);
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.privacy-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 11px;
}

.privacy-pill {
  border-radius: 999px;
  padding: 4px 8px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.6);
  color: #bbf7d0;
  font-size: 11px;
}

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.privacy-list li {
  display: flex;
  gap: 6px;
  margin-bottom: 3px;
}

.privacy-list li::before {
  content: "•";
  color: #a855f7;
  margin-top: 1px;
  font-size: 14px;
}

/* CTA band */
.cta-band {
  margin-top: 48px;
  border-radius: 22px;
  padding: 16px 16px 14px;
  background: radial-gradient(circle at top left, rgba(248, 113, 113, 0.18), rgba(12, 18, 40, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
  font-size: 13px;
}

.cta-band-text h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 600;
}

.cta-band-text p {
  margin: 0;
  color: var(--muted);
  max-width: 420px;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Fixed bottom CTA — tablets / phones (thumb reach, click-to-chat) */
.desiree-landing-sticky-chat {
  display: none;
}

@media (max-width: 1024px) {
  .desiree-landing-sticky-chat {
    display: flex;
    justify-content: center;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    pointer-events: none;
    background: linear-gradient(to top, rgba(5, 6, 23, 0.96) 40%, rgba(5, 6, 23, 0));
  }

  .desiree-landing-sticky-chat__btn {
    pointer-events: auto;
    min-height: 48px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.85);
  }
}

/* Footer */
footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  font-size: 11px;
  color: #6b7280;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 20px;
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: minmax(0, 1fr);
  }
}

.footer-brand {
  max-width: 320px;
  font-size: 12px;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 11px;
}

.footer-nav-group h4 {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  margin-top: 0;
  margin-bottom: 6px;
  color: #9ca3af;
}

.footer-nav-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-nav-group a {
  color: #9ca3af;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  font-size: 11px;
  color: #6b7280;
}

.footer-social {
  display: flex;
  gap: 10px;
  font-size: 11px;
}

.footer-social a {
  color: #9ca3af;
}

/* Locked personas (membership tier): still visible, CTA goes to upgrade */
.persona-card.persona-card--locked .persona-media {
  position: relative;
  opacity: 0.78;
}
.persona-card.persona-card--locked .persona-lock-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.82);
  color: #fde68a;
  border: 1px solid rgba(253, 224, 171, 0.35);
  pointer-events: none;
}
.persona-card.persona-card--locked .persona-chip {
  opacity: 0.85;
}
