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

:root {
  --pink: #FF6B8A;
  --pink-light: #FFE8ED;
  --pink-mid: #ffb3c1;
  --bg: #FDFAF8;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --surface: #fff;
  --radius: 24px;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,107,138,0.1);
}

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

.nav-logo img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
}

.nav-logo-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  font-family: -apple-system, 'SF Pro Rounded', 'Helvetica Neue', sans-serif;
}

.nav-logo-text .cal { color: var(--pink); }
.nav-logo-text .couple { color: var(--text); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink);
  color: #fff;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.2s;
}

.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 1; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 65px;
  left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,107,138,0.1);
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
  z-index: 99;
  transform: translateY(-10px);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}

.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.mobile-link:last-child { border-bottom: none; }

.mobile-link--cta {
  margin-top: 8px;
  background: var(--pink);
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 100px;
  font-weight: 600;
  border-bottom: none;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-blob-1 {
  width: 600px; height: 600px;
  background: rgba(255,107,138,0.12);
  top: -100px; right: -150px;
}

.hero-blob-2 {
  width: 400px; height: 400px;
  background: rgba(255,178,197,0.15);
  bottom: 0; left: -100px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  width: 100%;
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
}

.hero-text {
  flex: 1;
  text-align: left;
  max-width: 520px;
}

.hero-dance-col {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-dance-vid {
  width: 260px;
  height: auto;
  border-radius: 24px;
  display: block;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pink-light);
  color: var(--pink);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.2px;
}

.hero h1 {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 20px;
  color: var(--text);
}

.hero h1 em {
  font-style: normal;
  color: var(--pink);
}

.hero-sub {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--muted);
  line-height: 1.55;
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-badge {
  display: inline-block;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-badge img {
  height: 52px;
  display: block;
}

.btn-badge:hover { opacity: 0.85; transform: translateY(-2px); }

.btn-badge--white img {
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
}

.hero-phones {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: -20px;
  margin-top: 0;
}

.phone-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.phone-wrap img.phone-screen {
  width: 220px;
  border-radius: 32px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.18), 0 8px 24px rgba(255,107,138,0.12);
  position: relative;
  z-index: 1;
}

.phone-wrap.center img.phone-screen {
  width: 260px;
  z-index: 2;
  transform: translateY(-20px);
}

.phone-wrap.left { transform: rotate(-6deg) translateX(30px); }
.phone-wrap.right { transform: rotate(6deg) translateX(-30px); }

.biscuit-hero {
  position: absolute;
  bottom: -20px;
  right: -70px;
  width: 150px;
  z-index: 3;
  pointer-events: none;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--pink);
  padding: 40px 24px;
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.stat-number {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  text-align: center;
  letter-spacing: 0.2px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 16px;
  }
  .stat-divider { display: none; }
}

/* ── SECTION BASE ── */
section {
  padding: 100px 24px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--pink);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 520px;
}

/* ── FEATURE BENTO ── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.bento-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0,0,0,0.06);
}

.bento-card.tall { grid-row: span 2; }

.bento-text {
  padding: 28px 28px 20px;
}

.bento-text h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.bento-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.bento-img {
  width: 100%;
  display: block;
}

.bento-img-contain {
  width: 100%;
  padding: 20px 28px 0;
  display: block;
  object-fit: contain;
}

.bento-icon {
  width: 44px;
  height: 44px;
  background: var(--pink-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}

/* ── SCREENSHOTS SCROLL ── */
.screenshots-section {
  background: #f8f4f2;
}

.screenshots-header {
  max-width: 1100px;
  margin: 0 auto 48px;
}

.screenshots-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 0 max(24px, calc((100vw - 1100px) / 2)) 32px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.screenshots-scroll::-webkit-scrollbar { display: none; }

.screenshot-item {
  flex: 0 0 auto;
  width: 240px;
  scroll-snap-align: start;
}

.screenshot-item img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* ── HOW IT WORKS ── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
}

.how-card {
  text-align: center;
}

.how-number {
  width: 48px;
  height: 48px;
  background: var(--pink-light);
  color: var(--pink);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.how-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.how-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--surface);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.review-card {
  background: var(--bg);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.06);
}

.stars {
  color: var(--pink);
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.review-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}

.review-author {
  font-size: 13px;
  color: var(--muted);
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--pink);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  top: -200px; right: -150px;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  bottom: -150px; left: -100px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-biscuit {
  width: 100px;
  margin: 0 auto 24px;
  display: block;
}

.cta-section h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}


/* ── FOOTER ── */
footer {
  padding: 40px 24px;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
  font-family: -apple-system, 'SF Pro Rounded', 'Helvetica Neue', sans-serif;
}

.footer-logo-text .cal { color: var(--pink); }

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover { color: var(--text); }

.footer-copy {
  font-size: 12px;
  color: var(--muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bento-card.tall { grid-row: span 1; }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero { padding: 100px 20px 60px; text-align: center; }

  .hero-top {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 48px;
  }

  .hero-text { text-align: center; max-width: 100%; }

  .hero-dance-col { display: none; }

  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }

  .hero-actions { justify-content: center; }

  .hero-phones { gap: 0; }

  .phone-wrap img.phone-screen { width: 110px; border-radius: 20px; }
  .phone-wrap.center img.phone-screen { width: 140px; }

  .biscuit-hero { width: 110px; right: -50px; }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
