/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --bg: #fbf9f7;
  --ink: #2d1f1f;
  --muted: #6b5e5e;
  --muted-2: #8b7575;
  --rose: #c4636a;
  --rose-tint: #fdf0f0;
  --rose-tint-2: #fbf1f1;
  --card: #ffffff;
  --card-soft: #fbf9f7;
  --border: #efe7e7;
  --border-2: #f0e8e8;
  --gold: #e0a23c;
  --dark: #2d1f1f;
  --shell: #f8f4f4;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }

.icon { width: 24px; height: 24px; display: inline-block; vertical-align: middle; }

h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.02em; }

.eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  transition: transform 0.12s ease, opacity 0.12s ease;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--rose); color: #fff; }
.btn-primary:hover { opacity: 0.92; }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 40px;
  background: rgba(251, 249, 247, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(239, 231, 231, 0.7);
}
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: var(--rose);
  color: #fff;
}
.logo-mark .icon { width: 19px; height: 19px; }
.logo-name { font-size: 19px; font-weight: 800; }
.nav-links { display: flex; gap: 38px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--muted); }
.nav-links a:hover { color: var(--ink); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 40px 96px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
}
.hero-text { max-width: 560px; }
.hero h1 {
  font-size: 56px;
  font-weight: 800;
  margin: 18px 0 22px;
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 480px;
}
.store-badges { display: flex; gap: 14px; margin: 28px 0 20px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: var(--dark);
  color: #fff;
  border-radius: 12px;
  padding: 11px 20px;
  transition: transform 0.12s ease, opacity 0.12s ease;
}
.store-badge:hover { opacity: 0.92; }
.store-badge:active { transform: scale(0.98); }
.badge-icon { width: 23px; height: 23px; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.2; }
.store-badge small { font-size: 10px; font-weight: 500; color: #b5a8a8; }
.store-badge strong { font-size: 17px; font-weight: 700; }
.store-badge.light { background: #fff; color: var(--ink); }
.store-badge.light small { color: var(--muted-2); }

.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}
.stars { display: inline-flex; gap: 3px; color: var(--gold); }
.stars .icon { width: 16px; height: 16px; }

/* ── Phone mockup ───────────────────────────────────────────── */
.phone {
  width: 320px;
  background: var(--dark);
  border-radius: 46px;
  padding: 9px;
  box-shadow: 0 30px 60px -20px rgba(45, 31, 31, 0.35);
}
.phone-screen {
  background: var(--shell);
  border-radius: 38px;
  padding: 46px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}
.app-header { display: flex; flex-direction: column; gap: 3px; }
.app-title { font-size: 22px; font-weight: 800; }
.app-title.sm { font-size: 18px; font-weight: 800; }
.app-date { font-size: 12px; color: var(--muted-2); }

.app-card {
  background: var(--card);
  border: 1px solid var(--border-2);
  border-radius: 16px;
  padding: 16px;
}
.choreo-card { display: flex; flex-direction: column; gap: 12px; }
.tag {
  align-self: flex-start;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  background: var(--rose-tint);
  border-radius: 6px;
  padding: 4px 8px;
}
.choreo-row { display: flex; align-items: center; gap: 12px; }
.choreo-text { flex: 1; }
.choreo-text h4 { font-size: 16px; font-weight: 700; }
.choreo-text p { font-size: 11px; color: var(--muted-2); margin-top: 5px; }
.choreo-thumb {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--rose-tint);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.choreo-btns { display: flex; gap: 8px; }
.pill {
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  border-radius: 10px;
  padding: 12px 0;
}
.pill-primary { background: var(--rose); color: #fff; }
.pill-soft { background: var(--rose-tint); color: var(--rose); }

.mini-card { display: flex; align-items: center; gap: 12px; }
.mini-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--rose-tint);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mini-icon .icon { width: 22px; height: 22px; }
.mini-text { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.mini-text strong { font-size: 13px; font-weight: 700; }
.mini-text span { font-size: 11px; color: var(--muted-2); }
.mini-chevron { width: 18px; height: 18px; color: var(--muted-2); }

/* ── Section heads ──────────────────────────────────────────── */
.section-head {
  max-width: 1180px;
  margin: 0 auto 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.section-head h2 { font-size: 40px; font-weight: 800; }
.section-sub { font-size: 17px; color: var(--muted); max-width: 600px; }

/* ── Features ───────────────────────────────────────────────── */
.features { background: #fff; padding: 100px 40px; }
.feature-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: var(--card-soft);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
}
.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--rose-tint);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon .icon { width: 25px; height: 25px; }
.feature-text h3 { font-size: 19px; font-weight: 700; }
.feature-text p { font-size: 15px; color: var(--muted); margin-top: 8px; }

/* ── Showcase ───────────────────────────────────────────────── */
.showcase { background: #f5efec; padding: 100px 40px; }
.showcase-row {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.showcase-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.phone-sm { width: 250px; border-radius: 38px; }
.phone-sm .phone-screen { border-radius: 30px; padding: 32px 16px 16px; gap: 12px; }
.screen-center { align-items: center; }
.block { border-radius: 14px; }
.block-white { background: #fff; border: 1px solid var(--border-2); height: 58px; }
.block-rose { background: var(--rose-tint); }
.block.tall { height: 158px; }
.block-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.block.sq { height: 96px; }
.album {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--rose-tint);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}
.album .icon { width: 46px; height: 46px; }
.track-name { font-size: 14px; font-weight: 700; }
.track-bar { width: 100%; height: 5px; border-radius: 3px; background: var(--border); }
.player-controls { display: flex; align-items: center; gap: 20px; margin-top: 2px; }
.dot { width: 24px; height: 24px; border-radius: 50%; background: var(--border); }
.play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn .icon { width: 22px; height: 22px; }
.showcase-item figcaption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.showcase-item figcaption strong { font-size: 17px; font-weight: 700; }
.showcase-item figcaption span { font-size: 13px; color: var(--muted-2); }

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials { background: #fff; padding: 100px 40px; }
.quote-big {
  max-width: 880px;
  margin: 0 auto 24px;
  background: var(--rose-tint-2);
  border-radius: 24px;
  padding: 52px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}
.quote-big .stars .icon { width: 20px; height: 20px; }
.quote-big p { font-size: 25px; font-weight: 600; max-width: 720px; }
.quote-big cite { font-size: 14px; font-weight: 600; color: var(--muted-2); font-style: normal; }
.quote-row {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.quote-sm {
  background: var(--card-soft);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quote-sm p { font-size: 16px; font-weight: 500; color: #3d3232; }
.quote-sm cite { font-size: 13px; font-weight: 600; color: var(--muted-2); font-style: normal; }

/* ── CTA ────────────────────────────────────────────────────── */
.cta {
  background: var(--rose);
  color: #fff;
  text-align: center;
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.cta h2 { font-size: 44px; font-weight: 800; max-width: 760px; }
.cta p { font-size: 18px; color: #f6dada; }
.cta .store-badges { margin-top: 12px; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 44px 64px;
}
.footer .logo-name { font-size: 16px; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: #b5a8a8;
  text-align: center;
}
.footer-contact a { color: #f6dada; }
.footer-contact a:hover { text-decoration: underline; }
.footer-copy { color: #8b7575; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: #3d3232;
  color: #f6dada;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.12s ease;
}
.footer-social a:hover { background: #4d4040; }
.footer-social .icon { width: 18px; height: 18px; }

/* ── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-cta { padding: 9px 15px; font-size: 13px; }

  .hero {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 32px 24px 48px;
    gap: 36px;
  }
  .hero-text { display: flex; flex-direction: column; align-items: center; }
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 15px; }
  .store-badges { justify-content: center; }
  .phone { width: 280px; }

  .section-head { margin-bottom: 32px; }
  .section-head h2 { font-size: 26px; }
  .section-sub { font-size: 15px; }

  .features { padding: 56px 24px; }
  .feature-grid { grid-template-columns: 1fr; gap: 12px; }
  .feature {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 14px;
  }
  .feature-icon { width: 46px; height: 46px; flex-shrink: 0; }
  .feature-icon .icon { width: 22px; height: 22px; }
  .feature-text h3 { font-size: 15px; }
  .feature-text p { font-size: 13px; margin-top: 3px; }

  .showcase { display: none; }

  .testimonials { padding: 56px 24px; }
  .quote-big { padding: 28px 22px; border-radius: 20px; }
  .quote-big p { font-size: 17px; }
  .quote-big .stars .icon { width: 16px; height: 16px; }
  .quote-row { grid-template-columns: 1fr; }

  .cta { padding: 60px 24px; }
  .cta h2 { font-size: 27px; }
  .cta p { font-size: 14px; }

  .footer {
    flex-direction: column;
    text-align: center;
    gap: 18px;
    padding: 36px 24px;
  }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 31px; }
  .store-badges { gap: 10px; }
  .store-badge { padding: 9px 14px; }
  .phone { width: 100%; max-width: 300px; }
}
