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

/* ── Ad Top Bar ───────────────────────────────── */
.ad-topbar {
  position: relative;
  background: linear-gradient(90deg, #ff3d5a, #ff7a45);
  text-align: center; padding: 10px 48px;
  font-size: 14px; font-weight: 600; color: white;
  z-index: 101;
}
.ad-topbar-link {
  color: white; text-decoration: none;
  display: inline-block;
}
.ad-topbar-link:hover { text-decoration: underline; }
.ad-topbar-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.2); border: none; color: white;
  width: 24px; height: 24px; border-radius: 50%; cursor: pointer;
  font-size: 12px; line-height: 1;
}
.ad-topbar-close:hover { background: rgba(255,255,255,0.35); }

/* ── Ad Inline Banner ─────────────────────────── */
.ad-inline-banner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(255,61,90,0.12), rgba(255,122,69,0.08));
  border: 1px solid rgba(255,61,90,0.35);
  border-radius: var(--radius); padding: 24px 28px;
  margin-bottom: 28px; text-decoration: none; color: var(--text);
  transition: border-color .3s, transform .2s;
}
.ad-inline-banner:hover { border-color: var(--primary); transform: translateY(-2px); text-decoration: none; }
.ad-label {
  display: inline-block; padding: 2px 10px; border-radius: 50px;
  background: rgba(255,61,90,0.2); color: var(--primary);
  font-size: 11px; font-weight: 700; letter-spacing: .05em;
  margin-bottom: 8px;
}
.ad-inline-left h3 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.ad-inline-left p { color: var(--text-muted); font-size: 14px; margin-bottom: 14px; }
.ad-cta-btn {
  display: inline-block; padding: 10px 22px; border-radius: 50px;
  background: var(--gradient); color: white; font-size: 14px; font-weight: 700;
}
.ad-inline-right { text-align: center; }
.ad-avatars { display: flex; gap: -8px; margin-bottom: 8px; }
.ad-avatars img {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid var(--dark); margin-left: -8px;
}
.ad-avatars img:first-child { margin-left: 0; }
.ad-online-count { font-size: 13px; font-weight: 600; color: #22c55e; }

:root {
  --primary: #ff3d5a;
  --primary-dark: #cc2240;
  --secondary: #ff7a45;
  --accent: #ffb347;
  --dark: #0f0f14;
  --dark2: #1a1a24;
  --dark3: #242432;
  --text: #f0f0f5;
  --text-muted: #9999b3;
  --border: #2e2e42;
  --card-bg: #1e1e2e;
  --gradient: linear-gradient(135deg, #ff3d5a, #ff7a45);
  --gradient-soft: linear-gradient(135deg, rgba(255,61,90,0.15), rgba(255,122,69,0.15));
  --shadow: 0 8px 32px rgba(255,61,90,0.2);
  --radius: 16px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.hidden { display: none !important; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Age Gate ─────────────────────────────────── */
.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: radial-gradient(ellipse at center, #1a0a10 0%, #0a0008 100%);
  display: flex; align-items: center; justify-content: center;
}

.age-gate-box {
  text-align: center;
  padding: 60px 48px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  max-width: 520px;
  width: 90%;
  box-shadow: 0 0 80px rgba(255,61,90,0.3);
}

.flame-logo { font-size: 56px; margin-bottom: 12px; }
.age-gate-box h1 {
  font-size: 36px; font-weight: 800;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
.age-warning {
  font-size: 18px; font-weight: 600; color: var(--text);
  margin-bottom: 12px;
}
.age-sub { color: var(--text-muted); font-size: 14px; margin-bottom: 32px; }

.age-buttons { display: flex; flex-direction: column; gap: 12px; }
.btn-enter {
  padding: 16px 32px; border-radius: 50px; border: none; cursor: pointer;
  background: var(--gradient); color: white; font-size: 16px; font-weight: 700;
  transition: transform .2s, box-shadow .2s;
}
.btn-enter:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-leave {
  padding: 14px 32px; border-radius: 50px; border: 1px solid var(--border); cursor: pointer;
  background: transparent; color: var(--text-muted); font-size: 14px;
}
.btn-leave:hover { background: var(--dark3); }

/* ── Navbar ───────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15,15,20,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; gap: 32px;
}
.nav-logo { font-size: 22px; font-weight: 800; cursor: pointer; white-space: nowrap; }
.nav-links { display: flex; gap: 24px; flex: 1; }
.nav-link { color: var(--text-muted); font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-link:hover { color: var(--text); text-decoration: none; }
.nav-actions { display: flex; gap: 12px; }
.btn-login {
  padding: 8px 20px; border-radius: 50px; border: 1px solid var(--border);
  background: transparent; color: var(--text); font-size: 14px; cursor: pointer;
  transition: border-color .2s;
}
.btn-login:hover { border-color: var(--primary); }
.btn-signup {
  padding: 8px 20px; border-radius: 50px; border: none;
  background: var(--gradient); color: white; font-size: 14px; font-weight: 600; cursor: pointer;
  transition: opacity .2s, transform .2s;
}
.btn-signup:hover { opacity: .9; transform: translateY(-1px); }
.nav-hamburger {
  display: none; background: none; border: none; color: var(--text);
  font-size: 22px; cursor: pointer;
}

/* ── Hero ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 100px 24px 60px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(255,61,90,0.18) 0%, transparent 60%),
              radial-gradient(ellipse 50% 50% at 80% 80%, rgba(255,122,69,0.12) 0%, transparent 50%),
              var(--dark);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff3d5a' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 620px;
}
.hero-badge {
  display: inline-block;
  padding: 6px 16px; border-radius: 50px;
  background: rgba(255,61,90,0.15); border: 1px solid rgba(255,61,90,0.3);
  color: var(--primary); font-size: 13px; font-weight: 600;
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.1; font-weight: 700;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub { font-size: 18px; color: var(--text-muted); margin-bottom: 36px; max-width: 480px; }

.hero-search {
  display: flex; flex-wrap: wrap; gap: 10px;
  background: var(--card-bg); border: 1px solid var(--border);
  padding: 12px; border-radius: var(--radius);
  margin-bottom: 36px;
}
.search-field {
  display: flex; align-items: center; gap: 8px;
  background: var(--dark3); border-radius: var(--radius-sm);
  padding: 10px 14px; flex: 1; min-width: 150px;
}
.search-field select, .search-field input {
  background: none; border: none; outline: none;
  color: var(--text); font-size: 14px; width: 100%;
}
.search-field select option { background: var(--dark3); }
.btn-find {
  padding: 12px 24px; border-radius: var(--radius-sm); border: none;
  background: var(--gradient); color: white; font-size: 15px; font-weight: 700;
  cursor: pointer; white-space: nowrap; transition: opacity .2s;
}
.btn-find:hover { opacity: .9; }

.hero-stats { display: flex; align-items: center; gap: 20px; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 22px; font-weight: 800; color: var(--primary); }
.stat span { font-size: 12px; color: var(--text-muted); }
.stat-div { width: 1px; height: 36px; background: var(--border); }

.hero-profiles {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  width: 320px; height: 400px;
  display: none;
}
@media (min-width: 1024px) { .hero-profiles { display: block; } }

.float-card {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  background: var(--card-bg); border: 1px solid var(--border);
  padding: 12px 16px; border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  animation: floatCard 3s ease-in-out infinite;
}
.float-card img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.float-card div { display: flex; flex-direction: column; }
.float-card strong { font-size: 14px; }
.float-card span { font-size: 12px; color: var(--text-muted); }
.float-card .online-dot {
  width: 10px; height: 10px; border-radius: 50%; background: #22c55e;
  margin-left: auto; flex-shrink: 0;
}
.fc1 { top: 5%; left: 0; animation-delay: 0s; }
.fc2 { top: 30%; right: 0; animation-delay: 0.8s; }
.fc3 { top: 55%; left: 10%; animation-delay: 1.6s; }
.fc4 { bottom: 5%; right: 5%; animation-delay: 0.4s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── Section Shared ───────────────────────────── */
.section-title {
  font-size: clamp(28px, 4vw, 40px); font-weight: 800;
  margin-bottom: 12px;
}
.section-sub { color: var(--text-muted); font-size: 16px; margin-bottom: 48px; }
.section-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 16px; margin-bottom: 32px;
}
.section-header .section-sub { margin-bottom: 0; }

/* ── Features ─────────────────────────────────── */
.features {
  padding: 100px 0;
  background: var(--dark2);
  text-align: center;
}
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px;
  transition: border-color .3s, transform .3s;
}
.feature-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.feat-icon { font-size: 36px; margin-bottom: 16px; }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* ── Profiles ─────────────────────────────────── */
.profiles-section { padding: 100px 0; }

.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.tab {
  padding: 8px 18px; border-radius: 50px; border: 1px solid var(--border);
  background: transparent; color: var(--text-muted); font-size: 13px; cursor: pointer;
  transition: all .2s;
}
.tab.active, .tab:hover {
  background: var(--primary); border-color: var(--primary); color: white;
}

.profiles-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.profile-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  position: relative;
}
.profile-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.profile-card:hover .profile-actions { opacity: 1; }

.profile-img-wrap { position: relative; padding-top: 120%; overflow: hidden; }
.profile-img-wrap img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .4s;
}
.profile-card:hover .profile-img-wrap img { transform: scale(1.06); }

.profile-badge {
  position: absolute; top: 10px; left: 10px;
  display: flex; gap: 6px;
}
.badge {
  padding: 3px 8px; border-radius: 50px; font-size: 11px; font-weight: 600;
}
.badge-online { background: rgba(34,197,94,0.9); color: white; }
.badge-new { background: rgba(255,61,90,0.9); color: white; }
.badge-hot { background: rgba(255,122,69,0.9); color: white; }
.badge-vip { background: linear-gradient(135deg,#ffd700,#ff8c00); color: #000; }

.profile-blur-hint {
  position: absolute; bottom: 8px; right: 8px;
  background: rgba(0,0,0,0.7); border-radius: 50px;
  padding: 4px 10px; font-size: 11px; color: var(--text-muted);
}

.profile-actions {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; justify-content: center; gap: 12px; padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  opacity: 0; transition: opacity .3s;
}
.action-btn {
  width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer;
  font-size: 18px; display: flex; align-items: center; justify-content: center;
  transition: transform .2s;
}
.action-btn:hover { transform: scale(1.15); }
.btn-like { background: var(--gradient); }
.btn-skip { background: var(--dark3); }
.btn-super { background: linear-gradient(135deg, #a855f7, #6366f1); }

.profile-info { padding: 14px 16px; }
.profile-name-row { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.profile-name { font-size: 16px; font-weight: 700; }
.profile-age { color: var(--text-muted); font-size: 14px; }
.profile-loc { color: var(--text-muted); font-size: 12px; }
.profile-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.profile-tag {
  padding: 3px 10px; border-radius: 50px;
  background: var(--dark3); border: 1px solid var(--border);
  font-size: 11px; color: var(--text-muted);
}

.load-more { text-align: center; margin-top: 40px; }
.btn-load {
  padding: 14px 40px; border-radius: 50px; border: 1px solid var(--border);
  background: transparent; color: var(--text); font-size: 15px; cursor: pointer;
  transition: all .2s;
}
.btn-load:hover { background: var(--gradient); border-color: transparent; }

/* ── Testimonials ─────────────────────────────── */
.testimonials {
  padding: 100px 0;
  background: var(--dark2);
  text-align: center;
}
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 48px;
}
.testi-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px; text-align: left;
  transition: border-color .3s;
}
.testi-card.featured { border-color: var(--primary); }
.testi-stars { color: var(--accent); font-size: 18px; margin-bottom: 16px; }
.testi-card p { color: var(--text-muted); font-size: 15px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-user { display: flex; align-items: center; gap: 12px; }
.testi-user img { width: 40px; height: 40px; border-radius: 50%; }
.testi-user div { display: flex; flex-direction: column; }
.testi-user strong { font-size: 14px; }
.testi-user span { font-size: 12px; color: var(--text-muted); }

/* ── Pricing ──────────────────────────────────── */
.pricing { padding: 100px 0; text-align: center; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; margin-top: 48px; align-items: start;
}
.plan-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px; position: relative;
}
.plan-card.popular {
  border-color: var(--primary);
  background: linear-gradient(to bottom, rgba(255,61,90,0.08), var(--card-bg));
  transform: scale(1.04);
}
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); padding: 4px 16px; border-radius: 50px;
  font-size: 12px; font-weight: 700; color: white; white-space: nowrap;
}
.plan-name { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.plan-price {
  font-size: 40px; font-weight: 800; color: var(--primary); margin-bottom: 24px;
}
.plan-price span { font-size: 16px; color: var(--text-muted); font-weight: 400; }
.plan-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 12px; }
.plan-features li { font-size: 14px; color: var(--text-muted); text-align: left; }

.btn-plan {
  width: 100%; padding: 14px; border-radius: 50px; border: none;
  font-size: 15px; font-weight: 700; cursor: pointer; transition: opacity .2s, transform .2s;
}
.btn-plan:hover { opacity: .9; transform: translateY(-2px); }
.btn-plan.free { background: var(--dark3); color: var(--text); border: 1px solid var(--border); }
.btn-plan.premium { background: var(--gradient); color: white; }
.btn-plan.vip { background: linear-gradient(135deg, #ffd700, #ff8c00); color: #000; }

/* ── CTA Banner ───────────────────────────────── */
.cta-banner {
  padding: 80px 24px; text-align: center;
  background: linear-gradient(135deg, rgba(255,61,90,0.15) 0%, rgba(255,122,69,0.1) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cta-banner h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 12px; }
.cta-banner p { color: var(--text-muted); font-size: 18px; margin-bottom: 32px; }
.btn-cta {
  padding: 18px 48px; border-radius: 50px; border: none;
  background: var(--gradient); color: white; font-size: 18px; font-weight: 700;
  cursor: pointer; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(255,61,90,0.35); }

/* ── Footer ───────────────────────────────────── */
.footer { padding: 80px 0 32px; background: var(--dark2); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-logo { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badges span {
  padding: 4px 12px; border-radius: 50px; border: 1px solid var(--border);
  font-size: 12px; color: var(--text-muted);
}
.footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 16px; color: var(--text); }
.footer-col a { display: block; color: var(--text-muted); font-size: 13px; margin-bottom: 10px; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  text-align: center;
}
.footer-bottom p { color: var(--text-muted); font-size: 12px; }

/* ── Modals ───────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.modal {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 24px; padding: 40px 36px;
  width: 100%; max-width: 460px;
  position: relative; max-height: 90vh; overflow-y: auto;
}
.modal.profile-view { max-width: 560px; padding: 0; overflow: hidden; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--dark3); color: var(--text-muted); font-size: 14px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s; z-index: 10;
}
.modal-close:hover { background: var(--border); }
.modal-logo { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.modal h2 { font-size: 26px; font-weight: 800; margin-bottom: 6px; }
.modal-sub { color: var(--text-muted); font-size: 14px; margin-bottom: 28px; }

.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.form-field input, .form-field select {
  padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--dark3);
  color: var(--text); font-size: 14px; outline: none;
  transition: border-color .2s;
}
.form-field input:focus, .form-field select:focus { border-color: var(--primary); }
.form-field select option { background: var(--dark3); }
.forgot { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

.form-check {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 20px; font-size: 13px; color: var(--text-muted);
}
.form-check input { margin-top: 2px; accent-color: var(--primary); }

.btn-modal-submit {
  width: 100%; padding: 14px; border-radius: 50px; border: none;
  background: var(--gradient); color: white; font-size: 16px; font-weight: 700;
  cursor: pointer; margin-bottom: 16px; transition: opacity .2s;
}
.btn-modal-submit:hover { opacity: .9; }
.modal-switch { text-align: center; color: var(--text-muted); font-size: 14px; margin-bottom: 16px; }
.modal-divider {
  display: flex; align-items: center; gap: 12px;
  color: var(--text-muted); font-size: 12px; margin-bottom: 16px;
}
.modal-divider::before, .modal-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.social-logins { display: flex; gap: 12px; }
.btn-social {
  flex: 1; padding: 12px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--dark3);
  color: var(--text); font-size: 14px; font-weight: 600; cursor: pointer;
  transition: border-color .2s;
}
.btn-social:hover { border-color: var(--primary); }

/* Profile view modal */
.pvm-img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.pvm-body { padding: 24px; }
.pvm-name { font-size: 26px; font-weight: 800; margin-bottom: 4px; }
.pvm-meta { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; }
.pvm-bio { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.pvm-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.pvm-tag {
  padding: 6px 14px; border-radius: 50px;
  background: var(--dark3); border: 1px solid var(--border);
  font-size: 12px; color: var(--text-muted);
}
.pvm-actions { display: flex; gap: 12px; }
.pvm-btn {
  flex: 1; padding: 14px; border-radius: 50px; border: none;
  font-size: 15px; font-weight: 700; cursor: pointer; transition: opacity .2s;
}
.pvm-btn-like { background: var(--gradient); color: white; }
.pvm-btn-msg { background: var(--dark3); color: var(--text); border: 1px solid var(--border); }
.pvm-btn-like:hover, .pvm-btn-msg:hover { opacity: .85; }

/* ── Responsive ───────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .hero { text-align: center; }
  .hero-content { margin: 0 auto; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-search { flex-direction: column; }
  .search-field { min-width: unset; }
  .hero-stats { justify-content: center; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .plan-card.popular { transform: none; }
  .modal { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── Scrollbar ────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }
