/* ==============================================
   Before The Bliss — style.css
   Mobile-first · Bold dark theme · Vibrant accents
   ============================================== */

:root {
  --bg:           #0a0a0f;
  --bg-card:      #111118;
  --bg-section:   #0f0f16;
  --accent:       #e91e8c;   /* hot pink / magenta */
  --accent-2:     #7c3aed;   /* electric violet    */
  --gold:         #f59e0b;
  --text:         #f0f0f5;
  --text-muted:   #8888a8;
  --border:       rgba(255, 255, 255, 0.07);
  --radius:       12px;
  --max-width:    860px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─────────────────────────────────────────────
   Utility
───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ─────────────────────────────────────────────
   Hero
───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 60px;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(10, 10, 15, 0.65) 0%, rgba(10, 10, 15, 0.88) 60%, var(--bg) 100%),
    radial-gradient(ellipse 80% 55% at 50% -5%,  rgba(124, 58, 237, 0.18) 0%, transparent 70%),
    url('../assets/hero.png') center / cover no-repeat;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, var(--bg) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

/* Badge */
.badge {
  display: inline-block;
  background: rgba(233, 30, 140, 0.12);
  border: 1px solid rgba(233, 30, 140, 0.38);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

/* Headline */
.hero__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  background: linear-gradient(135deg, #ffffff 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__title em {
  font-style: italic;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sub-headline */
.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 40px;
}

/* Trust stripe */
.hero__trust {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.hero__trust strong { color: var(--text); }

/* ─────────────────────────────────────────────
   Buttons
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  transition:
    transform     0.15s ease,
    box-shadow    0.15s ease;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow:
    0 0 28px rgba(233, 30, 140, 0.45),
    0 4px 18px rgba(0, 0, 0, 0.45);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 0 44px rgba(233, 30, 140, 0.65),
    0 8px 28px rgba(0, 0, 0, 0.45);
  outline: none;
}

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

/* Hero CTA */
.btn--hero {
  font-size: 1.05rem;
  padding: 18px 40px;
}

/* Bottom CTA — animated pulse */
.btn--cta {
  font-size: 1.2rem;
  padding: 22px 56px;
  animation: pulse 2.4s ease-in-out infinite;
}

.btn__arrow {
  font-size: 1.15em;
  display: inline-block;
  transition: transform 0.15s ease;
}

.btn:hover .btn__arrow {
  transform: translateX(5px);
}

@keyframes pulse {
  0%, 100% {
    box-shadow:
      0 0 28px rgba(233, 30, 140, 0.45),
      0 4px 18px rgba(0, 0, 0, 0.45);
  }
  50% {
    box-shadow:
      0 0 55px rgba(233, 30, 140, 0.72),
      0 8px 36px rgba(0, 0, 0, 0.5);
  }
}

/* ─────────────────────────────────────────────
   Social Proof — Stats
───────────────────────────────────────────── */
.social-proof {
  padding: 52px 0;
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat__number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  background: linear-gradient(135deg, var(--gold), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────────
   Section titles (shared)
───────────────────────────────────────────── */
.section__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  text-align: center;
  margin-bottom: 44px;
  letter-spacing: -0.01em;
}

/* ─────────────────────────────────────────────
   Testimonials
───────────────────────────────────────────── */
.testimonials {
  padding: 76px 0;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px 24px;
  position: relative;
  transition: border-color 0.2s ease;
}

.testimonial:hover {
  border-color: rgba(233, 30, 140, 0.3);
}

/* Decorative opening quote */
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 18px;
  font-size: 4.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  pointer-events: none;
}

.testimonial__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
  padding-top: 20px;
}

.testimonial__author {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* ─────────────────────────────────────────────
   Value / Curiosity Bullets
───────────────────────────────────────────── */
.value {
  padding: 76px 0;
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.value__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.value__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: border-color 0.2s ease, transform 0.15s ease;
}

.value__item:hover {
  border-color: rgba(233, 30, 140, 0.32);
  transform: translateY(-2px);
}

.value__icon {
  font-size: 1.9rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 1px;
}

.value__item strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 6px;
}

.value__item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─────────────────────────────────────────────
   CTA Section
───────────────────────────────────────────── */
.cta {
  padding: 88px 0 108px;
}

.cta__box {
  text-align: center;
  background:
    radial-gradient(ellipse 65% 80% at 50% 50%, rgba(124, 58, 237, 0.14) 0%, transparent 70%),
    var(--bg-card);
  border: 1px solid rgba(124, 58, 237, 0.22);
  border-radius: 20px;
  padding: 64px 32px;
}

.cta__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 440px;
  margin: 0 auto 40px;
}

.cta__note {
  margin-top: 18px;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ─────────────────────────────────────────────
   Footer
───────────────────────────────────────────── */
.footer {
  padding: 52px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer__brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 22px;
}

.footer__disclosure,
.footer__legal,
.footer__copy {
  font-size: 0.74rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 10px;
  line-height: 1.7;
}

.footer__disclosure strong { color: var(--text); }

/* ─────────────────────────────────────────────
   Responsive tweaks
───────────────────────────────────────────── */
@media (max-width: 480px) {
  .btn--hero  { font-size: 0.95rem; padding: 16px 26px; }
  .btn--cta   { font-size: 1rem;    padding: 18px 32px; }
  .stats      { gap: 32px; }
  .cta__box   { padding: 44px 18px; }
}
