/* ===== Design tokens ===== */
:root {
  --ink: #1a1326;
  --ink-2: #2a2140;
  --paper: #fdf6ef;
  --paper-2: #f5ece1;
  --magenta: #ff3d8b;
  --magenta-dark: #e02e76;
  --purple: #6c2bd9;
  --cyan: #20d3c2;
  --amber: #ffb627;
  --muted: #6b6378;
  --line: rgba(26, 19, 38, 0.12);
  --radius: 16px;
  --shadow: 0 18px 40px -18px rgba(26, 19, 38, 0.45);
  --max: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { line-height: 1.1; margin: 0 0 0.5em; }
p { margin: 0 0 1em; }
a { color: inherit; }
img { max-width: 100%; display: block; }

.center { text-align: center; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  background: var(--magenta);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 22px -10px var(--magenta-dark);
}
.btn:hover { background: var(--magenta-dark); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.95rem; }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.1rem; }
.btn-light { background: #fff; color: var(--magenta-dark); box-shadow: 0 12px 30px -12px rgba(0,0,0,0.5); }
.btn-light:hover { background: #fff; color: var(--magenta-dark); }

/* ===== Announcement bar ===== */
.announce {
  background: linear-gradient(90deg, var(--purple), var(--magenta));
  color: #fff;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
}

/* ===== On-page brand + nav (no sticky header) ===== */
.page-top {
  max-width: var(--max);
  margin: 0 auto clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  text-align: left;
}
.brand { display: inline-block; line-height: 0; }
.logo {
  font-family: "Bungee", sans-serif;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: -0.5px;
}
.logo-tape { color: var(--magenta); margin-right: 2px; }
/* Big, prominent logo at the top of the page */
.logo-img { display: block; height: clamp(96px, 16vw, 168px); width: auto; }
/* Footer sits on a dark background; a light chip keeps any logo readable
   regardless of its colors. */
.logo-img--footer { height: 52px; background: #fff; padding: 8px 12px; border-radius: 10px; }
.page-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
}
.page-nav a { text-decoration: none; font-weight: 600; font-size: 0.98rem; color: var(--ink-2); }
.page-nav a:hover { color: var(--magenta); }
.page-nav .btn-sm { color: #fff; }

/* ===== Hero ===== */
.hero {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(108, 43, 217, 0.18), transparent 60%),
    radial-gradient(900px 400px at 0% 10%, rgba(255, 61, 139, 0.16), transparent 55%),
    var(--paper);
  padding: clamp(1rem, 2.5vw, 1.5rem) clamp(1rem, 4vw, 2rem) clamp(3rem, 6vw, 5rem);
}
.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.stars-row { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; flex-wrap: wrap; }
.stars { color: var(--amber); letter-spacing: 2px; font-size: 1.1rem; }
.stars-label { font-weight: 600; color: var(--muted); font-size: 0.9rem; }
.hero h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  letter-spacing: -1px;
  margin-bottom: 0.6em;
}
.hero h1 .hl {
  background: linear-gradient(90deg, var(--magenta), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede { font-size: clamp(1rem, 2.2vw, 1.18rem); color: var(--ink-2); max-width: 36ch; }
.cta-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin: 1.6rem 0 1rem; }
.cta-note { color: var(--muted); font-size: 0.95rem; }
.trust-row { list-style: none; padding: 0; margin: 1.2rem 0 0; display: flex; gap: 1.2rem; flex-wrap: wrap; color: var(--ink-2); font-weight: 600; font-size: 0.92rem; }

/* ===== Hero visual: animated product slideshow ===== */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.slideshow {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  /* soft glow behind the floating product shots */
  background:
    radial-gradient(closest-side, rgba(255,61,139,0.18), transparent 70%),
    radial-gradient(closest-side at 70% 30%, rgba(108,43,217,0.18), transparent 70%);
}
.slideshow .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.7s ease, transform 0.7s ease;
  filter: drop-shadow(0 26px 30px rgba(26, 19, 38, 0.28));
}
.slideshow .slide.is-active {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .slideshow .slide { transition: opacity 0.2s linear; transform: none; }
  .slideshow .slide.is-active { transform: none; }
}

/* ===== Proof strip ===== */
.proof-strip {
  text-align: center;
  padding: 1.6rem 1rem;
  background: var(--ink);
  color: #fff;
}
.proof-strip p { margin: 0 0 0.6rem; text-transform: uppercase; letter-spacing: 2px; font-size: 0.72rem; color: rgba(255,255,255,0.55); }
.genres { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem 1.4rem; }
.genres span { font-family: "Bungee", sans-serif; font-size: 0.85rem; color: rgba(255,255,255,0.82); }

/* ===== Sections ===== */
.section { max-width: var(--max); margin: 0 auto; padding: clamp(3rem, 7vw, 5.5rem) clamp(1rem, 4vw, 2rem); }
.section-alt { max-width: none; background: var(--paper-2); }
.section-alt > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section-title { font-size: clamp(1.6rem, 4vw, 2.5rem); text-align: center; letter-spacing: -0.5px; }
.section-sub { text-align: center; color: var(--muted); max-width: 50ch; margin: 0 auto 2.5rem; font-size: 1.05rem; }

/* ===== Cards (gifts) ===== */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.3rem;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-emoji { font-size: 2rem; margin-bottom: 0.6rem; }
.card h3 { font-size: 1.1rem; }
.card p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem 1.3rem 1.4rem; }
.step-num {
  position: absolute; top: -18px; left: 1.3rem;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--magenta), var(--purple));
  color: #fff; font-family: "Bungee", sans-serif; font-size: 1.1rem;
  border-radius: 50%;
  box-shadow: var(--shadow);
}
.step h3 { font-size: 1.05rem; }
.step p { color: var(--muted); margin: 0; font-size: 0.95rem; }
.tip {
  max-width: 60ch; margin: 2.2rem auto 2rem; text-align: center;
  background: rgba(255, 182, 39, 0.16);
  border: 1px solid rgba(255, 182, 39, 0.4);
  padding: 0.9rem 1.2rem; border-radius: 12px; color: var(--ink-2);
}

