/* Partner Up Girl, vitrine. Charte : rose #FF8BA7 → violet #C77DFF, navy #2D2D44, crème #F7F3F6. */

:root {
  --cream: #f7f3f6;
  --cream-deep: #ece6ec;
  --surface: #ffffff;
  --surface-soft: #fcfafc;
  --peach: #ffe3d6;
  --navy: #2d2d44;
  --ink: #3c3c56;
  --muted: #8b8799;
  --muted-soft: #bab6c5;
  --pink: #ff8ba7;
  --purple: #c77dff;
  --mauve: #b07ecb;
  --lavender: #ddbbf7;
  --grad: linear-gradient(120deg, #ff8ba7 0%, #c77dff 100%);
  --grad-soft: linear-gradient(120deg, rgba(255, 139, 167, 0.14), rgba(199, 125, 255, 0.12));
  --shadow: 0 20px 50px rgba(46, 42, 74, 0.1);
  --shadow-soft: 0 10px 30px rgba(46, 42, 74, 0.07);
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --pill: 999px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
section {
  position: relative;
}

/* ---------- Typo marque ---------- */
.wordmark {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.9;
}
.wordmark .partner {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.5px;
}
.wordmark .partner .dot {
  color: var(--pink);
}
.wordmark .girl {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  color: var(--mauve);
  margin-top: -4px;
}
.wordmark .girl .heart {
  color: var(--pink);
}

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 246, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(46, 42, 74, 0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  width: 40px;
  height: 40px;
}
.nav-logo .wordmark .partner {
  font-size: 19px;
}
.nav-logo .wordmark .girl {
  font-size: 15px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.15s;
}
.nav-links a:hover {
  color: var(--purple);
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--pill);
  padding: 14px 26px;
  cursor: pointer;
  border: none;
  transition: transform 0.1s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn-grad {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 12px 26px rgba(199, 125, 255, 0.32);
}
.btn-grad:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(199, 125, 255, 0.42);
}
.btn-ghost {
  background: var(--surface);
  color: var(--navy);
  border: 1px solid var(--cream-deep);
}
.btn-ghost:hover {
  background: var(--surface-soft);
  border-color: var(--lavender);
}
.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 70px 0 90px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -160px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(199, 125, 255, 0.18), transparent 62%);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -220px;
  left: -180px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255, 139, 167, 0.16), transparent 62%);
  z-index: 0;
}
.hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--cream-deep);
  color: var(--purple);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 7px 14px;
  border-radius: var(--pill);
  box-shadow: var(--shadow-soft);
}
.hero-eyebrow .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 0 rgba(255, 139, 167, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 139, 167, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 139, 167, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 139, 167, 0);
  }
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(36px, 5.2vw, 58px);
  line-height: 1.08;
  color: var(--navy);
  margin: 22px 0 6px;
  letter-spacing: -0.5px;
}
.hero h1 .script {
  display: block;
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(40px, 5.8vw, 66px);
  line-height: 1.15;
}
.hero p.lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 460px;
  margin: 18px 0 30px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-note svg {
  flex: none;
}

/* Visuel hero */
.hero-visual {
  position: relative;
}
.hero-photo {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  background: var(--cream-deep);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  background: var(--surface);
  border-radius: var(--r-md);
  box-shadow: var(--shadow);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
}
.hero-badge .ic {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.hero-badge .t {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
}
.hero-badge .s {
  font-size: 11.5px;
  color: var(--muted);
}
.hero-badge.b1 {
  top: 26px;
  left: -28px;
}
.hero-badge.b2 {
  bottom: 34px;
  right: -26px;
}

/* ---------- Bandeau ancrage ---------- */
.strip {
  background: var(--navy);
  color: #fff;
  padding: 18px 0;
}
.strip .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
  font-size: 14.5px;
}
.strip strong {
  color: #fff;
}
.strip .accent {
  color: var(--pink);
  font-weight: 600;
}

/* ---------- Sections génériques ---------- */
.sec {
  padding: 88px 0;
}
.sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
.kicker {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 14px;
}
.sec-head h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 40px);
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.4px;
}
.sec-head p {
  color: var(--muted);
  font-size: 16px;
  margin-top: 14px;
}

/* ---------- Étapes ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--cream-deep);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.step .num {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step h3 {
  font-size: 18px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 8px;
}
.step p {
  color: var(--muted);
  font-size: 14.5px;
}

/* ---------- Features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--cream-deep);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.feature .ic {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature h3 {
  font-size: 17.5px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 8px;
}
.feature p {
  color: var(--muted);
  font-size: 14.5px;
}

/* ---------- Sports ---------- */
.sports {
  background: var(--surface-soft);
  border-top: 1px solid var(--cream-deep);
  border-bottom: 1px solid var(--cream-deep);
}
.sport-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto;
}
.sport-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--surface);
  border: 1px solid var(--cream-deep);
  border-radius: var(--pill);
  padding: 10px 18px 10px 12px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy);
  box-shadow: var(--shadow-soft);
  transition: transform 0.12s ease;
}
.sport-chip:hover {
  transform: translateY(-2px);
}
.sport-chip .dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex: none;
}

