/* Miami Dolls AI — Premium Theme
   Dark, alluring, Miami heat. Pink & gold accents. */

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16161f;
  --bg-card-hover: #1c1c28;
  --bg-input: #1a1a25;
  --pink: #ff2d8a;
  --pink-light: #ff69b4;
  --pink-glow: rgba(255, 45, 138, 0.3);
  --pink-subtle: rgba(255, 45, 138, 0.08);
  --gold: #d4a853;
  --gold-light: #e8c97a;
  --text-primary: #f0eff4;
  --text-secondary: rgba(240, 239, 244, 0.6);
  --text-muted: rgba(240, 239, 244, 0.35);
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 45, 138, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 50px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 30px var(--pink-glow);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 116px; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* NAVIGATION */
.launch-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  background: linear-gradient(90deg, var(--pink), #cc1a6e, var(--gold));
  padding: 0.5rem 1rem; text-align: center;
  font-size: 0.85rem; font-weight: 500;
}
.launch-banner-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0.5rem;
}
.early-access-badge {
  display: inline-block; margin-bottom: 1.5rem;
  padding: 0.4rem 1.25rem; border-radius: var(--radius-full);
  font-size: 0.8rem; letter-spacing: 0.15rem;
  background: rgba(255, 45, 138, 0.1);
  border: 1px solid rgba(255, 45, 138, 0.3);
  color: var(--pink-light);
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 10px rgba(255, 45, 138, 0.1); }
  50% { box-shadow: 0 0 25px rgba(255, 45, 138, 0.25); }
}
.nav {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600;
  color: var(--text-primary); text-decoration: none; letter-spacing: 0.1rem;
}
.ai-accent { color: var(--pink); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  color: var(--text-secondary); text-decoration: none;
  font-size: 0.9rem; transition: color 0.3s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-auth, .nav-user { display: flex; gap: 0.75rem; align-items: center; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text-primary); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1.5rem; border-radius: var(--radius-full);
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
  cursor: pointer; transition: all 0.3s; border: none;
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink) 0%, #cc1a6e 100%);
  color: white; box-shadow: 0 4px 20px var(--pink-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 45, 138, 0.4);
}
.btn-ghost {
  background: transparent; color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  color: var(--text-primary); border-color: var(--border-hover);
  background: var(--pink-subtle);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #b8912e 100%);
  color: #0a0a0f;
}
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.8rem; }
.btn-block { width: 100%; justify-content: center; }

/* HERO */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 156px 2rem 80px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.4;
  animation: float 8s ease-in-out infinite;
}
.glow-1 {
  width: 500px; height: 500px; top: 10%; left: 20%;
  background: radial-gradient(circle, rgba(255,45,138,0.25), transparent 70%);
}
.glow-2 {
  width: 400px; height: 400px; bottom: 20%; right: 15%;
  background: radial-gradient(circle, rgba(212,168,83,0.15), transparent 70%);
  animation-delay: -3s;
}
.glow-3 {
  width: 300px; height: 300px; top: 40%; left: 60%;
  background: radial-gradient(circle, rgba(128,0,255,0.1), transparent 70%);
  animation-delay: -5s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 800px; }
.hero-title { font-family: var(--font-display); margin-bottom: 1.5rem; }
.hero-title-line {
  display: block; font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400; line-height: 1.15;
}
.hero-title-accent {
  font-weight: 700;
  background: linear-gradient(90deg, var(--pink-light), var(--pink), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-secondary); line-height: 1.8;
  margin-bottom: 2.5rem; font-weight: 300;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 4rem; }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-number {
  display: block; font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 600; color: var(--pink-light);
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.1rem; text-transform: uppercase; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); }
.scroll-indicator {
  width: 24px; height: 40px; border: 2px solid var(--text-muted);
  border-radius: 12px; position: relative;
}
.scroll-indicator::after {
  content: ''; position: absolute; left: 50%; top: 8px;
  transform: translateX(-50%);
  width: 4px; height: 8px; background: var(--pink-light); border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* SECTIONS */
.section { padding: 100px 2rem; }
.section-dark { background: var(--bg-secondary); }
.container { max-width: 1200px; margin: 0 auto; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center; margin-bottom: 0.75rem; font-weight: 600;
}
.section-subtitle {
  text-align: center; color: var(--text-secondary);
  font-size: 1.1rem; margin-bottom: 4rem;
}

/* STEPS */
.steps { display: flex; align-items: flex-start; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.step {
  flex: 1; min-width: 250px; max-width: 320px;
  text-align: center; padding: 2rem;
  background: var(--bg-card); border-radius: var(--radius-lg);
  border: 1px solid var(--border); transition: all 0.3s;
}
.step:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.step-number {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 700;
  color: rgba(255, 45, 138, 0.1); line-height: 1;
}
.step-icon { font-size: 2rem; margin: 0.5rem 0; }
.step h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 0.75rem; }
.step p { color: var(--text-secondary); font-size: 0.95rem; }
.step-connector {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--border), var(--pink-glow), var(--border));
  margin-top: 80px;
}