/* ===== Features ===== */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.feature { padding: 1.4rem; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; }
.feature-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.feature h3 { font-size: 1.08rem; }
.feature p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* ===== Pricing ===== */
.pricing { display: grid; grid-template-columns: repeat(2, minmax(0, 320px)); gap: 1.5rem; justify-content: center; }
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem 1.8rem;
  text-align: center;
}
.price-card.featured { border: 2px solid var(--magenta); box-shadow: var(--shadow); }
.badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--magenta); color: #fff; font-size: 0.75rem; font-weight: 700;
  padding: 0.3rem 0.9rem; border-radius: 999px; text-transform: uppercase; letter-spacing: 1px;
}
.price-card h3 { font-size: 1.15rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.price { font-family: "Bungee", sans-serif; font-size: 2.6rem; color: var(--ink); }
.size { font-weight: 700; color: var(--magenta); margin-bottom: 1rem; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 1.5rem; text-align: left; }
.price-card li { padding: 0.4rem 0 0.4rem 1.6rem; position: relative; color: var(--ink-2); font-size: 0.95rem; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan); font-weight: 800; }
.price-card .btn { width: 100%; }

/* ===== Reviews ===== */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.review {
  margin: 0; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem;
}
.review .stars { font-size: 1rem; }
.review p { color: var(--ink-2); font-size: 0.98rem; margin: 0.6rem 0 1rem; }
.review cite { color: var(--muted); font-style: normal; font-size: 0.85rem; font-weight: 600; }
.review cite { display: flex; align-items: center; gap: 0.5rem; }
.rev-size { background: var(--paper-2); color: var(--ink-2); font-weight: 700; font-size: 0.72rem; padding: 0.15rem 0.5rem; border-radius: 999px; }
.reviews-note { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 1.8rem; }
.reviews-note a { color: var(--magenta); font-weight: 700; text-decoration: none; }
.reviews-note a:hover { text-decoration: underline; }

/* ===== FAQ ===== */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 0.4rem 1.2rem; margin-bottom: 0.8rem;
}
.faq summary {
  cursor: pointer; font-weight: 700; padding: 0.8rem 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--magenta); font-size: 1.4rem; font-weight: 400; transition: transform 0.2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); margin: 0 0 0.9rem; }

/* ===== Final CTA ===== */
.final-cta {
  text-align: center;
  padding: clamp(3rem, 8vw, 6rem) 1.5rem;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  color: #fff;
}
.final-cta h2 { font-size: clamp(1.7rem, 4.5vw, 2.8rem); max-width: 18ch; margin: 0 auto 0.6rem; }
.final-cta p { color: rgba(255,255,255,0.92); max-width: 50ch; margin: 0 auto 1.6rem; }
.final-cta .final-note { font-size: 0.88rem; color: rgba(255,255,255,0.8); margin-top: 1.2rem; }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.75); padding: 2.5rem 1.5rem; }
.footer-inner { max-width: var(--max); margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.site-footer .logo { color: #fff; }
.footer-nav { display: flex; gap: 1.4rem; flex-wrap: wrap; justify-content: center; }
.footer-nav a { text-decoration: none; font-weight: 600; font-size: 0.92rem; color: rgba(255,255,255,0.75); }
.footer-nav a:hover { color: var(--magenta); }
.copyright { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin: 0; }

/* ===== Sticky mobile CTA ===== */
.sticky-cta {
  display: none;
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60;
  text-align: center; text-decoration: none;
  background: var(--magenta); color: #fff; font-weight: 700;
  padding: 0.95rem 1rem; border-radius: 999px;
  box-shadow: 0 12px 30px -8px rgba(0,0,0,0.5);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .lede, .hero h1 { max-width: none; }
  .cards, .steps, .features, .reviews { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .page-top { flex-direction: column; align-items: center; text-align: center; }
  .page-nav { justify-content: center; }
  .cards, .steps, .features, .reviews, .pricing { grid-template-columns: 1fr; }
  .sticky-cta { display: block; }
  main { padding-bottom: 4.5rem; }
  .trust-row { gap: 0.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
