/* ================================================
   SwissToMeet — Cougar LP — Feuille de style globale
   ================================================ */

:root {
  --bg:         #07040a;
  --surface:    #110b16;
  --surface-2:  #1a1020;
  --text:       #fff;
  --text-muted: #7a6070;
  --accent:     #e8507a;
  --gold:       #c9925a;
  --gradient:   linear-gradient(135deg, #c9925a 0%, #e8507a 100%);
  --radius:     16px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100dvh;
  overflow-x: hidden;
}

/* ── HERO ─────────────────────────────────────── */

.hero {
  display: flex;
  flex-direction: column;
}

.hero-photo {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #2a0d1e 0%, #0e0612 60%, var(--bg) 100%);
}

.hero-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

.hero-content {
  padding-top: 3vh;
  padding-bottom: 8vh;
  padding-left: 24px;
  padding-right: 24px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 146, 90, 0.35);
  background: rgba(201, 146, 90, 0.08);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 9vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 16px;
}

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

.hero-sub {
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.7;
  max-width: 300px;
  margin: 0 auto;
}

/* ── INTRO ────────────────────────────────────── */

.intro {
  padding: 52px 24px 48px;
  max-width: 580px;
  margin: 0 auto;
  width: 100%;
}

h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.55rem, 6.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.intro-text {
  color: #fff;
  line-height: 1.8;
  font-size: 0.97rem;
}

.intro-text + .intro-text {
  margin-top: 14px;
}

/* ── CTA SECTION ──────────────────────────────── */

.cta-section {
  padding: 52px 24px 72px;
  text-align: center;
  background: var(--surface);
  border-radius: var(--radius) var(--radius) 0 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(232, 80, 122, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Profils floutés */
.profiles-preview {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 22px;
}

.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.profile-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(232, 80, 122, 0.25);
  position: relative;
}

.profile-blob {
  width: 110%;
  height: 110%;
  margin: -5%;
  filter: blur(1px);
}

.profile-avatar img {
  width: 110%;
  height: 110%;
  margin: -5%;
  object-fit: cover;
  filter: blur(1px);
  display: block;
}

.profile-blob.p1 {
  background: radial-gradient(ellipse at 40% 35%, #d4896a 0%, #8b3a5e 45%, #2a0d1a 100%);
}
.profile-blob.p2 {
  background: radial-gradient(ellipse at 50% 30%, #c9925a 0%, #7a2e52 40%, #1e0b14 100%);
}
.profile-blob.p3 {
  background: radial-gradient(ellipse at 45% 35%, #e8507a 0%, #6a2040 45%, #250c18 100%);
}

.profile-name {
  font-size: 0.72rem;
  color: #fff;
  letter-spacing: 0.02em;
}

/* Compteur */
.active-count {
  font-size: 0.88rem;
  color: #fff;
  margin-bottom: 32px;
}

.active-count strong {
  color: var(--accent);
  font-weight: 600;
}

/* Bouton */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 22px 32px;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.03em;
  animation: pulse-glow 2s ease-in-out infinite;
  transition: transform 0.15s ease;
  position: relative;
  z-index: 1;
}

.cta-btn:active {
  transform: scale(0.97);
}

.cta-arrow {
  font-size: 1.6rem;
  transition: transform 0.2s ease;
}

.cta-btn:hover .cta-arrow {
  transform: translateX(4px);
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 30px rgba(232, 80, 122, 0.35),
                0 4px 24px rgba(0, 0, 0, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 70px rgba(232, 80, 122, 0.7),
                0 0 110px rgba(201, 146, 90, 0.3),
                0 4px 32px rgba(0, 0, 0, 0.4);
    transform: scale(1.04);
  }
}

.cta-note {
  margin-top: 16px;
  font-size: 0.78rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta-note::before,
.cta-note::after {
  content: '·';
  opacity: 0.4;
}

/* ── RESPONSIVE ───────────────────────────────── */

@media (min-width: 480px) {
  .profile-avatar {
    width: 84px;
    height: 84px;
  }

  .cta-btn {
    font-size: 1.05rem;
    padding: 20px 52px;
  }
}

@media (min-width: 768px) {
  .hero-photo {
    height: 72vh;
  }

  .hero-content {
    padding: 36px 48px 64px;
  }

  .hero-sub {
    max-width: 380px;
  }

  .intro {
    padding: 72px 48px 64px;
  }

  .cta-section {
    padding: 72px 48px 96px;
  }

  .profile-avatar {
    width: 96px;
    height: 96px;
  }

  .profiles-preview {
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    max-width: 700px;
    margin: 0 auto;
  }
}

/* ── STATUT EN LIGNE ──────────────────────────── */

.profile-status {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  color: #4ade80;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.7);
}
