:root {
  --brand: #d94452;
  --brand-2: #c73847;
  --bg: #faf7f7;
  --surface: #ffffff;
  --text: #1c1b1f;
  --muted: #5f5b63;
  --border: #ece7e8;
  --tint: #fdeef0;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #121212;
    --surface: #1e1c20;
    --text: #e6e1e6;
    --muted: #a8a3ad;
    --border: #322e36;
    --tint: #2a1d1f;
  }
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px; }
a { color: var(--brand); text-decoration: none; }

/* ---- Nav ---- */
nav {
  position: sticky; top: 0; z-index: 10;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.15rem; color: var(--text); }
.logo svg, .logo img { width: 34px; height: 34px; border-radius: 9px; display: block; }
.logo .accent { color: var(--brand); }
.suite-tag {
  background: var(--tint); color: var(--brand);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.02em;
  padding: 4px 11px; border-radius: 999px; white-space: nowrap;
}
.suite-tag:hover { background: var(--brand); color: #fff; }
.nav-links { display: flex; gap: 22px; font-weight: 600; font-size: 0.95rem; }
.nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--brand); }
@media (max-width: 720px) {
  .nav-inner { flex-direction: column; gap: 8px; padding-bottom: 10px; }
  .nav-links { gap: 14px; font-size: 0.9rem; flex-wrap: wrap; justify-content: center; }
}

/* ---- Announcement ---- */
.announce {
  position: relative; overflow: hidden;
  background: linear-gradient(100deg, #b93844, var(--brand) 45%, #e05563);
  padding: 11px 0;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
}
.announce::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: -40%; width: 40%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.22), transparent);
  animation: announce-sheen 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes announce-sheen {
  0%   { left: -40%; }
  60%, 100% { left: 110%; }
}
.announce .wrap {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  flex-wrap: wrap;
}
.announce .tag {
  background: #fff; color: var(--brand-2); font-size: 0.72rem;
  font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 11px; border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.45);
  animation: announce-pulse 2.4s ease-out infinite;
}
@keyframes announce-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.45); }
  70%, 100% { box-shadow: 0 0 0 9px rgba(255,255,255,0); }
}
.announce .txt { color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,0.12); }
.announce .announce-link {
  color: #fff; font-weight: 800; white-space: nowrap;
  border-bottom: 1.5px solid rgba(255,255,255,0.55);
  padding-bottom: 1px; transition: border-color 0.15s;
}
.announce .announce-link:hover { border-color: #fff; }
@media (prefers-reduced-motion: reduce) {
  .announce::before, .announce .tag { animation: none; }
}
@media (max-width: 640px) {
  .announce { padding: 8px 0; font-size: 0.84rem; line-height: 1.45; }
  .announce .wrap { gap: 5px 8px; }
  .announce .tag { font-size: 0.66rem; padding: 2px 9px; }
}

/* ---- Hero ---- */
.hero { position: relative; overflow: hidden; padding: 72px 0 40px; }
.blob {
  position: absolute; border-radius: 50%; background: var(--brand);
  opacity: 0.06; pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px;
  align-items: center; position: relative;
}
@media (max-width: 820px) { .hero-grid { grid-template-columns: 1fr; } }
.pill {
  display: inline-block; background: var(--tint); color: var(--brand);
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.03em;
  padding: 7px 16px; border-radius: 999px; margin-bottom: 18px;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.12; letter-spacing: -0.01em; }
h1 .accent { color: var(--brand); }
.hero p.lead { margin: 18px 0 28px; font-size: 1.15rem; color: var(--muted); max-width: 34em; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 14px; font-weight: 700; font-size: 1rem;
}
.btn-primary {
  background: linear-gradient(135deg, #e05563, #c73847); color: #fff;
  box-shadow: 0 8px 22px rgba(217, 68, 82, 0.35);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-ghost { border: 1.5px solid var(--border); color: var(--text); background: var(--surface); }
.store-note { margin-top: 12px; font-size: 0.85rem; color: var(--muted); }

/* ---- Phone mockups ---- */
.phone {
  width: min(280px, 70vw); margin: 0 auto;
  border-radius: 34px; padding: 10px; background: #17151a;
  box-shadow: 0 30px 60px rgba(0,0,0,0.28);
}
.phone img { width: 100%; border-radius: 26px; display: block; }
.phone.tilt { transform: rotate(3deg); }

/* ---- Stats strip ---- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin: 48px 0 0; text-align: center;
}
@media (max-width: 640px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 20px 10px;
}
.stat .num { font-size: 1.7rem; font-weight: 800; color: var(--brand); }
.stat .lbl { font-size: 0.9rem; color: var(--muted); font-weight: 600; }

/* ---- Sections ---- */
section { padding: 72px 0; }
.kicker {
  color: var(--brand); font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; font-size: 0.85rem;
}
h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); margin: 8px 0 14px; line-height: 1.2; }
.section-lead { color: var(--muted); max-width: 40em; margin-bottom: 40px; }

/* Features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; padding: 24px;
}
.card .ico {
  width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
  border-radius: 13px; background: var(--tint); font-size: 1.4rem; margin-bottom: 14px;
}
.card h3 { font-size: 1.08rem; margin-bottom: 6px; }
.card p { color: var(--muted); font-size: 0.95rem; }
.card .new-tag {
  display: inline-block; background: var(--tint); color: var(--brand);
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 2px 9px; border-radius: 999px; margin-left: 8px; vertical-align: middle;
}

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; padding: 8px 16px; font-weight: 600; font-size: 0.92rem;
  color: var(--text);
}
.chip.hot { background: var(--tint); border-color: transparent; color: var(--brand); }

/* Split section */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }
.check { list-style: none; margin-top: 18px; }
.check li { padding-left: 30px; position: relative; margin-bottom: 12px; color: var(--muted); }
.check li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--brand); font-weight: 800;
}
.check li strong { color: var(--text); }