/* ---------- Premium ---------- */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.plan {
  position: relative;
  border-radius: var(--r-xl);
  padding: 34px 30px;
  border: 1px solid var(--cream-deep);
  background: var(--surface);
  display: flex;
  flex-direction: column;
}
.plan.free {
  box-shadow: var(--shadow-soft);
}
.plan.pro {
  background: var(--navy);
  color: #fff;
  border: none;
  box-shadow: var(--shadow);
}
.plan.pro .tag {
  color: var(--lavender);
}
.plan.pro li svg path {
  stroke: var(--lavender);
}
.plan .ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 5px 12px;
  border-radius: var(--pill);
}
.plan ul {
  flex: 1;
}
.plan .plan-cta {
  margin-top: 26px;
}
.plan .plan-cta .btn {
  width: 100%;
}
.plan.club .btn-plan {
  background: #fff;
  color: var(--purple);
}
.plan.free .btn-plan {
  background: var(--grad);
  color: #fff;
}
.plan.pro .btn-plan {
  background: var(--grad);
  color: #fff;
}
.plan.club {
  background: var(--grad);
  color: #fff;
  border: none;
  box-shadow: 0 24px 50px rgba(199, 125, 255, 0.34);
  position: relative;
  overflow: hidden;
}
.plan.club::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 65%);
}
.plan .tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}
.plan.free .tag {
  color: var(--purple);
}
.plan h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 26px;
  margin: 8px 0 4px;
}
.plan.free h3 {
  color: var(--navy);
}
.plan .price {
  font-size: 15px;
  margin-bottom: 20px;
  opacity: 0.9;
}
.plan .price b {
  font-size: 30px;
  font-family: 'Playfair Display', serif;
}
.plan ul {
  list-style: none;
  display: grid;
  gap: 12px;
}
.plan li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
}
.plan li svg {
  flex: none;
  margin-top: 3px;
}
.plan.free li svg path {
  stroke: var(--purple);
}

/* ---------- Waitlist / CTA ---------- */
.cta-final {
  padding: 96px 0;
  text-align: center;
}
.cta-card {
  position: relative;
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 64px 32px;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 50% 0%, rgba(199, 125, 255, 0.28), transparent 60%);
}
.cta-card > * {
  position: relative;
  z-index: 1;
}
.cta-card h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
}
.cta-card p {
  color: rgba(255, 255, 255, 0.8);
  margin: 14px auto 30px;
  max-width: 460px;
  font-size: 16px;
}
.waitlist {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.waitlist input {
  flex: 1;
  min-width: 220px;
  border: none;
  border-radius: var(--pill);
  padding: 15px 22px;
  font-size: 15px;
  font-family: inherit;
  color: var(--navy);
  background: #fff;
}
.waitlist input:focus {
  outline: 2px solid var(--purple);
}
.waitlist-ok {
  color: #fff;
  margin-top: 16px;
  font-size: 14.5px;
  display: none;
}

/* ---------- Footer ---------- */
footer {
  background: var(--surface-soft);
  border-top: 1px solid var(--cream-deep);
  padding: 54px 0 34px;
}
.foot {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.foot-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.foot-logo img {
  width: 44px;
  height: 44px;
}
.foot-tag {
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 12px;
  max-width: 260px;
}
.foot-col h4 {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--muted-soft);
  margin-bottom: 14px;
  font-weight: 600;
}
.foot-col a {
  display: block;
  color: var(--ink);
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.15s;
}
.foot-col a:hover {
  color: var(--purple);
}
.foot-bottom {
  border-top: 1px solid var(--cream-deep);
  margin-top: 40px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted-soft);
  font-size: 13px;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .hero-visual {
    max-width: 380px;
    margin: 0 auto;
  }
  .hero-badge.b1 {
    left: -10px;
  }
  .hero-badge.b2 {
    right: -10px;
  }
  .steps,
  .features {
    grid-template-columns: 1fr;
  }
  .plans {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
}
@media (max-width: 520px) {
  .sec {
    padding: 64px 0;
  }
  .hero {
    padding: 44px 0 64px;
  }
  .cta-card {
    padding: 48px 22px;
  }
}

/* ---- Pages légales ---- */
.legal { max-width: 780px; margin: 0 auto; padding: 48px 22px 72px; }
.legal h1 { font-size: 34px; color: var(--navy); margin-bottom: 6px; }
.legal .legal-meta { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
.legal h2 { font-size: 20px; color: var(--navy); margin: 30px 0 10px; }
.legal h3 { font-size: 16px; color: var(--navy); margin: 20px 0 8px; }
.legal p, .legal li { font-size: 15px; line-height: 1.7; color: var(--ink); }
.legal ul { padding-left: 22px; margin: 10px 0; }
.legal li { margin: 5px 0; }
.legal a { color: var(--mauve); }
.legal .note { background: var(--surface); border: 1.5px solid var(--peach); border-radius: 16px; padding: 16px 18px; margin: 18px 0; }
.legal table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 14px; }
.legal th, .legal td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--cream-deep); color: var(--ink); }
.legal th { color: var(--navy); }
.legal .back-link { display: inline-block; margin-top: 34px; color: var(--mauve); font-weight: 600; text-decoration: none; }