/* DOLL CARDS */
.dolls-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; margin-bottom: 3rem;
}
.doll-card {
  background: var(--bg-card); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 2rem;
  transition: all 0.3s; cursor: pointer; position: relative; overflow: hidden;
}
.doll-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  opacity: 0; transition: opacity 0.3s;
}
.doll-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.doll-card:hover::before { opacity: 1; }
.doll-card-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin-bottom: 1.25rem;
  box-shadow: 0 4px 20px var(--pink-glow);
}
.doll-card h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.25rem; }
.doll-card-tagline {
  color: var(--pink-light); font-size: 0.85rem;
  font-style: italic; margin-bottom: 1rem;
}
.doll-card-desc { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }
.doll-card-vibe {
  display: inline-block; margin-top: 1rem;
  padding: 0.3rem 0.8rem; border-radius: var(--radius-full);
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1rem;
  background: var(--pink-subtle); color: var(--pink-light);
  border: 1px solid rgba(255, 45, 138, 0.15);
}
.dolls-cta { text-align: center; }
.dolls-cta-text { color: var(--text-muted); font-style: italic; margin-bottom: 1rem; font-size: 1.05rem; }

/* PRICING */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; max-width: 960px; margin: 0 auto;
}
.price-card {
  background: var(--bg-card); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 2.5rem 2rem;
  text-align: center; transition: all 0.3s; position: relative;
}
.price-card.popular { border-color: var(--pink); box-shadow: 0 0 40px rgba(255, 45, 138, 0.15); }
.price-card.popular::after {
  content: 'MOST POPULAR'; position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%); padding: 0.3rem 1.25rem;
  background: linear-gradient(135deg, var(--pink), #cc1a6e);
  color: white; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.15rem; border-radius: var(--radius-full);
}
.price-card:hover { transform: translateY(-4px); }
.price-name { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.5rem; }
.price-amount { font-size: 3rem; font-weight: 600; margin-bottom: 0.25rem; }
.price-amount .currency { font-size: 1.5rem; vertical-align: super; color: var(--text-secondary); }
.price-amount .period { font-size: 1rem; color: var(--text-muted); font-weight: 300; }
.price-features { list-style: none; margin: 1.5rem 0 2rem; text-align: left; }
.price-features li {
  padding: 0.5rem 0; color: var(--text-secondary);
  font-size: 0.9rem; display: flex; align-items: center; gap: 0.75rem;
}
.price-features li::before { content: '✓'; color: var(--pink-light); font-weight: 600; flex-shrink: 0; }

/* CTA */
.section-cta {
  text-align: center;
  background: linear-gradient(180deg, var(--bg-primary) 0%, #150a1e 50%, var(--bg-primary) 100%);
}
.cta-title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--pink-light), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cta-subtitle {
  color: var(--text-secondary); font-size: 1.15rem;
  margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto;
}

/* FOOTER */
.footer { padding: 3rem 2rem 2rem; border-top: 1px solid var(--border); }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem;
}
.footer-tagline { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.25rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; }
.footer-links a:hover { color: var(--pink-light); }
.footer-bottom {
  text-align: center; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem; color: var(--text-muted);
}

