/* ══════════════════════════════════
   SPARK — Main Stylesheet v2
   Bold Modern Romantic Theme
   ══════════════════════════════════ */

:root {
  --bg:        #fdf7f4;
  --bg2:       #f8f0eb;
  --bg3:       #f0e4db;
  --card:      #ffffff;
  --border:    #e2d4ca;
  --border2:   #c8b5a8;

  --rose:      #c8344f;
  --rose-lt:   #e8788a;
  --rose-dk:   #9e1f38;
  --rose-bg:   #fdeef1;

  --gold:      #b8803a;
  --gold-lt:   #d4a060;
  --gold-bg:   #fdf3e7;

  --plum:      #6a3a7a;
  --plum-lt:   #9868a8;
  --plum-bg:   #f3eef8;

  --text:      #1a1210;
  --text2:     #4a3830;
  --text3:     #7a6258;
  --text4:     #b0988e;

  --online:    #2ea865;
  --shadow:    rgba(60,30,15,0.10);
  --shadow-lg: rgba(60,30,15,0.18);

  --radius:    16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
}

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

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  font-weight: 400;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ── GRAIN ── */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1000; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px;
}

/* ── BLOBS ── */
.ambient { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(100px); animation: blob-float 18s ease-in-out infinite; }
.blob1 { width: 800px; height: 800px; background: rgba(200,52,79,0.10); top: -250px; right: -200px; }
.blob2 { width: 600px; height: 600px; background: rgba(184,128,58,0.08); bottom: -150px; left: -150px; animation-delay: -7s; }
.blob3 { width: 500px; height: 500px; background: rgba(106,58,122,0.06); top: 45%; left: 38%; animation-delay: -13s; }
@keyframes blob-float {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(25px,-18px) scale(1.03); }
  66%     { transform: translate(-18px,25px) scale(0.98); }
}

/* ── CONTAINER ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 2; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-weight: 800; letter-spacing: -0.5px; color: var(--text); font-family: Georgia, 'Times New Roman', serif; }
h1 { font-size: clamp(2.8rem, 5.5vw, 4.8rem); line-height: 1.08; }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); line-height: 1.15; }
h3 { font-size: 1.25rem; line-height: 1.3; font-weight: 700; font-family: 'Inter', sans-serif; }
em { font-style: italic; color: var(--rose); }
a { text-decoration: none; color: inherit; }
p { line-height: 1.72; color: var(--text2); font-size: 0.975rem; font-weight: 400; }
strong { font-weight: 700; color: var(--text); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 600;
  border: none; cursor: pointer; transition: all 0.22s;
  text-decoration: none; white-space: nowrap; letter-spacing: 0.1px;
}
.btn-rose {
  background: linear-gradient(135deg, var(--rose), var(--rose-dk));
  color: white; box-shadow: 0 4px 20px rgba(200,52,79,0.38);
}
.btn-rose:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,52,79,0.50); }
.btn-ghost { background: transparent; color: var(--text2); border: 1.5px solid var(--border2); font-weight: 500; }
.btn-ghost:hover { background: var(--bg3); border-color: var(--text3); color: var(--text); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border2); font-weight: 500; }
.btn-outline:hover { border-color: var(--rose); color: var(--rose); }
.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-gold { background: linear-gradient(135deg, var(--gold), #8a5f28); color: white; box-shadow: 0 4px 20px rgba(184,128,58,0.38); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184,128,58,0.50); }
.btn-block { width: 100%; justify-content: center; border-radius: var(--radius-sm); }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 500;
  display: flex; align-items: center; gap: 32px; padding: 16px 40px;
  background: rgba(253,247,244,0.92); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border); transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 32px var(--shadow); }
.logo { font-family: Georgia, serif; font-weight: 800; font-size: 1.8rem; color: var(--rose); letter-spacing: -1px; flex-shrink: 0; }
.nav-links { display: flex; gap: 28px; margin-left: 16px; }
.nav-link { font-size: 0.875rem; color: var(--text2); font-weight: 500; transition: color 0.2s; }
.nav-link:hover { color: var(--rose); }
.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.online-pill {
  display: flex; align-items: center; gap: 7px;
  background: var(--bg3); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 50px; font-size: 0.78rem; color: var(--text2); font-weight: 500;
}
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--online); animation: pulse-green 2s ease-in-out infinite; }
@keyframes pulse-green {
  0%,100% { box-shadow: 0 0 0 0 rgba(46,168,101,0.5); }
  50%     { box-shadow: 0 0 0 5px rgba(46,168,101,0); }
}

/* ── HERO ── */
.hero { min-height: calc(100vh - 69px); display: flex; align-items: center; padding: 80px 40px; position: relative; z-index: 2; }
.hero-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; gap: 80px; width: 100%; }
.hero-text { flex: 1; max-width: 540px; }
.eyebrow {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--rose); margin-bottom: 22px;
  padding: 5px 14px; background: var(--rose-bg); border-radius: 50px;
  border: 1px solid rgba(200,52,79,0.18);
}
.hero-body { font-size: 1.05rem; color: var(--text2); margin: 20px 0 36px; max-width: 460px; line-height: 1.75; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 36px; font-size: 0.82rem; color: var(--text3); font-weight: 500; }
.trust-item strong { color: var(--text); font-weight: 700; }
.trust-sep { color: var(--border2); font-size: 1.1rem; }

