/* ============================================================
   OurDream.ai — Modern Dark / Neon Cyber Luxury Theme
   Color Palette:
     --bg-page: #0c0c0e
     --bg-surface: #141418
     --bg-surface-raised: #1c1c22
     --bg-surface-hover: #26262e
     --accent-pink: #fd5fc2
     --accent-gradient: linear-gradient(135deg, #ff1cac 0%, #fd5fc2 50%, #ff79d1 100%)
     --text-primary: #FFFFFF
     --text-secondary: #A1A1AA
   ============================================================ */

:root {
  --bg-page: #0c0c0e;
  --bg-surface: #141418;
  --bg-surface-raised: #1c1c22;
  --bg-surface-hover: #26262e;
  --accent-pink: #fd5fc2;
  --accent-pink-deep: #ff1cac;
  --accent-pink-soft: rgba(253, 95, 194, 0.15);
  --accent-gradient: linear-gradient(135deg, #ff1cac 0%, #fd5fc2 50%, #ff79d1 100%);
  --accent-glow: 0 0 25px rgba(253, 95, 194, 0.45);
  --accent-glow-subtle: 0 0 15px rgba(253, 95, 194, 0.25);
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.14);
  --border-pink: rgba(253, 95, 194, 0.4);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  --content-max: 1280px;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  background-color: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

body.gate-open,
body.modal-open {
  overflow: hidden;
}

/* Ambient glow in background */
.bg-ambient-glow {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 500px;
  background: radial-gradient(circle, rgba(253, 95, 194, 0.08) 0%, rgba(255, 28, 172, 0.03) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.lp-container {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: 24px;
  position: relative;
  z-index: 1;
}

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

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

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
  text-align: center;
  white-space: nowrap;
  user-select: none;
}

.lp-btn-primary {
  background: var(--accent-gradient);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(253, 95, 194, 0.35);
}

.lp-btn-primary:hover {
  box-shadow: 0 6px 24px rgba(253, 95, 194, 0.55);
  transform: translateY(-2px);
}

.lp-btn-primary:active {
  transform: translateY(0);
}

.lp-btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
  backdrop-filter: blur(8px);
}

.lp-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.lp-btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.lp-btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* ============================================================
   18+ AGE GATE MODAL (Fail-Closed)
   ============================================================ */
.gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(5, 5, 7, 0.88);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.gate-panel,
.gate-denied {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: 24px;
  max-width: 440px;
  width: 100%;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(253, 95, 194, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: gateFadeIn 0.3s ease-out;
}

@keyframes gateFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.gate-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.gate-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  background: rgba(253, 95, 194, 0.15);
  color: var(--accent-pink);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.gate-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #ffffff;
}

.gate-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 24px;
}

.gate-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.gate-btn {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition-fast);
}

.gate-btn-yes {
  background: var(--accent-gradient);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(253, 95, 194, 0.4);
}

.gate-btn-yes:hover {
  box-shadow: 0 6px 20px rgba(253, 95, 194, 0.6);
  transform: translateY(-1px);
}

.gate-btn-no {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
}

.gate-btn-no:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
}

.gate-legal {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 18px;
}

.gate-denied-mark {
  font-size: 32px;
  font-weight: 800;
  color: #ef4444;
  margin-bottom: 12px;
}

/* ============================================================
   GENDER SELECTION MODAL (When clicking Chat Now)
   ============================================================ */
.gender-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 5, 7, 0.85);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.gender-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.gender-modal-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: 24px;
  max-width: 520px;
  width: 100%;
  padding: 34px 28px;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.9), 0 0 30px rgba(253, 95, 194, 0.15);
  transform: translateY(15px) scale(0.97);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.gender-modal-overlay.active .gender-modal-card {
  transform: translateY(0) scale(1);
}

.gender-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.gender-modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.gender-modal-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-pink);
  margin-bottom: 8px;
}

.gender-modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.gender-modal-sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0 0 24px;
}

.gender-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.gender-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  border-radius: 16px;
  background: var(--bg-surface-raised);
  border: 2px solid var(--border-subtle);
  cursor: pointer;
  transition: all var(--transition-fast);
  overflow: hidden;
}

