/* ============================================================
   WONA CHAT — home.css
   Coomeet-style landing: full-viewport hero + below-fold sections
   ============================================================ */

/* ── SITE HEADER ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 54px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 1.25rem;
  line-height: 1;
}
.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

/* Header tabs */
.header-tabs {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9999px;
  padding: 3px;
}
.htab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 18px;
  border-radius: 9999px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: all 200ms ease;
  white-space: nowrap;
}
.htab:hover  { color: rgba(255,255,255,0.85); }
.htab.active {
  background: rgba(255,255,255,0.15);
  color: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.htab-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #ef4444;
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
}

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.icon-btn {
  width: 34px; height: 34px;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  transition: all 200ms ease;
}
.icon-btn:hover { background: rgba(255,255,255,0.15); color: #fff; }

.hdr-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a855f7, #3b82f6);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 800; color: #fff;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.2);
}

.btn-login {
  padding: 6px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  font-size: .82rem; font-weight: 600;
  text-decoration: none;
  transition: all 200ms ease;
}
.btn-login:hover { background: rgba(255,255,255,0.15); color: #fff; }

.btn-signup {
  padding: 6px 18px;
  border-radius: 9999px;
  background: #2563eb;
  color: #fff;
  font-size: .82rem; font-weight: 700;
  text-decoration: none;
  transition: all 200ms ease;
  box-shadow: 0 2px 12px rgba(37,99,235,0.5);
}
.btn-signup:hover { background: #1d4ed8; transform: translateY(-1px); }

/* ── HERO WRAP ───────────────────────────────────────────────── */
.hero-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Media background */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* Gradient fallback — looks like a real warm webcam room */
.hero-gradient-bg {
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse 80% 80% at 65% 35%,
      rgba(180,130,100,0.55) 0%,
      rgba(120,80,60,0.4)  30%,
      rgba(40,30,50,0.8)   70%,
      rgba(10,12,25,0.98) 100%),
    linear-gradient(160deg, #1a0a0a 0%, #2a1520 40%, #0a0d1e 100%);
}

/* Animated bokeh blobs */
.hero-bokeh {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-bokeh span {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18;
  animation: drift 12s ease-in-out infinite alternate;
}
.hero-bokeh span:nth-child(1) { width:300px;height:300px;background:#e879f9;top:-60px;right:20%;animation-delay:0s; }
.hero-bokeh span:nth-child(2) { width:240px;height:240px;background:#fbbf24;top:20%;left:5%;animation-delay:-3s; }
.hero-bokeh span:nth-child(3) { width:200px;height:200px;background:#3b82f6;bottom:10%;right:10%;animation-delay:-6s; }
.hero-bokeh span:nth-child(4) { width:160px;height:160px;background:#a855f7;top:50%;left:40%;animation-delay:-2s; }
.hero-bokeh span:nth-child(5) { width:280px;height:280px;background:#ec4899;bottom:-40px;left:25%;animation-delay:-8s; }
.hero-bokeh span:nth-child(6) { width:120px;height:120px;background:#06b6d4;top:15%;right:5%;animation-delay:-5s; }
@keyframes drift {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(30px,20px) scale(1.1); }
}

/* Dark overlay: heavier at edges, lighter in centre */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 55% at 50% 42%, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.58) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.15) 65%, rgba(0,0,0,0.72) 100%);
}

/* ── HERO CTA CARD ───────────────────────────────────────────── */
.hero-cta-card {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 0 16px;
}

/* 🔥 N girls online */
.live-count {
  font-size: .9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.live-count span { color: #fbbf24; }

/* THE big start button — matches Coomeet's blue pill */
.btn-start-video {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 56px;
  border-radius: 9999px;
  background: #2563eb;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow:
    0 4px 30px rgba(37,99,235,0.65),
    0 1px 0 rgba(255,255,255,0.15) inset;
  transition: all 220ms ease;
  animation: btn-pulse 2.8s ease infinite;
  position: relative;
  overflow: hidden;
}
.btn-start-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 60%);
  border-radius: inherit;
  pointer-events: none;
}
.btn-start-video:hover {
  background: #1d4ed8;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 40px rgba(37,99,235,0.75);
  color: #fff;
}
.btn-start-icon { font-size: .9rem; }
@keyframes btn-pulse {
  0%,100% { box-shadow: 0 4px 30px rgba(37,99,235,0.65), 0 0 0 0 rgba(37,99,235,0.4); }
  50%     { box-shadow: 0 4px 30px rgba(37,99,235,0.65), 0 0 0 12px rgba(37,99,235,0); }
}

/* Gender selector pills */
.gender-select {
  display: flex;
  gap: 6px;
}
.gsel {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 16px;
  border-radius: 9999px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.7);
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms ease;
}
.gsel:hover  { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.35); }
.gsel.active { background: rgba(37,99,235,0.55); border-color: #2563eb; color: #fff; }

/* Sub-line */
.cta-sub {
  font-size: .78rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Trust badges — bottom left */
.hero-trust {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 10;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 9999px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: .73rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

/* Online ticker — bottom right */
.online-ticker {
  position: absolute;
  bottom: 28px;
  right: 28px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.ticker-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 7px #22c55e;
  animation: glow 1.8s ease infinite;
  flex-shrink: 0;
}
@keyframes glow { 0%,100%{opacity:1;} 50%{opacity:.45;} }

/* ── WHY SECTION ─────────────────────────────────────────────── */
.why-section {
  background: #090d1e;
  padding: 96px 24px;
}
.why-inner {
  max-width: 1060px;
  margin: 0 auto;
}
.why-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.why-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #818cf8;
  margin-bottom: 10px;
}
.why-sub {
  margin-top: 10px;
  font-size: .95rem;
}
.grad-text {
  background: linear-gradient(135deg, #e879f9, #a78bfa, #67e8f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.why-card {
  padding: 28px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  transition: border-color 200ms, transform 200ms;
}
.why-card:hover {
  border-color: rgba(99,102,241,0.4);
  transform: translateY(-4px);
}
.why-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}
.why-card h3 { font-size: .95rem; margin-bottom: 8px; color: #f1f5f9; }
.why-card p  { font-size: .83rem; line-height: 1.65; color: #94a3b8; }

/* ── STEPS ───────────────────────────────────────────────────── */
.steps-section {
  background: #060918;
  padding: 96px 24px;
}
.steps-inner {
  max-width: 1060px;
  margin: 0 auto;
}
.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 180px;
  flex: 1;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a855f7, #3b82f6);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem; font-weight: 900; color: #fff;
  margin-bottom: 14px;
  box-shadow: 0 0 24px rgba(168,85,247,0.4);
}
.step-item h4 { font-size: .92rem; margin-bottom: 6px; color: #f1f5f9; }
.step-item p  { font-size: .8rem; color: #64748b; line-height: 1.55; }
.step-arrow {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.2);
  padding: 0 8px;
  flex-shrink: 0;
  margin-bottom: 28px;
}

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testi-section {
  background: #090d1e;
  padding: 96px 24px;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testi-card {
  padding: 26px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
}
.testi-stars  { color: #fbbf24; font-size: .88rem; margin-bottom: 12px; letter-spacing: 2px; }
.testi-body   { font-size: .85rem; color: #94a3b8; line-height: 1.7; margin-bottom: 16px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-av     {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.testi-name { font-size: .85rem; font-weight: 700; color: #e2e8f0; }
.testi-loc  { font-size: .74rem; color: #475569; }

/* ── STATS BAR ───────────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, #a855f7, #6366f1, #2563eb);
  padding: 48px 24px;
}
.stats-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.stat-lbl {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

/* ── BOTTOM CTA ──────────────────────────────────────────────── */
.bottom-cta {
  background: #060918;
  padding: 100px 24px;
  text-align: center;
}
.bottom-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}
.bottom-cta h2  { margin-bottom: 12px; }
.bottom-cta > .bottom-cta-inner > p:first-of-type {
  font-size: .98rem; margin-bottom: 36px;
}
.bottom-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.btn-join-free {
  padding: 14px 30px;
  border-radius: 9999px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-size: .9rem; font-weight: 600;
  text-decoration: none;
  transition: all 200ms ease;
}
.btn-join-free:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.bottom-cta-note {
  font-size: .73rem;
  color: #475569;
}
.bottom-cta-note a { color: #64748b; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: #04060f;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 24px 28px;
}
.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr repeat(3,1fr);
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand p {
  font-size: .83rem;
  color: #475569;
  margin-top: 12px;
  max-width: 260px;
  line-height: 1.65;
}
.footer-socials { display: flex; gap: 8px; margin-top: 16px; }
.social-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: #64748b;
  text-decoration: none;
  transition: all 200ms;
}
.social-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }
.footer-col h5 {
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: #475569; margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: .83rem; color: #64748b; text-decoration: none; transition: color 150ms; }
.footer-col ul a:hover { color: #94a3b8; }
.footer-bottom {
  max-width: 1060px; margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
  font-size: .75rem; color: #334155;
}
.footer-online {
  display: flex; align-items: center; gap: 6px;
  font-size: .74rem; color: #4ade80;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .header-tabs { display: none; }
  .why-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { flex-wrap: wrap; gap: 8px; }
  .step-arrow { display: none; }
  .step-item  { max-width: 45%; }
  .stats-inner { gap: 16px; }
  .stat-item { padding: 12px 20px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .why-grid, .testi-grid { grid-template-columns: 1fr; }
  .step-item  { max-width: 100%; }
  .hero-trust { display: none; }
  .btn-start-video { padding: 14px 40px; font-size: 1rem; }
  .gender-select { flex-wrap: wrap; justify-content: center; }
  .footer-inner  { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .stats-inner   { flex-direction: column; gap: 12px; }
  .stat-divider  { width: 40px; height: 1px; }
  .header-right .btn-login  { display: none; }
}
