/* =========================
   RESET / FIX
========================= */

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

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at top, #4b267a, #120016);
  color: #fff;
}

/* =========================
   HERO
========================= */

.hero {
  padding: 70px 16px 40px;
  text-align: center;
  max-width: 100%;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero h2 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 14px;
  opacity: .9;
}

.hero p {
  max-width: 560px;
  margin: 0 auto 12px;
  opacity: .85;
}

/* =========================
   LIVE COUNT
========================= */

.live-count {
  margin-top: 14px;
  font-size: 1rem;
  font-weight: 600;
  color: #fbcfe8;
}

/* =========================
   CTA
========================= */

.cta-wrap {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 100%;
}

.cta {
  padding: 16px 36px;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 40px;
  box-shadow: 0 0 30px rgba(168,85,247,.6);
  transition: all .25s ease;
  animation: pulse 2.5s infinite;
  white-space: nowrap;
}

.cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 45px rgba(236,72,153,.9);
}

.cta.ghost {
  background: transparent;
  border: 2px solid #ec4899;
  color: #ec4899;
  box-shadow: none;
  animation: none;
}

.cta.ghost:hover {
  background: rgba(236,72,153,.15);
}

/* =========================
   NOTE / HOW
========================= */

.note {
  display: block;
  margin-top: 14px;
  font-size: .9rem;
  opacity: .75;
}

.how {
  margin-top: 16px;
  font-size: .9rem;
  opacity: .85;
}

/* =========================
   PHONE MOCKUP
========================= */

.phone-wrapper {
  display: flex;
  justify-content: center;
  padding: 30px 16px 50px;
  max-width: 100%;
}

.phone {
  width: 100%;
  max-width: 360px;
  background: #000;
  border-radius: 40px;
  padding: 20px 14px 26px;
  box-shadow: 0 0 60px rgba(0,0,0,.6);
}

.phone-header {
  text-align: center;
  font-weight: 600;
  padding: 10px;
  background: #111;
  border-radius: 20px;
  margin-bottom: 14px;
}

.bubble {
  display: flex;
  align-items: flex-end;
  margin-bottom: 14px;
}

.bubble img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-right: 8px;
}

.bubble .text {
  background: #2f1a46;
  padding: 12px 16px;
  border-radius: 18px;
  max-width: 220px;
  font-size: .95rem;
}

/* typing indicator */
.typing {
  font-size: .8rem;
  opacity: .6;
  margin-left: 46px;
  font-style: italic;
}

/* =========================
   FOOTER
========================= */

footer {
  padding: 50px 16px 60px;
  text-align: center;
  max-width: 100%;
}

/* =========================
   DISCLAIMER
========================= */

.disclaimer {
  display: block;
  margin-top: 20px;
  font-size: .7rem;
  opacity: .5;
}

/* =========================
   TOAST
========================= */

#toast {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: rgba(0,0,0,.85);
  color: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: .8rem;
  opacity: 0;
  transition: all .4s ease;
  z-index: 9999;
  max-width: calc(100% - 32px);
  text-align: center;
}

#toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* =========================
   ANIMATIONS
========================= */

@keyframes pulse {
  0% { box-shadow: 0 0 20px rgba(168,85,247,.6); }
  50% { box-shadow: 0 0 40px rgba(236,72,153,.9); }
  100% { box-shadow: 0 0 20px rgba(168,85,247,.6); }
}
/* =========================
   PROFILES SECTION
========================= */

.profiles-section {
  padding: 60px 16px;
  text-align: center;
}

.profiles-section h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.profiles-sub {
  font-size: .9rem;
  opacity: .7;
  margin-bottom: 30px;
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.profile-card {
  position: relative;
  background: #0b0613;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0,0,0,.4);
}

.profile-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.profile-info {
  padding: 14px;
  display: flex;
  justify-content: space-between;
  font-size: .95rem;
}

.profile-btn {
  display: block;
  margin: 0 14px 14px;
  padding: 10px;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.badge {
  position: absolute;
  top: 10px;
  padding: 4px 10px;
  font-size: .7rem;
  border-radius: 12px;
  background: rgba(0,0,0,.7);
}

.badge.verified {
  left: 10px;
}

.badge.online {
  right: 10px;
  color: #22c55e;
}

.profiles-cta {
  margin-top: 10px;
}