.gender-option:hover {
  background: var(--bg-surface-hover);
  border-color: rgba(253, 95, 194, 0.3);
  transform: translateY(-2px);
}

.gender-option.selected {
  border-color: var(--accent-pink);
  background: rgba(253, 95, 194, 0.08);
  box-shadow: 0 0 20px rgba(253, 95, 194, 0.35);
}

.gender-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: transform var(--transition-fast);
}

.gender-option.selected .gender-icon-box {
  background: var(--accent-gradient);
  transform: scale(1.08);
}

.gender-icon-box svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.gender-label {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

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

.gender-option.selected .gender-count {
  color: var(--accent-pink);
}

.gender-confirm-btn {
  width: 100%;
  padding: 15px;
  font-size: 15px;
}

/* ============================================================
   CHARACTER DETAIL PREVIEW MODAL
   ============================================================ */
.char-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(5, 5, 7, 0.85);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.char-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.char-modal-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: 24px;
  max-width: 740px;
  width: 100%;
  display: grid;
  grid-template-columns: 300px 1fr;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9), 0 0 30px rgba(253, 95, 194, 0.15);
  transform: translateY(15px) scale(0.97);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.char-modal-overlay.active .char-modal-card {
  transform: translateY(0) scale(1);
}

.char-modal-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.char-modal-content {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.char-modal-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-pink-soft);
  color: var(--accent-pink);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.char-modal-name {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 4px;
}

.char-modal-age {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.char-modal-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.char-modal-stats {
  display: flex;
  gap: 20px;
  padding-block: 14px;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--text-secondary);
}

.char-modal-stats span strong {
  color: #fff;
}

/* ============================================================
   MASTHEAD / NAVBAR
   ============================================================ */
.lp-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 12, 14, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.lp-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 70px;
}

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

.lp-brand-logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(253, 95, 194, 0.5);
}

.lp-brand-logo-icon svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.lp-brand-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.lp-brand-text span {
  color: var(--accent-pink);
}

.lp-bar-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-inline-start: auto;
}

.lp-bar-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.lp-bar-links a:hover {
  color: #ffffff;
}

.lp-bar-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lp-age-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  color: var(--text-muted);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.lp-hero {
  padding-block: clamp(48px, 8vw, 96px);
  position: relative;
}

.lp-hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
}

.lp-issue-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(253, 95, 194, 0.12);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-pink);
  margin-bottom: 22px;
}

.lp-issue-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-pink);
  box-shadow: 0 0 8px var(--accent-pink);
  animation: pulseDot 2s infinite;
}

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

.lp-hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}

.lp-hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 0 32px;
}

.lp-hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-quick-jumps {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
  margin-bottom: 20px;
}

.hero-jump-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-jump-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-jump-pill {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.hero-jump-pill:hover {
  background: var(--accent-pink-soft);
  border-color: var(--accent-pink);
  transform: translateY(-1px);
}

.hero-jump-pill:active {
  transform: scale(0.96);
}

.lp-hero-note {
  font-size: 13px;
  color: var(--text-muted);
}

.lp-hero-cover {
  position: relative;
}

.lp-cover-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(253, 95, 194, 0.2);
  transition: transform var(--transition-smooth);
}

.lp-cover-card:hover {
  transform: translateY(-4px);
}

.lp-cover-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.lp-cover-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 12, 14, 0.95) 0%, rgba(12, 12, 14, 0.4) 40%, transparent 80%);
}

.lp-cover-cap {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
}

.lp-cover-chip {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-gradient);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lp-cover-name {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}

.lp-cover-line {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ============================================================
   HERO DIRECTORY ACCESS PORTAL (No Model Shown Initially)
   ============================================================ */
.lp-cover-portal {
  background: linear-gradient(145deg, #131317 0%, #1c1c24 100%);
  border: 1px solid rgba(253, 95, 194, 0.28);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(253, 95, 194, 0.15);
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.portal-card-inner {
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  flex: 1;
}

.portal-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(253, 95, 194, 0.12);
  border: 1px solid rgba(253, 95, 194, 0.3);
  color: var(--accent-pink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  width: fit-content;
}

.portal-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-pink);
  box-shadow: 0 0 8px var(--accent-pink);
  animation: pulse-dot 1.8s infinite;
}

.portal-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin: 16px 0 6px;
}

.portal-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 22px;
}

.portal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.portal-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 14px 18px;
  color: #ffffff;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: left;
  font-family: inherit;
  width: 100%;
}

.portal-btn:hover {
  background: rgba(253, 95, 194, 0.1);
  border-color: rgba(253, 95, 194, 0.4);
  transform: translateX(4px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.portal-btn:active {
  transform: scale(0.98);
}

.portal-btn-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.portal-btn-emoji {
  font-size: 26px;
  line-height: 1;
}

.portal-btn-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.portal-btn-label {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.portal-btn-count {
  font-size: 12px;
  color: var(--text-muted);
}

.portal-btn-arrow {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-pink);
  transition: transform var(--transition-fast);
}

.portal-btn:hover .portal-btn-arrow {
  transform: translateX(3px);
}

.portal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

/* ============================================================
   GALLERY EMPTY STATE / CATEGORY SELECTION PROMPT
   ============================================================ */
.gallery-empty-state {
  grid-column: 1 / -1;
  background: linear-gradient(145deg, rgba(20, 20, 24, 0.8) 0%, rgba(28, 28, 36, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 56px 36px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
}

.gallery-empty-badge {
  display: inline-block;
  background: rgba(253, 95, 194, 0.12);
  border: 1px solid rgba(253, 95, 194, 0.35);
  color: var(--accent-pink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.gallery-empty-title {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.gallery-empty-sub {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 36px;
}

.gallery-empty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.gallery-section-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #ffffff;
  cursor: pointer;
  transition: all var(--transition-smooth);
  font-family: inherit;
  width: 100%;
}

.gallery-section-card:hover {
  background: rgba(253, 95, 194, 0.08);
  border-color: rgba(253, 95, 194, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 20px rgba(253, 95, 194, 0.2);
}

.gallery-section-card:active {
  transform: scale(0.97);
}

.gallery-section-avatar {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.gallery-section-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.gallery-section-count {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.gallery-section-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gradient);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(253, 95, 194, 0.35);
  width: 100%;
  transition: box-shadow var(--transition-fast);
}

.gallery-section-card:hover .gallery-section-cta {
  box-shadow: 0 6px 20px rgba(253, 95, 194, 0.6);
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.lp-stats-strip {
  padding-block: 28px;
  border-block: 1px solid var(--border-subtle);
  background: rgba(20, 20, 24, 0.5);
}

.lp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.lp-stat-value {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.lp-stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.lp-stat-note {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================================
   GALLERY SECTION (With Men, Women, Trans Filters)
   ============================================================ */
.lp-section {
  padding-block: clamp(60px, 9vw, 110px);
}

.lp-section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 36px;
}

.lp-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-pink);
  display: inline-block;
  margin-bottom: 8px;
}

.lp-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 14px;
}

.lp-section-lede {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Filter controls bar */
.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.gender-filter-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface);
  padding: 6px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
}

.filter-tab {
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-tab:hover {
  color: #fff;
}

.filter-tab.active {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 2px 12px rgba(253, 95, 194, 0.4);
}

.filter-tab-count {
  font-size: 11px;
  opacity: 0.8;
  padding: 1px 6px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 99px;
}

.gallery-search-box {
  position: relative;
  min-width: 260px;
}

.gallery-search-box input {
  width: 100%;
  padding: 10px 16px 10px 38px;
  border-radius: var(--radius-pill);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: #fff;
  font-size: 13px;
  outline: none;
  transition: border-color var(--transition-fast);
}

.gallery-search-box input:focus {
  border-color: var(--accent-pink);
}

.gallery-search-box svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  color: var(--text-muted);
}

/* Character Grid */
.lp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lp-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-smooth);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.lp-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-pink);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 24px rgba(253, 95, 194, 0.25);
}

.lp-card-fig {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0;
  background: #191920;
}

.lp-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.lp-card:hover .lp-card-img {
  transform: scale(1.05);
}

.lp-card-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 12, 14, 0.2) 0%, rgba(12, 12, 14, 0.5) 50%, rgba(12, 12, 14, 0.95) 100%);
}