/* Screenshots strip */
.shots {
  display: flex; gap: 26px; overflow-x: auto; padding: 20px 22px 40px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  justify-content: center;
}
.shots::-webkit-scrollbar { display: none; }
.shots .phone { flex: 0 0 240px; width: 240px; margin: 0; scroll-snap-align: center; }
@media (max-width: 1120px) { .shots { justify-content: flex-start; } }
@media (max-width: 480px) { .shots .phone { flex: 0 0 200px; width: 200px; } }

/* Download CTA */
.cta {
  background: linear-gradient(135deg, #e05563, #b93844);
  border-radius: 26px; padding: 56px 30px; text-align: center; color: #fff;
}
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,0.85); max-width: 36em; margin: 0 auto 26px; }
.cta .btn { background: #fff; color: var(--brand); }
.badges { display: flex; gap: 12px; justify-content: center; align-items: center; flex-wrap: wrap; }
.badges img { display: block; }
.badge-ios { height: 54px; width: auto; }
.badge-play { height: 81px; width: auto; margin: -13px; } /* trims the artwork's built-in padding */
.hero-badges { justify-content: flex-start; }
@media (max-width: 820px) { .hero-badges { justify-content: center; } }

/* FAQ */
.faq { max-width: 760px; }
.faq details {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; margin-bottom: 12px; overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none; display: flex; align-items: center;
  justify-content: space-between; gap: 14px;
  padding: 16px 20px; font-weight: 700; font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--brand); font-size: 1.3rem; font-weight: 700;
  line-height: 1; transition: transform 0.2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 20px 16px; color: var(--muted); }

/* ---- Footer ---- */
footer {
  border-top: 1px solid var(--border); padding: 34px 0 48px;
  color: var(--muted); font-size: 0.9rem;
}
.foot-grid { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

/* ---- Inner pages (about, privacy, terms) ---- */
.article { max-width: 800px; margin: 0 auto; padding: 56px 22px 72px; }
.article h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 10px; }
.article .sub { color: var(--muted); font-size: 1.05rem; margin-bottom: 36px; }
.article h2 { font-size: 1.35rem; margin: 40px 0 12px; }
.article h2 .accent { color: var(--brand); }
.article p { color: var(--muted); margin-bottom: 14px; }
.article ul { margin: 0 0 16px 22px; }
.article li { color: var(--muted); margin-bottom: 8px; }
.article li strong, .article p strong { color: var(--text); }
.highlight-box {
  background: var(--tint); border-left: 4px solid var(--brand);
  border-radius: 12px; padding: 20px 22px; margin: 28px 0;
  font-style: italic; font-weight: 600;
}
.highlight-box p { color: var(--text); margin: 0; }
.contact-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; padding: 32px; text-align: center; margin-top: 48px;
}
.contact-box h2 { margin-top: 0; }
.contact-box .btn { margin-top: 6px; }

/* ---- Small screens ---- */
@media (max-width: 820px) {
  .hero { padding: 44px 0 28px; }
  .hero-grid { text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .btn-row { justify-content: center; }
  .phone.tilt { transform: none; margin-top: 10px; }
  section { padding: 52px 0; }
  .split { gap: 32px; }
  .chips { justify-content: center; }
  .kicker, h2, .section-lead { text-align: center; }
  .section-lead { margin-left: auto; margin-right: auto; }
  .check { text-align: left; max-width: 34em; margin-left: auto; margin-right: auto; }
  .foot-grid { flex-direction: column; text-align: center; }
  .article .kicker, .article h1, .article h2, .article p, .article .sub { text-align: left; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .btn { width: 100%; justify-content: center; }
  .btn-row { flex-direction: column; }
  .stats { gap: 10px; }
  .stat { padding: 14px 8px; }
  .stat .num { font-size: 1.4rem; }
  .cta { padding: 40px 18px; border-radius: 20px; }
  .card { padding: 20px; }
  .article { padding: 40px 16px 56px; }
}