/* ── PROFILE CARDS ── */
.hero-visual { position: relative; flex-shrink: 0; width: 380px; height: 480px; }
.card-stack { position: relative; width: 300px; margin: 0 auto; }
.profile-card { background: var(--card); border-radius: 20px; box-shadow: 0 24px 64px var(--shadow-lg), 0 4px 16px var(--shadow); overflow: hidden; border: 1px solid var(--border); }
.card-main { position: relative; z-index: 2; }
.card-behind { position: absolute; top: -14px; left: -22px; width: 300px; opacity: 0.55; transform: rotate(-4deg); z-index: 1; pointer-events: none; }
.card-photo { width: 100%; height: 200px; display: flex; align-items: center; justify-content: center; }
.card-emoji { font-size: 5rem; }
.card-body { padding: 18px 18px 12px; }
.card-name-row { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.card-name { font-family: Georgia, serif; font-size: 1.25rem; font-weight: 700; color: var(--text); }
.verified-badge { background: linear-gradient(135deg, var(--rose), var(--rose-dk)); color: white; width: 20px; height: 20px; border-radius: 50%; font-size: 0.62rem; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.card-loc { font-size: 0.78rem; color: var(--text3); margin-bottom: 10px; font-weight: 500; }
.card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.tag { background: var(--bg3); border: 1px solid var(--border); padding: 3px 10px; border-radius: 50px; font-size: 0.72rem; color: var(--text2); font-weight: 500; }
.card-match-bar { display: flex; align-items: center; gap: 10px; }
.match-label { font-size: 0.75rem; color: var(--rose); font-weight: 600; white-space: nowrap; }
.match-track { flex: 1; height: 4px; background: var(--bg3); border-radius: 2px; overflow: hidden; }
.match-fill { height: 100%; background: linear-gradient(90deg, var(--rose-lt), var(--rose)); border-radius: 2px; }
.card-actions { display: flex; align-items: center; justify-content: space-around; padding: 14px 18px; border-top: 1px solid var(--border); }
.act-btn { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--border); background: var(--bg); font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.act-skip:hover { border-color: var(--text3); background: var(--bg3); }
.act-chat { width: 52px; height: 52px; background: linear-gradient(135deg, var(--rose), var(--rose-dk)); border-color: transparent; color: white; box-shadow: 0 6px 20px rgba(200,52,79,0.4); }
.act-chat:hover { transform: scale(1.08); }
.act-like:hover { border-color: var(--rose); background: var(--rose-bg); color: var(--rose); }

/* ── FLOAT BADGES ── */
.float-badge { position: absolute; display: flex; align-items: center; gap: 10px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 14px; box-shadow: 0 12px 40px var(--shadow-lg); animation: badge-float 4s ease-in-out infinite; }
.badge-tl { top: 30px; left: -30px; }
.badge-br { bottom: 60px; right: -30px; animation-delay: -2s; }
@keyframes badge-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.badge-emoji { font-size: 1.4rem; }
.badge-title { font-size: 0.78rem; font-weight: 600; color: var(--text); }
.badge-sub { font-size: 0.7rem; color: var(--text3); font-weight: 500; }

/* ── SECTION TAGS ── */
.section-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--rose); margin-bottom: 14px; padding: 5px 14px; background: var(--rose-bg); border-radius: 50px; border: 1px solid rgba(200,52,79,0.18); }
.section-title { margin-bottom: 48px; }