.lp-card-top-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.lp-badge-hot {
  padding: 4px 10px;
  background: var(--accent-gradient);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-badge-gender {
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
}

.lp-card-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
}

.lp-card-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.lp-card-name {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.lp-card-age {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-pink);
}

.lp-card-line {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lp-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-card-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-pink);
  background: rgba(253, 95, 194, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
}

.lp-card-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.lp-card-chat-btn {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  background: var(--accent-gradient);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.lp-card-chat-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(253, 95, 194, 0.4);
}

.lp-card-create-btn {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
}

.lp-card-create-btn:hover {
  transform: scale(1.05);
  background: rgba(253, 95, 194, 0.2);
  border-color: var(--accent-pink);
  box-shadow: 0 0 12px rgba(253, 95, 194, 0.3);
}

.lp-card-chat-btn:active,
.lp-card-create-btn:active {
  transform: scale(0.97);
}

.char-modal-btn-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.lp-section-tint {
  background: var(--bg-surface);
  border-block: 1px solid var(--border-subtle);
}

.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-feature-card {
  background: var(--bg-surface-raised);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 28px 24px;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.lp-feature-card:hover {
  border-color: var(--border-pink);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(253, 95, 194, 0.15);
}

.lp-feature-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.lp-feature-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.lp-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-pink-soft);
  color: var(--accent-pink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-feature-icon svg {
  width: 22px;
  height: 22px;
}

.lp-feature-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #fff;
}

.lp-feature-note {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-pink);
  margin-bottom: 12px;
}

