/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #000000;
  --black-card: #111111;
  --black-mid:  #1a1a1a;
  --pink:       #E2A8F1;
  --pink-dark:  #c880e8;
  --white:      #ffffff;
  --cream:      #FAF6EF;
  --muted:      rgba(255,255,255,0.55);
  --font-head:  'Anton', sans-serif;
  --font-sans:  'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.nav-logo img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  filter: none;
}

.nav-logo span {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 600px;
}

.hero-logo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(226,168,241,0.25);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(4rem, 18vw, 14rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.01em;
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  font-size: 1.25rem;
  color: rgba(255,255,255,0.25);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--white);
  color: var(--black);
}
.btn-primary:hover { background: var(--cream); transform: translateY(-1px); }

.btn-buy {
  background: var(--pink);
  color: var(--black);
  font-weight: 400;
}
.btn-buy:hover { background: var(--pink-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--pink);
  border: 1.5px solid var(--pink);
}
.btn-outline:hover { background: var(--pink); color: var(--black); }

/* ── Container ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Section Titles ── */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.section-title.light { color: var(--white); }

.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 3rem;
  font-weight: 300;
}

.section-subtitle.light { color: var(--muted); }

/* ── Products ── */
.products {
  padding: 6rem 0;
  background: #fff;
}

.products .section-title { color: #000; }
.products .section-subtitle { color: rgba(0,0,0,0.5); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(226,168,241,0.15);
}

.product-coming-soon { opacity: 0.75; }

.product-cover {
  height: 320px;
  background: var(--black-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cover-goodgirl { background: #E2A8F1; padding: 0; overflow: hidden; }
.cover-pdf-img  { width: 100%; height: 100%; object-fit: contain; display: block; }
.cover-mystery  { background: linear-gradient(135deg, #1A1A2C, #3A1C5A); }
.cover-soon     { background: var(--black-mid); }

.product-featured {
  border: 1.5px solid rgba(226,168,241,0.3);
  box-shadow: 0 4px 20px rgba(226,168,241,0.1);
}

.cover-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: absolute;
  bottom: 1rem;
  left: 1rem;
}

.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}

.product-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
}

.product-info h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #000;
  line-height: 1.3;
  letter-spacing: 0.03em;
}

.product-info p {
  font-size: 0.875rem;
  color: rgba(0,0,0,0.55);
  line-height: 1.6;
  flex: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.product-price {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 400;
  color: #000;
}

/* ── How It Works ── */
.how-it-works {
  padding: 5rem 0;
  background: var(--black-card);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.step {
  text-align: center;
  max-width: 220px;
  padding: 1.5rem;
}

.step-number {
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: rgba(255,255,255,0.2);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.step p {
  font-size: 0.875rem;
  color: var(--muted);
}

.step-divider {
  font-size: 1.5rem;
  color: var(--pink);
  opacity: 0.3;
  padding-bottom: 1.5rem;
}

/* ── About ── */
.about {
  padding: 6rem 0;
  background: #fff;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 260px;
  border-radius: 50%;
  box-shadow: 0 8px 40px rgba(226,168,241,0.15);
}

.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #000;
  margin-bottom: 1.25rem;
}

.about-text p {
  color: rgba(0,0,0,0.55);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ── Footer ── */
.footer {
  background: var(--black);
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-brand {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-email {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.footer-email:hover { color: var(--pink); }

/* ── Decorative Elements ── */
.hero-deco {
  position: absolute;
  opacity: 0.07;
  pointer-events: none;
  filter: brightness(0) invert(1);
}
.deco-left  { left: -50px; bottom: -10px; width: 300px; transform: scaleX(-1); }
.deco-right { right: -30px; top: 80px; width: 240px; }

.section-deco-lips {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  opacity: 0.04;
  pointer-events: none;
}

.cover-deco-img {
  width: 90px;
  opacity: 0.55;
  filter: brightness(0) invert(1);
  margin-bottom: 0.5rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav { padding: 0.875rem 1.25rem; }
  .nav-links { gap: 1.25rem; }
  .about-inner { grid-template-columns: 1fr; text-align: center; }
  .about-image { display: flex; justify-content: center; }
  .step-divider { display: none; }
  .steps { flex-direction: column; align-items: center; }
  .footer-inner { justify-content: center; text-align: center; }
}