/* ── HOW IT WORKS ── */
.how-section { padding: 100px 0; background: var(--bg2); position: relative; z-index: 2; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.step-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 28px; position: relative; transition: all 0.28s; box-shadow: 0 2px 16px var(--shadow); }
.step-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px var(--shadow-lg); }
.step-num { font-family: Georgia, serif; font-size: 3.5rem; font-weight: 800; color: var(--border); position: absolute; top: 20px; right: 24px; line-height: 1; }
.step-icon { font-size: 2.2rem; margin-bottom: 16px; }
.step-card h3 { margin-bottom: 10px; }
.step-card p { font-size: 0.9rem; }

/* ── MODES ── */
.modes-section { padding: 100px 0; position: relative; z-index: 2; }
.modes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.mode-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 28px; position: relative; overflow: hidden; transition: all 0.28s; box-shadow: 0 2px 16px var(--shadow); }
.mode-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px var(--shadow-lg); }
.mode-glow { position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; filter: blur(60px); opacity: 0.55; }
.glow-rose { background: rgba(200,52,79,0.3); }
.glow-gold { background: rgba(184,128,58,0.3); }
.glow-purple { background: rgba(106,58,122,0.3); }
.mode-featured { border-color: var(--gold); box-shadow: 0 6px 32px rgba(184,128,58,0.2); }
.featured-ribbon { position: absolute; top: 20px; right: -24px; background: linear-gradient(135deg, var(--gold), #8a5f28); color: white; font-size: 0.65rem; font-weight: 700; letter-spacing: 1px; padding: 4px 36px; transform: rotate(35deg); }
.mode-icon-lg { font-size: 2.8rem; margin-bottom: 20px; }
.mode-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.mode-card p { font-size: 0.9rem; margin-bottom: 16px; }
.mode-pill { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 50px; }
.mode-pill.free    { background: rgba(46,168,101,0.1);  color: #1a7a48; border: 1px solid rgba(46,168,101,0.25); }
.mode-pill.premium { background: var(--rose-bg); color: var(--rose); border: 1px solid rgba(200,52,79,0.25); }
.mode-pill.vip     { background: var(--gold-bg); color: var(--gold); border: 1px solid rgba(184,128,58,0.25); }

/* ── TESTIMONIALS ── */
.proof-section { padding: 100px 0; background: var(--bg2); border-top: 1px solid var(--border); position: relative; z-index: 2; }
.testimonials { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; transition: all 0.28s; box-shadow: 0 2px 16px var(--shadow); }
.testi-card:hover { box-shadow: 0 12px 40px var(--shadow-lg); }
.testi-featured { border-color: rgba(200,52,79,0.4); }
.testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card p { font-size: 0.92rem; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.testi-author strong { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text); }
.testi-author div:last-child { font-size: 0.78rem; color: var(--text3); font-weight: 500; }

/* ── CTA BANNER ── */
.cta-banner { padding: 100px 40px; text-align: center; position: relative; z-index: 2; overflow: hidden; background: linear-gradient(135deg, #1a0a0e 0%, var(--rose-dk) 50%, #2a0818 100%); }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"); background-size: 128px; opacity: 0.06; }
.cta-inner { position: relative; z-index: 1; }
.cta-banner h2 { color: white; margin-bottom: 14px; }
.cta-banner em { color: rgba(255,190,200,0.95); }
.cta-banner p { color: rgba(255,255,255,0.75); margin-bottom: 36px; font-size: 1.05rem; }
.cta-banner .btn-rose { background: white; color: var(--rose); box-shadow: 0 8px 30px rgba(0,0,0,0.25); }
.cta-banner .btn-rose:hover { background: #fff8f9; }

/* ── FOOTER ── */
.footer { background: #130a08; color: rgba(255,255,255,0.65); padding: 60px 40px 0; position: relative; z-index: 2; }
.footer-inner { max-width: 1160px; margin: 0 auto; display: flex; gap: 80px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand { flex: 1; }
.footer-brand .logo { color: rgba(255,180,190,0.9); margin-bottom: 10px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.35); }
.footer-links { display: flex; gap: 60px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-heading { font-size: 0.68rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 4px; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom { max-width: 1160px; margin: 0 auto; padding: 20px 0; display: flex; justify-content: space-between; font-size: 0.78rem; color: rgba(255,255,255,0.28); }

/* ── PRICING ── */
.pricing-hero { padding: 100px 40px 60px; text-align: center; position: relative; z-index: 2; }
.pricing-hero h1 { margin-bottom: 16px; }
.pricing-hero p { font-size: 1.05rem; max-width: 480px; margin: 0 auto 36px; }
.billing-toggle { display: inline-flex; align-items: center; gap: 6px; background: var(--bg3); border: 1.5px solid var(--border); border-radius: 50px; padding: 5px 6px; }
.billing-opt { padding: 7px 20px; border-radius: 50px; cursor: pointer; transition: all 0.2s; font-weight: 500; color: var(--text2); font-size: 0.875rem; }
.billing-opt.active { background: white; color: var(--text); font-weight: 600; box-shadow: 0 2px 12px var(--shadow); }
.save-badge { background: var(--rose-bg); color: var(--rose); font-size: 0.68rem; font-weight: 700; padding: 2px 8px; border-radius: 50px; margin-left: 4px; }

.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 1020px; margin: 60px auto; padding: 0 40px; position: relative; z-index: 2; }
.plan-card { background: var(--card); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 36px 28px; transition: all 0.28s; box-shadow: 0 2px 16px var(--shadow); display: flex; flex-direction: column; }
.plan-card.featured { border-color: var(--rose); box-shadow: 0 10px 48px rgba(200,52,79,0.18); transform: scale(1.04); }
.plan-badge { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 14px; border-radius: 50px; margin-bottom: 20px; background: var(--rose-bg); color: var(--rose); border: 1px solid rgba(200,52,79,0.28); align-self: flex-start; }
.plan-badge.gold { background: var(--gold-bg); color: var(--gold); border-color: rgba(184,128,58,0.28); }
.plan-name { font-family: Georgia, serif; font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; }
.plan-desc { font-size: 0.875rem; color: var(--text3); margin-bottom: 24px; line-height: 1.65; }
.plan-price { display: flex; align-items: baseline; gap: 3px; margin-bottom: 28px; }
.price-currency { font-size: 1.1rem; color: var(--text2); font-weight: 600; }
.price-amount { font-family: Georgia, serif; font-size: 3.5rem; font-weight: 800; line-height: 1; color: var(--text); }
.price-period { font-size: 0.8rem; color: var(--text3); font-weight: 500; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; flex: 1; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--text2); }
.feat-check { color: var(--rose); font-size: 0.82rem; flex-shrink: 0; margin-top: 2px; font-weight: 700; }
.feat-cross { color: var(--text4); font-size: 0.82rem; flex-shrink: 0; margin-top: 2px; }
.feat-locked { color: var(--text4); }

/* ── CHAT PAGE ── */
.chat-page { height: 100vh; display: flex; flex-direction: column; overflow: hidden; }
.chat-nav { flex-shrink: 0; }
.chat-layout { flex: 1; display: grid; grid-template-columns: 1fr 1fr 340px; overflow: hidden; min-height: 0; }
.video-pane { position: relative; background: #160c0a; overflow: hidden; border-right: 1px solid rgba(255,255,255,0.05); }
.video-pane-you { background: #0c140a; }
.video-feed-inner { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; pointer-events: none; }
.video-avatar-lg { font-size: 6rem; }
.video-name-sm { font-size: 1rem; color: rgba(255,255,255,0.5); font-weight: 500; }
.pane-chip { position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,0.08); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.10); padding: 5px 12px; border-radius: 50px; font-size: 0.72rem; color: rgba(255,255,255,0.65); font-weight: 600; }
.stranger-overlay { position: absolute; bottom: 82px; left: 20px; }
.s-name { font-family: Georgia, serif; font-size: 1.5rem; color: white; font-weight: 700; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.s-meta { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 4px; display: flex; gap: 8px; align-items: center; font-weight: 500; }
.s-tag { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.15); padding: 2px 8px; border-radius: 50px; }
.video-controls { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(to top, rgba(16,8,6,0.85), transparent); display: flex; align-items: center; justify-content: center; gap: 12px; }
.vc-btn { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.07); backdrop-filter: blur(10px); color: white; font-size: 1rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; }
.vc-btn:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.28); }
.vc-btn.danger { background: rgba(200,52,79,0.2); border-color: rgba(200,52,79,0.5); }
.vc-btn.danger:hover { background: var(--rose); }
.vc-skip { background: linear-gradient(135deg, var(--rose), var(--rose-dk)); border: none; height: 46px; padding: 0 24px; border-radius: 50px; color: white; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.88rem; cursor: pointer; transition: all 0.2s; white-space: nowrap; box-shadow: 0 4px 16px rgba(200,52,79,0.45); }
.vc-skip:hover { transform: scale(1.04); }
.vc-like { background: linear-gradient(135deg, #e06080, var(--rose)); border: none; box-shadow: 0 4px 16px rgba(200,52,79,0.4); }
.vc-like:hover { transform: scale(1.08); }

.wait-overlay { position: absolute; inset: 0; z-index: 40; background: rgba(16,8,6,0.93); backdrop-filter: blur(20px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; }
.wait-spinner { width: 52px; height: 52px; border-radius: 50%; border: 2.5px solid rgba(200,52,79,0.2); border-top-color: var(--rose); animation: spin 0.9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.wait-label { font-family: Georgia, serif; font-size: 1.25rem; font-weight: 700; color: rgba(255,255,255,0.55); }
.wait-sub { font-size: 0.78rem; color: rgba(255,255,255,0.3); font-weight: 500; }

.chat-sidebar { display: flex; flex-direction: column; background: var(--bg); border-left: 1.5px solid var(--border); }
.sidebar-tabs { display: flex; border-bottom: 1.5px solid var(--border); flex-shrink: 0; }
.stab { flex: 1; padding: 14px 8px; font-size: 0.78rem; font-weight: 600; text-align: center; cursor: pointer; color: var(--text3); border-bottom: 2.5px solid transparent; transition: all 0.2s; }
.stab.active { color: var(--rose); border-bottom-color: var(--rose); }
.tab-content { display: none; flex: 1; flex-direction: column; overflow: hidden; }
.tab-content.active { display: flex; }

.msgs-area { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.msgs-area::-webkit-scrollbar { width: 3px; }
.msgs-area::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 2px; }
.msg { max-width: 82%; padding: 10px 14px; border-radius: 16px; font-size: 0.875rem; line-height: 1.55; font-weight: 400; }
.msg.them { background: var(--bg3); border: 1px solid var(--border); align-self: flex-start; border-bottom-left-radius: 4px; color: var(--text); }
.msg.me { background: linear-gradient(135deg, var(--rose), var(--rose-dk)); color: white; align-self: flex-end; border-bottom-right-radius: 4px; }
.msg.sys { background: transparent; color: var(--text4); font-size: 0.75rem; text-align: center; align-self: center; font-style: italic; }
.msg-input-row { padding: 12px; border-top: 1.5px solid var(--border); display: flex; gap: 8px; align-items: flex-end; flex-shrink: 0; }
.msg-ta { flex: 1; background: var(--bg3); border: 1.5px solid var(--border); border-radius: 10px; padding: 9px 14px; font-family: 'Inter', sans-serif; font-size: 0.875rem; color: var(--text); resize: none; outline: none; transition: border-color 0.2s; min-height: 38px; max-height: 90px; }
.msg-ta:focus { border-color: var(--rose-lt); }
.msg-send { width: 38px; height: 38px; border-radius: 10px; border: none; flex-shrink: 0; background: linear-gradient(135deg, var(--rose), var(--rose-dk)); color: white; font-size: 0.95rem; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
.msg-send:hover { transform: scale(1.06); }

.profile-tab { overflow-y: auto; padding: 20px; }
.pt-avatar { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; background: linear-gradient(135deg, #f9d4c8, #e8a4b0); }
.pt-name { font-family: Georgia, serif; font-size: 1.4rem; font-weight: 700; text-align: center; color: var(--text); }
.pt-loc { font-size: 0.78rem; color: var(--text3); text-align: center; margin-top: 4px; font-weight: 500; }
.pt-bio { font-size: 0.83rem; color: var(--text3); text-align: center; margin-top: 8px; font-style: italic; }
.pt-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; justify-content: center; }
.pt-tag { background: var(--bg3); border: 1px solid var(--border); padding: 3px 10px; border-radius: 50px; font-size: 0.72rem; color: var(--text2); font-weight: 500; }
.pt-actions { display: flex; gap: 8px; margin-top: 16px; }
.pt-actions .btn { flex: 1; justify-content: center; padding: 10px; font-size: 0.83rem; border-radius: 10px; }
.pt-section { font-size: 0.66rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text4); margin: 18px 0 10px; }
.compat-score { text-align: center; padding: 14px; background: var(--rose-bg); border: 1px solid rgba(200,52,79,0.18); border-radius: var(--radius-sm); margin-top: 8px; }
.compat-num { font-family: Georgia, serif; font-size: 2rem; font-weight: 800; color: var(--rose); }
.compat-label { font-size: 0.7rem; color: var(--text3); font-weight: 500; margin-top: 2px; }

.matches-list { overflow-y: auto; padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.match-item { display: flex; align-items: center; gap: 10px; padding: 11px 12px; background: var(--card); border: 1.5px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; transition: all 0.2s; }
.match-item:hover { border-color: var(--rose-lt); background: var(--rose-bg); }
.match-av { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.match-info { flex: 1; min-width: 0; }
.match-name { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.match-preview { font-size: 0.75rem; color: var(--text3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 2px; }
.match-right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; flex-shrink: 0; }
.match-time { font-size: 0.7rem; color: var(--text4); font-weight: 500; }
.unread { background: var(--rose); color: white; width: 18px; height: 18px; border-radius: 50%; font-size: 0.65rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }

.match-popup { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(26,18,16,0.7); backdrop-filter: blur(20px); align-items: center; justify-content: center; }
.match-popup.show { display: flex; }
.match-card-popup { background: var(--card); border: 1.5px solid var(--border); border-radius: 24px; padding: 48px 40px; text-align: center; width: 360px; box-shadow: 0 40px 100px var(--shadow-lg); animation: pop-in 0.45s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes pop-in { from { transform: scale(0.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.popup-hearts { font-size: 3.5rem; margin-bottom: 12px; }
.popup-title { font-family: Georgia, serif; font-size: 2.4rem; font-weight: 800; color: var(--rose); margin-bottom: 6px; }
.popup-sub { font-size: 0.9rem; color: var(--text3); margin-bottom: 28px; }
.popup-avatars { display: flex; align-items: center; justify-content: center; margin-bottom: 28px; }
.p-av { width: 64px; height: 64px; border-radius: 50%; font-size: 2rem; display: flex; align-items: center; justify-content: center; border: 3px solid var(--bg); }
.p-av:first-child { background: linear-gradient(135deg, #f9d4c8, #e8a4b0); margin-right: -12px; z-index: 1; }
.p-av:last-child  { background: linear-gradient(135deg, #d4e8f9, #a4b8e8); }
.popup-btns { display: flex; gap: 10px; }
.popup-btns .btn { flex: 1; justify-content: center; border-radius: var(--radius-sm); padding: 12px; }

.gate-overlay { display: none; position: fixed; inset: 0; z-index: 800; background: rgba(26,18,16,0.65); backdrop-filter: blur(16px); align-items: center; justify-content: center; }
.gate-overlay.show { display: flex; }
.gate-card { background: var(--card); border: 1.5px solid var(--border); border-radius: 22px; padding: 44px 36px; text-align: center; width: 400px; box-shadow: 0 30px 80px var(--shadow-lg); animation: slide-up 0.3s ease; position: relative; }
@keyframes slide-up { from { transform: translateY(24px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.gate-icon { font-size: 3rem; margin-bottom: 16px; }
.gate-title { font-family: Georgia, serif; font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; }
.gate-sub { font-size: 0.9rem; color: var(--text2); margin-bottom: 28px; line-height: 1.65; }
.gate-features { text-align: left; margin-bottom: 28px; display: flex; flex-direction: column; gap: 9px; }
.gate-feat { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--text2); }
.gate-feat-icon { color: var(--rose); font-weight: 700; }
.gate-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--border); background: var(--bg3); color: var(--text3); font-size: 1rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; }
.gate-close:hover { background: var(--rose); border-color: var(--rose); color: white; }

.filter-overlay { display: none; position: fixed; inset: 0; z-index: 600; background: rgba(0,0,0,0.4); backdrop-filter: blur(8px); align-items: center; justify-content: center; }
.filter-overlay.open { display: flex; }
.filter-panel { background: var(--card); border: 1.5px solid var(--border); border-radius: 22px; width: 460px; max-width: 95vw; max-height: 88vh; overflow-y: auto; padding: 36px; box-shadow: 0 40px 100px var(--shadow-lg); animation: slide-up 0.3s ease; }
.fp-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.fp-title { font-family: Georgia, serif; font-size: 1.55rem; font-weight: 800; }
.fp-close { width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--border); background: var(--bg3); color: var(--text3); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.fp-close:hover { background: var(--rose); border-color: var(--rose); color: white; }
.fp-section { margin-bottom: 26px; }
.fp-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text3); margin-bottom: 12px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { padding: 7px 16px; border-radius: 50px; font-size: 0.83rem; font-weight: 500; border: 1.5px solid var(--border); background: var(--bg3); color: var(--text2); cursor: pointer; transition: all 0.2s; }
.chip:hover { border-color: var(--rose-lt); color: var(--rose); }
.chip.sel { background: var(--rose-bg); border-color: var(--rose); color: var(--rose); font-weight: 600; }
.range-row { display: flex; align-items: center; gap: 12px; }
.range-in { flex: 1; -webkit-appearance: none; height: 3px; background: var(--border); border-radius: 2px; outline: none; }
.range-in::-webkit-slider-thumb { -webkit-appearance: none; width: 16px; height: 16px; border-radius: 50%; background: var(--rose); cursor: pointer; box-shadow: 0 0 0 3px rgba(200,52,79,0.2); }
.range-val { font-family: Georgia, serif; font-size: 1rem; font-weight: 700; color: var(--rose); min-width: 30px; text-align: right; }
.tog-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border); }
.tog-row:last-child { border-bottom: none; }
.tog-info .tog-name { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.tog-info .tog-desc { font-size: 0.74rem; color: var(--text3); margin-top: 2px; }
.tog { width: 42px; height: 22px; border-radius: 50px; background: var(--border2); position: relative; cursor: pointer; transition: background 0.2s; flex-shrink: 0; }
.tog.on { background: var(--rose); }
.tog::after { content: ''; position: absolute; width: 16px; height: 16px; border-radius: 50%; background: white; top: 3px; left: 3px; transition: transform 0.2s; box-shadow: 0 1px 4px rgba(0,0,0,0.25); }
.tog.on::after { transform: translateX(20px); }
.fp-actions { display: flex; gap: 10px; margin-top: 6px; }
.fp-actions .btn { flex: 1; justify-content: center; border-radius: var(--radius-sm); }
.premium-lock { display: flex; align-items: center; gap: 8px; padding: 8px 14px; background: var(--gold-bg); border: 1px solid rgba(184,128,58,0.28); border-radius: var(--radius-xs); font-size: 0.78rem; color: var(--gold); font-weight: 500; }

.toast-container { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 9999; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.toast { background: var(--text); color: white; padding: 11px 24px; border-radius: 50px; font-size: 0.85rem; font-weight: 500; box-shadow: 0 8px 28px rgba(0,0,0,0.3); animation: toast-in 0.3s ease; pointer-events: none; }
@keyframes toast-in { from { transform: translateY(10px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ── AUTH ── */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; position: relative; z-index: 2; }
.auth-card { background: var(--card); border: 1.5px solid var(--border); border-radius: 22px; padding: 48px 44px; width: 440px; max-width: 100%; box-shadow: 0 20px 60px var(--shadow-lg); }
.auth-logo { text-align: center; margin-bottom: 8px; }
.auth-headline { font-family: Georgia, serif; font-size: 2rem; font-weight: 800; text-align: center; margin-bottom: 4px; }
.auth-sub { font-size: 0.875rem; color: var(--text3); text-align: center; margin-bottom: 32px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text2); margin-bottom: 7px; letter-spacing: 0.3px; }
.form-input { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; font-size: 0.9rem; outline: none; transition: border-color 0.2s; }
.form-input:focus { border-color: var(--rose-lt); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.auth-divider { display: flex; align-items: center; gap: 14px; margin: 20px 0; color: var(--text4); font-size: 0.8rem; font-weight: 500; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-link { text-align: center; font-size: 0.85rem; color: var(--text3); margin-top: 20px; }
.auth-link a { color: var(--rose); font-weight: 600; }
.social-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 12px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; font-size: 0.875rem; font-weight: 500; cursor: pointer; transition: all 0.2s; margin-bottom: 10px; }
.social-btn:hover { border-color: var(--border2); background: var(--bg3); }

/* ══════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════ */

/* ── Tablet ── */
@media (max-width: 1100px) {
  .chat-layout { grid-template-columns: 1fr 1fr; }
  .chat-sidebar { display: none; }
}

@media (max-width: 900px) {
  .steps-grid, .modes-grid, .testimonials, .plans-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .hero-inner { flex-direction: column; gap: 40px; }
  .hero-visual { width: 100%; max-width: 340px; }
  .hero-text { max-width: 100%; }
  .hero { padding: 60px 24px; min-height: auto; }
}

/* ── Mobile ── */
@media (max-width: 640px) {
  /* Nav */
  .nav { padding: 12px 16px; gap: 8px; }
  .nav-links { display: none; }
  .nav-actions { gap: 8px; }
  .online-pill { display: none; }
  .nav .btn-ghost { display: none; }
  .nav .btn-rose { padding: 8px 16px; font-size: 0.8rem; }

  /* General */
  .container { padding: 0 16px; }
  .hero { padding: 36px 16px; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .hero-body { font-size: 0.95rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .stats-bar { display: grid; grid-template-columns: 1fr 1fr; }
  .stat-cell { padding: 14px 16px; }

  /* Sections */
  .how-section, .modes-section, .proof-section { padding: 48px 0; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links { flex-direction: column; gap: 24px; }
  .pricing-hero { padding: 60px 16px 40px; }
  .plans-grid { padding: 0 16px; }
  .auth-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  /* ── Chat page mobile layout ──
     Stack: stranger video (top, ~45%), controls row, your video (small pip), chat below */
  .chat-layout {
    grid-template-columns: 1fr;
    grid-template-rows: 45vh auto;
    overflow: hidden;
  }

  /* Stranger pane fills top 45% */
  .video-pane { min-height: 0; }

  /* Your video — small picture-in-picture over stranger pane */
  .video-pane-you {
    position: absolute !important;
    top: 8px; right: 8px;
    width: 90px; height: 120px;
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    z-index: 10;
    grid-row: unset; grid-column: unset;
  }
  .video-pane-you .pane-chip { display: none; }
  .video-pane-you .video-controls { padding: 6px; gap: 4px; }
  .video-pane-you .vc-btn { width: 28px; height: 28px; font-size: 0.7rem; }
  .video-pane-you .video-feed-inner .video-avatar-lg { font-size: 2.5rem; }
  .video-pane-you .video-feed-inner .video-name-sm { display: none; }
  #camStartBtn { font-size: 0.6rem !important; padding: 5px 10px !important; margin-top: 4px !important; }

  /* Chat sidebar shows below video on mobile */
  .chat-sidebar {
    display: flex !important;
    grid-row: 2;
    height: calc(55vh - 57px); /* remaining space minus nav */
    border-left: none;
    border-top: 1.5px solid var(--border);
  }

  /* Nav on chat page — more compact */
  .chat-nav .nav { padding: 10px 12px; }
  .chat-nav select { font-size: 0.75rem; padding: 5px 10px; }
  .chat-nav .btn { padding: 7px 12px; font-size: 0.75rem; }

  /* Nudge bar — simpler on mobile */
  .signup-nudge { flex-direction: column; gap: 8px; align-items: flex-start; padding: 8px 14px; }
  .nudge-actions { width: 100%; justify-content: flex-start; }

  /* Filter panel */
  .filter-panel { padding: 24px 20px; border-radius: 16px 16px 0 0; width: 100%; max-width: 100%; position: fixed; bottom: 0; left: 0; max-height: 80vh; }
  .filter-overlay.open { align-items: flex-end; }
}

/* ── Very small phones ── */
@media (max-width: 380px) {
  h1 { font-size: 2rem; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 1.5rem; }
}