/* MODALS */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center; padding: 2rem;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--bg-card); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 2.5rem;
  max-width: 440px; width: 100%; position: relative;
  box-shadow: var(--shadow-md); max-height: 90vh; overflow-y: auto;
}
.modal-lg { max-width: 600px; }
.modal-close {
  position: absolute; top: 1rem; right: 1.25rem;
  background: none; border: none; color: var(--text-muted);
  font-size: 1.75rem; cursor: pointer; line-height: 1;
}
.modal-close:hover { color: var(--text-primary); }
.modal-title { font-family: var(--font-display); font-size: 1.75rem; margin-bottom: 0.5rem; }
.modal-subtitle { color: var(--text-secondary); margin-bottom: 2rem; font-size: 0.95rem; }

/* FORMS */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--text-secondary); margin-bottom: 0.5rem; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.75rem 1rem;
  background: var(--bg-input); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text-primary);
  font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color 0.3s; outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--pink); box-shadow: 0 0 0 3px rgba(255, 45, 138, 0.1);
}
.form-textarea { resize: vertical; min-height: 80px; }
.form-error { color: #ff4757; font-size: 0.8rem; margin-top: 0.25rem; }

.vibe-options { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.vibe-option {
  flex: 1; min-width: 90px; padding: 0.75rem; text-align: center;
  background: var(--bg-input); border: 1px solid var(--border);
  border-radius: var(--radius); cursor: pointer; transition: all 0.3s; font-size: 0.85rem;
}
.vibe-option:hover { border-color: var(--border-hover); }
.vibe-option.selected { border-color: var(--pink); background: var(--pink-subtle); color: var(--pink-light); }
.vibe-option .vibe-emoji { font-size: 1.5rem; display: block; margin-bottom: 0.25rem; }

/* DASHBOARD */
.dashboard-view { min-height: 100vh; padding: 100px 2rem 2rem; }
.dashboard-header {
  max-width: 1200px; margin: 0 auto 2rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.dashboard-title { font-family: var(--font-display); font-size: 2rem; }
.dashboard-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem;
}
.dashboard-card-new {
  background: var(--bg-card); border: 2px dashed var(--border);
  border-radius: var(--radius-lg); padding: 3rem 2rem; text-align: center;
  cursor: pointer; transition: all 0.3s;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 250px;
}
.dashboard-card-new:hover { border-color: var(--pink); background: var(--pink-subtle); }
.dashboard-card-new-icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.5; }
.dashboard-card-new-text { color: var(--text-secondary); }

/* CHAT */
.chat-view {
  position: fixed; inset: 0; z-index: 1500;
  background: var(--bg-primary);
  display: none; flex-direction: column;
}
.chat-view.active { display: flex; }
.chat-header {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(10, 10, 15, 0.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.chat-header-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
}
.chat-header-info h3 { font-family: var(--font-display); font-size: 1.1rem; }
.chat-header-info span { color: var(--text-muted); font-size: 0.8rem; }
.chat-header-back {
  background: none; border: none; color: var(--text-secondary);
  cursor: pointer; font-size: 1.5rem; padding: 0.25rem; margin-right: 0.5rem;
}
.chat-header-back:hover { color: var(--text-primary); }
.chat-messages {
  flex: 1; overflow-y: auto; padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.chat-bubble {
  max-width: 75%; padding: 1rem 1.25rem;
  border-radius: var(--radius-lg); font-size: 0.95rem;
  line-height: 1.6; animation: bubbleIn 0.3s ease-out;
}
@keyframes bubbleIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.chat-bubble.user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--pink), #cc1a6e);
  color: white; border-bottom-right-radius: 4px;
}
.chat-bubble.assistant {
  align-self: flex-start;
  background: var(--bg-card); border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
}
.chat-bubble.system {
  align-self: center; background: transparent;
  color: var(--text-muted); font-size: 0.85rem;
  font-style: italic; max-width: 90%; text-align: center;
}
.chat-typing {
  align-self: flex-start; padding: 1rem 1.5rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); border-bottom-left-radius: 4px;
  display: none;
}
.chat-typing.active { display: flex; gap: 4px; align-items: center; }
.chat-typing-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--pink-light); opacity: 0.4;
  animation: typing 1.4s ease-in-out infinite;
}
.chat-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.chat-typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { opacity: 0.4; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}
.chat-input-area {
  padding: 1rem 1.5rem;
  background: rgba(10, 10, 15, 0.95); backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  display: flex; gap: 0.75rem; align-items: flex-end;
}
.chat-input {
  flex: 1; padding: 0.75rem 1rem;
  background: var(--bg-input); border: 1px solid var(--border);
  border-radius: var(--radius-full); color: var(--text-primary);
  font-family: var(--font-body); font-size: 0.95rem;
  outline: none; resize: none; max-height: 120px;
}
.chat-input:focus { border-color: var(--pink); }
.chat-input::placeholder { color: var(--text-muted); }
.chat-send {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), #cc1a6e);
  border: none; color: white; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; flex-shrink: 0;
}
.chat-send:hover { transform: scale(1.05); box-shadow: var(--shadow-glow); }
.chat-send:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.chat-limit-banner {
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(255,45,138,0.1), rgba(212,168,83,0.1));
  border-top: 1px solid var(--border);
  text-align: center; font-size: 0.9rem;
}
.chat-limit-banner a { color: var(--pink-light); text-decoration: underline; }