.lp-feature-body {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.lp-final {
  padding-block: clamp(60px, 9vw, 110px);
  position: relative;
  text-align: center;
}

.lp-final-inner {
  max-width: 680px;
  margin: 0 auto;
  background: radial-gradient(circle at center, rgba(253, 95, 194, 0.1) 0%, var(--bg-surface) 70%);
  border: 1px solid var(--border-medium);
  border-radius: 30px;
  padding: 48px 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.lp-final-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
}

.lp-final-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.lp-final-fine {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 18px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.lp-footer {
  border-top: 1px solid var(--border-subtle);
  padding-block: 40px;
  background: var(--bg-surface);
}

.lp-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.lp-footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lp-footer-tag {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lp-footer-right {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-secondary);
}

.lp-footer-legal {
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE MEDIA QUERIES
   ============================================================ */
@media (max-width: 1024px) {
  .lp-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .lp-hero-sub,
  .lp-hero-cta {
    margin-inline: auto;
    justify-content: center;
  }
  .lp-hero-cover {
    max-width: 440px;
    margin-inline: auto;
  }
  .lp-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   MOBILE FLOATING BOTTOM ACTION BAR (Smartphones)
   ============================================================ */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(12, 12, 14, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 14px calc(8px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.7);
}

.mobile-bottom-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 500px;
  margin: 0 auto;
  gap: 10px;
}

.mobile-bottom-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 12px;
  min-width: 58px;
  min-height: 48px;
  transition: all var(--transition-fast);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.mobile-bottom-item:active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  transform: scale(0.95);
}

.mobile-bottom-chat-cta {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent-gradient);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  min-height: 48px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 18px rgba(253, 95, 194, 0.45);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  letter-spacing: 0.02em;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.mobile-bottom-chat-cta:active {
  transform: scale(0.97);
  box-shadow: 0 2px 10px rgba(253, 95, 194, 0.3);
}

.mobile-bottom-pulse {
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 8px #ffffff;
  animation: pulseGlow 1.5s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

/* Base touch responsiveness */
button, a, .lp-card, .filter-tab, .lp-btn, .lp-card-chat-btn {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.lp-btn:active, .lp-card-chat-btn:active {
  transform: scale(0.97);
}

/* ============================================================
   SMARTPHONE & TABLET RESPONSIVE MEDIA QUERIES (<= 768px)
   ============================================================ */
@media (max-width: 768px) {
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-bottom-bar {
    display: block;
  }

  .lp-bar-inner {
    padding-inline: 16px;
    height: 60px;
    padding-top: env(safe-area-inset-top, 0px);
  }

  .lp-bar-links {
    display: none;
  }

  .lp-btn-create-nav {
    display: none;
  }

  .lp-hero {
    padding-top: 24px;
    padding-bottom: 20px;
  }

  .lp-hero-title {
    font-size: clamp(2rem, 7.8vw, 2.75rem);
    line-height: 1.15;
  }

  .lp-hero-sub {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 20px;
  }

  .lp-hero-cta {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .lp-hero-cta .lp-btn {
    width: 100%;
    padding: 14px 20px;
    min-height: 50px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lp-hero-cta .lp-btn-chat {
    background: var(--accent-gradient);
    box-shadow: 0 6px 22px rgba(253, 95, 194, 0.45);
    font-weight: 800;
  }

  /* Mobile quick jump categories */
  .hero-quick-jumps {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .hero-jump-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .hero-jump-pills {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  .hero-jump-pills::-webkit-scrollbar {
    display: none;
  }

  .hero-jump-pill {
    flex: 1;
    min-width: 96px;
    min-height: 40px;
    padding: 8px 10px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    white-space: nowrap;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transition: all var(--transition-fast);
  }

  .hero-jump-pill:active {
    background: var(--accent-pink-soft);
    border-color: var(--accent-pink);
    transform: scale(0.96);
  }

  .lp-hero-cover {
    max-width: 360px;
    margin-top: 18px;
    margin-inline: auto;
    width: 100%;
  }

  .lp-cover-portal {
    min-height: auto;
  }

  .portal-card-inner {
    padding: 22px 18px;
  }

  .portal-title {
    font-size: 20px;
  }

  .portal-desc {
    margin-bottom: 16px;
    font-size: 12.5px;
  }

  .portal-actions {
    gap: 10px;
    margin-bottom: 16px;
  }

  .portal-btn {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .portal-btn-label {
    font-size: 14px;
  }

  .portal-btn-count {
    font-size: 11px;
  }

  .lp-cover-img {
    height: 240px;
    border-radius: 20px;
  }

  /* Stats strip */
  .lp-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .lp-stat-card {
    padding: 12px 10px;
    border-radius: 14px;
  }

  .lp-stat-value {
    font-size: 22px;
  }

  .lp-stat-label {
    font-size: 11px;
  }

  .lp-stat-note {
    font-size: 10px;
  }

  /* Sticky Gallery Controls on Mobile */
  .gallery-controls {
    position: sticky;
    top: 59px;
    z-index: 70;
    background: rgba(12, 12, 14, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 10px 0;
    margin-inline: -16px;
    padding-inline: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .gender-filter-tabs {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    width: 100%;
    padding-bottom: 2px;
    scroll-snap-type: x mandatory;
  }

  .gender-filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .filter-tab {
    flex-shrink: 0;
    min-height: 42px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    scroll-snap-align: start;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .filter-tab.active {
    background: var(--accent-gradient);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 3px 14px rgba(253, 95, 194, 0.45);
  }

  .filter-tab-count {
    background: rgba(0, 0, 0, 0.25);
    padding: 2px 7px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    margin-left: 4px;
  }

  .gallery-search-box {
    width: 100%;
  }

  .gallery-search-box input {
    height: 46px;
    font-size: 16px; /* Prevents auto-zoom in iOS Safari */
    border-radius: 12px;
  }

  /* Smartphone 2-column card grid */
  .lp-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 100%;
    margin-inline: 0;
  }

  /* Empty state prompt on mobile */
  .gallery-empty-state {
    padding: 30px 16px;
    border-radius: 20px;
  }

  .gallery-empty-title {
    font-size: 22px;
  }

  .gallery-empty-sub {
    font-size: 13px;
    margin-bottom: 22px;
  }

  .gallery-empty-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-section-card {
    padding: 16px 14px;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 12px;
    border-radius: 16px;
  }

  .gallery-section-avatar {
    font-size: 32px;
    margin-bottom: 0;
  }

  .gallery-section-title {
    font-size: 16px;
    margin-bottom: 2px;
  }

  .gallery-section-count {
    font-size: 12px;
    margin-bottom: 0;
  }

  .gallery-section-cta {
    width: auto;
    padding: 8px 14px;
    font-size: 12px;
    margin-left: auto;
    white-space: nowrap;
  }

  .lp-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .lp-card:active {
    transform: scale(0.98);
    border-color: rgba(253, 95, 194, 0.4);
  }

  .lp-card-fig {
    aspect-ratio: 1 / 1.44;
    position: relative;
    overflow: hidden;
    margin: 0;
  }

  .lp-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .lp-card-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(12, 12, 14, 0.15) 0%,
      transparent 30%,
      rgba(12, 12, 14, 0.5) 60%,
      rgba(12, 12, 14, 0.95) 90%,
      #0c0c0e 100%
    );
    pointer-events: none;
  }

  .lp-card-top-badges {
    top: 8px;
    left: 8px;
    right: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
  }

  .lp-badge-hot {
    font-size: 8.5px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: var(--radius-pill);
    background: rgba(12, 12, 14, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .lp-badge-hot::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 6px #10b981;
  }

  .lp-badge-gender {
    font-size: 8.5px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: var(--radius-pill);
    background: rgba(12, 12, 14, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
  }

  .lp-card-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 8px 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .lp-card-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 4px;
    margin: 0;
  }

  .lp-card-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 96px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  }

  .lp-card-age {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
  }

  .lp-card-line {
    display: none; /* Keep smartphone cards uncluttered */
  }

  .lp-card-footer {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
    padding: 0;
    border: none;
    width: 100%;
  }

  .lp-card-tag {
    font-size: 9.5px;
    font-weight: 600;
    color: var(--accent-pink);
    background: rgba(253, 95, 194, 0.12);
    border: 1px solid rgba(253, 95, 194, 0.25);
    padding: 2px 7px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    align-self: flex-start;
    max-width: 100%;
  }

  .lp-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    width: 100%;
    margin-top: 2px;
  }

  .lp-card-chat-btn,
  .lp-card-create-btn {
    width: 100%;
    min-height: 36px;
    padding: 6px 4px;
    font-size: 11.5px;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    letter-spacing: 0.01em;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    z-index: 2;
  }

  .lp-card-chat-btn {
    background: var(--accent-gradient);
    color: #ffffff;
    box-shadow: 0 3px 10px rgba(253, 95, 194, 0.35);
  }

  .lp-card-chat-btn:active {
    transform: scale(0.96);
    box-shadow: 0 1px 6px rgba(253, 95, 194, 0.25);
  }

  .lp-card-create-btn {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }

  .lp-card-create-btn:active {
    transform: scale(0.96);
    background: rgba(253, 95, 194, 0.25);
    border-color: var(--accent-pink);
  }

  /* Features section */
  .lp-features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lp-feature-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  /* Create studio section */
  .create-studio-card {
    padding: 24px 18px;
    border-radius: 20px;
    gap: 20px;
  }

  .create-studio-copy h2 {
    font-size: 24px;
  }

  .create-studio-copy .lp-btn {
    width: 100%;
    min-height: 48px;
  }

  .create-studio-mock {
    padding: 16px;
    gap: 14px;
  }

  /* Final CTA */
  .lp-final-inner {
    padding: 36px 18px;
    border-radius: 20px;
  }

  .lp-final-title {
    font-size: 26px;
  }

  .lp-final-inner .lp-btn {
    width: 100%;
    min-height: 48px;
  }

  /* Modern Mobile Bottom-Sheet Style Detail Modal */
  .char-modal-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .char-modal-card {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 26px 26px 0 0;
    border-bottom: none;
    margin: 0;
    transform: translateY(100%);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(253, 95, 194, 0.15);
  }

  .char-modal-overlay.active .char-modal-card {
    transform: translateY(0);
  }

  .char-modal-card::before {
    content: '';
    position: sticky;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 99px;
    margin: 8px auto 0;
    z-index: 10;
  }

  .char-modal-img {
    height: 220px;
    min-height: 220px;
    object-fit: cover;
    object-position: center top;
  }

  .char-modal-content {
    padding: 18px 18px calc(24px + env(safe-area-inset-bottom, 0px));
    gap: 14px;
  }

  .char-modal-name {
    font-size: 22px;
    font-weight: 800;
  }

  .char-modal-desc {
    font-size: 13.5px;
    max-height: 120px;
    overflow-y: auto;
  }

  .char-modal-stats {
    padding-block: 10px;
    margin-bottom: 12px;
    font-size: 12px;
  }

  .char-modal-cta {
    min-height: 50px;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-pill);
    box-shadow: 0 6px 20px rgba(253, 95, 194, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .gender-grid {
    grid-template-columns: 1fr;
  }

  /* Age gate on mobile */
  .gate-panel, .gate-denied {
    padding: 24px 18px;
    border-radius: 22px;
    max-width: 90%;
    width: 360px;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.9);
  }

  .gate-title {
    font-size: 20px;
  }

  .gate-body {
    font-size: 13px;
  }

  .gate-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .gate-btn {
    width: 100%;
    min-height: 50px;
    font-size: 15px;
    border-radius: var(--radius-pill);
  }
}

/* Ultra-compact screens (<= 360px) */
@media (max-width: 360px) {
  .lp-container {
    padding-inline: 10px;
  }

  .lp-gallery-grid {
    gap: 8px;
  }

  .lp-card-bottom {
    padding: 8px 6px;
  }

  .lp-card-name {
    font-size: 12px;
    max-width: 78px;
  }

  .lp-card-chat-btn,
  .lp-card-create-btn {
    min-height: 33px;
    padding: 5px 3px;
    font-size: 10px;
    gap: 2px;
  }

  .mobile-bottom-item {
    min-width: 48px;
    padding: 6px 6px;
    font-size: 10px;
  }

  .mobile-bottom-chat-cta {
    font-size: 13px;
    padding: 8px 12px;
  }
}

/* ============================================================
   CREATE COMPANION STUDIO SECTION & BUTTONS
   ============================================================ */
.lp-nav-create {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff !important;
}

.nav-new-chip {
  font-size: 9px;
  font-weight: 800;
  padding: 1px 6px;
  background: var(--accent-gradient);
  color: #fff;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lp-btn-create {
  background: rgba(253, 95, 194, 0.12);
  color: #fff;
  border: 1px solid var(--border-pink);
  backdrop-filter: blur(8px);
}

.lp-btn-create:hover {
  background: rgba(253, 95, 194, 0.22);
  border-color: var(--accent-pink);
  box-shadow: 0 0 20px rgba(253, 95, 194, 0.4);
  transform: translateY(-2px);
}

.lp-btn-create-nav {
  background: rgba(253, 95, 194, 0.15);
  color: #fff;
  border: 1px solid var(--border-pink);
  font-size: 13px;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.lp-btn-create-nav:hover {
  background: var(--accent-gradient);
  box-shadow: 0 0 15px rgba(253, 95, 194, 0.5);
  transform: translateY(-1px);
}

/* Dedicated Create Studio Showcase */
.create-studio-section {
  padding-block: clamp(60px, 9vw, 110px);
  position: relative;
}

.create-studio-card {
  background: radial-gradient(circle at 50% 30%, rgba(253, 95, 194, 0.14) 0%, var(--bg-surface) 70%);
  border: 1px solid var(--border-medium);
  border-radius: 28px;
  padding: 56px 40px;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(253, 95, 194, 0.1);
}

.create-studio-copy {
  max-width: 640px;
  margin-inline: auto;
}

.create-studio-copy h2 {
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px;
}

.create-studio-copy p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.create-studio-copy .lp-btn {
  margin-inline: auto;
}

.create-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-pink);
  font-size: 13px;
  font-weight: 700;
  margin-top: 14px;
  transition: gap var(--transition-fast);
}

.create-feature-link:hover {
  gap: 10px;
}