/* TOAST */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 3000;
  padding: 1rem 1.5rem; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border);
  box-shadow: var(--shadow-md); font-size: 0.9rem;
  transform: translateY(100px); opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.error { border-color: #ff4757; }
.toast.success { border-color: #2ed573; }

/* LOADING */
.loading-spinner {
  width: 24px; height: 24px; border: 2px solid var(--border);
  border-top-color: var(--pink); border-radius: 50%;
  animation: spin 0.8s linear infinite; display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { 
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10, 10, 15, 0.95); backdrop-filter: blur(20px);
    flex-direction: column; padding: 1.5rem 2rem; gap: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-auth, .nav-user { width: 100%; justify-content: center; }
  .hero { padding: 100px 1.5rem 60px; }
  .step-connector { display: none; }
  .steps { gap: 1.5rem; }
  .hero-stats { gap: 1.25rem; }
  .stat-divider { height: 30px; }
  .chat-bubble { max-width: 85%; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .dashboard-header { flex-direction: column; text-align: center; }
}
/* Guest chat CTA on doll cards */
.doll-card-cta {
  margin-top: 1rem;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark, #d81b60));
  color: white;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.doll-card:hover .doll-card-cta {
  opacity: 1;
  transform: translateY(0);
}

/* Chat limit banner improvements */
.chat-limit-banner {
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-primary, #fff);
}
.chat-limit-banner a {
  color: var(--pink-light, #ff80ab);
  text-decoration: underline;
}
.chat-limit-banner .btn {
  font-size: 0.9rem;
}


/* UNLEASHED SECTION */
/* UNLEASHED SECTION V3 */
.section-unleashed {
  padding: 2rem 0;
  text-align: center;
}
.unleashed-banner {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: rgba(20,10,30,0.6);
  border: 1px solid rgba(255,45,138,0.2);
  border-radius: var(--radius, 12px);
  position: relative;
}
.unleashed-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
  background: linear-gradient(90deg, var(--pink-light), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.unleashed-sub {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.btn-unleashed {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2.5rem;
  background: transparent;
  border: 1px solid var(--pink-light);
  color: var(--pink-light);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: var(--radius-full, 50px);
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-unleashed:hover {
  background: var(--pink-light);
  color: var(--bg-primary);
  box-shadow: 0 0 20px rgba(255,45,138,0.3);
}

/* UNLEASHED END */
.unleashed-warning {
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  opacity: 0.6;
}
.unleashed-warning {
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  opacity: 0.6;
  letter-spacing: 0.3px;
}

/* DOLL CARD IMAGE AVATARS */
.doll-card-avatar-img {
  width: calc(100% + 4rem);
  height: 280px;
  overflow: hidden;
  border-radius: var(--radius-lg, 16px) var(--radius-lg, 16px) 0 0;
  margin: -2rem -2rem 1.25rem -2rem;
}
.doll-card-avatar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
