/* ============ Pro Suite — shared styles ============ */
:root {
  --bg: #FBF4EE;
  --bg-soft: #F6EAE2;
  --card: #FFFFFF;
  --ink: #1A1B20;
  --muted: #6F6862;
  --pink: #E52963;
  --pink-dark: #C71F53;
  --pink-soft: #FDE7EE;
  --blue: #2FA8DC;
  --radius: 24px;
  --shadow: 0 24px 60px -24px rgba(80, 30, 40, .25);
  --shadow-soft: 0 12px 32px -16px rgba(80, 30, 40, .18);
}

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

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- ambient background ---------- */
.glow {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    /* delicate confetti dots along the edges */
    radial-gradient(4px 4px at 6% 18%, rgba(229, 41, 99, .30) 45%, transparent 50%),
    radial-gradient(3px 3px at 12% 64%, rgba(47, 168, 220, .30) 45%, transparent 50%),
    radial-gradient(5px 5px at 4% 86%, rgba(245, 166, 35, .25) 45%, transparent 50%),
    radial-gradient(3px 3px at 94% 30%, rgba(229, 41, 99, .22) 45%, transparent 50%),
    radial-gradient(4px 4px at 90% 78%, rgba(47, 168, 220, .25) 45%, transparent 50%),
    radial-gradient(3px 3px at 97% 55%, rgba(245, 166, 35, .28) 45%, transparent 50%),
    /* aurora mesh */
    radial-gradient(1000px 760px at 88% -12%, rgba(242, 138, 178, .60), transparent 68%),
    radial-gradient(840px 680px at -14% 24%, rgba(249, 196, 156, .55), transparent 66%),
    radial-gradient(720px 580px at 110% 66%, rgba(206, 182, 242, .34), transparent 68%),
    radial-gradient(900px 760px at 42% 114%, rgba(245, 158, 188, .45), transparent 64%),
    linear-gradient(180deg, #FDF7F1 0%, #FBF2EB 55%, #F9EFE7 100%);
}
/* oversized ghost brand shapes — petal & arc from the app icon */
.glow::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M100 10 C152 46 152 132 100 190 C48 132 48 46 100 10 Z' fill='%23E52963' fill-opacity='0.055' transform='rotate(38 100 100)'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M42 158 A88 88 0 0 1 158 42' stroke='%232FA8DC' stroke-opacity='0.06' stroke-width='34' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M100 10 C152 46 152 132 100 190 C48 132 48 46 100 10 Z' fill='%23E52963' fill-opacity='0.045' transform='rotate(-24 100 100)'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 520px 520px, 620px 620px, 440px 440px;
  background-position: calc(100% + 150px) -120px, -220px calc(100% + 180px), -160px 12%;
}
/* fine film grain to remove flatness and banding */
.glow::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .08; mix-blend-mode: multiply;
}

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(26, 27, 32, .06);
}
.nav-inner {
  display: flex; align-items: center; gap: 28px;
  height: 64px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 17px; letter-spacing: -.01em; }
.brand img { width: 32px; height: 32px; border-radius: 8px; }
.nav-links { display: flex; gap: 24px; margin-left: auto; align-items: center; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.btn-nav {
  background: var(--ink); color: #fff !important; font-weight: 600;
  padding: 9px 18px; border-radius: 999px; font-size: 14px;
  transition: transform .15s ease, background .2s;
}
.btn-nav:hover { background: #000; transform: scale(1.03); }
@media (max-width: 640px) { .nav-links a:not(.btn-nav) { display: none; } }

/* language selector */
.lang-select {
  appearance: none; -webkit-appearance: none;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236F6862' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 12px center / 10px;
  border: 1.5px solid rgba(26, 27, 32, .14); border-radius: 999px;
  padding: 8px 30px 8px 14px;
  font: inherit; font-size: 14px; font-weight: 600; color: var(--muted);
  cursor: pointer; transition: border-color .2s, color .2s;
}
.lang-select:hover, .lang-select:focus { border-color: var(--ink); color: var(--ink); outline: none; }
@media (max-width: 640px) { .lang-select { padding: 7px 26px 7px 10px; font-size: 13px; } }

/* ---------- type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--pink);
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid rgba(229, 41, 99, .18);
  color: var(--ink); font-size: 14px; font-weight: 600;
  padding: 8px 16px; border-radius: 999px; box-shadow: var(--shadow-soft);
}
.chip .star { color: var(--pink); }

/* CNET award treatments */
.hero-award {
  display: inline-flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid rgba(231, 29, 44, .18);
  border-radius: 20px; padding: 10px 22px 10px 12px;
  box-shadow: var(--shadow-soft);
}
.hero-award img { width: 56px; height: 56px; border-radius: 50%; }
.hero-award .t1 {
  font-size: 11.5px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: #E71D2C;
}
.hero-award .t2 { font-size: 17px; font-weight: 800; letter-spacing: -.01em; line-height: 1.2; }

.cta-proof {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 600; color: var(--muted);
}
.cta-proof img { width: 32px; height: 32px; border-radius: 50%; }

h1 {
  font-size: clamp(40px, 6.4vw, 68px);
  line-height: 1.04; letter-spacing: -.03em; font-weight: 800;
}
h1 .accent, h2 .accent { color: var(--pink); }
h2 {
  font-size: clamp(30px, 4.4vw, 44px);
  line-height: 1.1; letter-spacing: -.025em; font-weight: 800;
}
.lede { font-size: clamp(17px, 2vw, 20px); color: var(--muted); max-width: 56ch; }

/* ---------- buttons ---------- */
.cta-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.appstore-badge { display: inline-block; transition: transform .15s ease; }
.appstore-badge:hover { transform: scale(1.04); }
.appstore-badge svg { display: block; height: 56px; width: auto; }

.btn-ghost {
  font-weight: 600; font-size: 16px; color: var(--ink);
  padding: 14px 24px; border-radius: 999px; border: 1.5px solid rgba(26,27,32,.18);
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: var(--ink); background: #fff; }

.rating-line { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--muted); font-weight: 500; }
.stars { color: #F5A623; letter-spacing: 2px; font-size: 16px; }

/* ---------- device frame (light iPhone-style bezel around raw screenshots) ---------- */
.device {
  position: relative;
  background: linear-gradient(165deg, #FEFEFD 0%, #F3F1ED 60%, #EAE7E1 100%);
  border-radius: 58px;
  padding: 15px 15px 34px;
  box-shadow:
    0 0 0 1px rgba(26, 27, 32, .10),
    inset 0 1.5px 0 rgba(255, 255, 255, .95),
    inset 0 -2px 6px rgba(26, 27, 32, .06),
    0 36px 80px -34px rgba(80, 30, 40, .38),
    0 12px 28px -18px rgba(80, 30, 40, .22);
}
.device img {
  border-radius: 43px;
  width: 100%;
  box-shadow: 0 0 0 1px rgba(26, 27, 32, .07);
}
.device::after {
  content: ""; position: absolute; left: 50%; bottom: 13px; transform: translateX(-50%);
  width: 36%; height: 5px; border-radius: 999px;
  background: rgba(26, 27, 32, .28);
}

/* ---------- hero ---------- */
.hero { padding: 72px 0 40px; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center;
}
.hero-copy { display: flex; flex-direction: column; gap: 26px; align-items: flex-start; }
.hero-phone { position: relative; display: flex; justify-content: center; }
.hero-phone .device { width: min(360px, 80vw); }
.hero-phone::before {
  content: ""; position: absolute; inset: 8% -6% -4% -6%; z-index: -1;
  background: radial-gradient(closest-side, rgba(229,41,99,.16), transparent 70%);
}
@media (max-width: 880px) {
  .hero { padding-top: 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { align-items: center; text-align: center; }
  .hero-copy .lede { margin: 0 auto; }
  .cta-row { justify-content: center; }
}

/* ---------- press strip ---------- */
.press {
  padding: 44px 0 40px; margin-top: 32px;
  background: rgba(255, 255, 255, .45);
  border-top: 1px solid rgba(26, 27, 32, .05);
  border-bottom: 1px solid rgba(26, 27, 32, .05);
}
.press-label {
  text-align: center; font-size: 12px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 28px;
}
.press-logos {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 40px 56px;
}
.press-logos img {
  height: 26px; width: auto; filter: grayscale(1) opacity(.55);
  mix-blend-mode: multiply; transition: filter .25s;
}
.press-logos img:hover { filter: grayscale(0) opacity(1); }
.press-logos img.tall { height: 34px; }
.press-logos img.wsj { filter: invert(1) grayscale(1) opacity(.6); height: 22px; }
.press-logos img.wsj:hover { filter: invert(1) grayscale(1) opacity(.9); }

/* ---------- sections ---------- */
.section { padding: 88px 0; }
.section-head { max-width: 640px; margin: 0 auto 64px; text-align: center; display: flex; flex-direction: column; gap: 16px; align-items: center; }

/* alternating feature rows */
.feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  padding: 48px 0;
}
.feature-copy { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; max-width: 46ch; }
.feature-copy h3 { font-size: clamp(26px, 3.4vw, 36px); line-height: 1.12; letter-spacing: -.02em; font-weight: 800; }
.feature-copy p { color: var(--muted); font-size: 17px; }
.feature-copy ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.feature-copy li { display: flex; gap: 10px; font-size: 16px; font-weight: 500; }
.feature-copy li::before { content: "✓"; color: var(--pink); font-weight: 800; }
.feature-phone { display: flex; justify-content: center; }
.feature-phone .device { width: min(320px, 76vw); border-radius: 52px; padding: 13px 13px 30px; }
.feature-phone .device img { border-radius: 39px; }
.feature-phone .device::after { bottom: 11px; }
.feature:nth-child(even) .feature-phone { order: -1; }
@media (max-width: 880px) {
  .feature { grid-template-columns: 1fr; gap: 36px; padding: 32px 0; }
  .feature:nth-child(even) .feature-phone { order: 0; }
  .feature-copy { align-items: center; text-align: center; margin: 0 auto; }
  .feature-copy li { text-align: left; }
}

/* mini feature grid */
.grid-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.card {
  background: var(--card); border-radius: var(--radius); padding: 30px 28px;
  box-shadow: var(--shadow-soft); border: 1px solid rgba(26,27,32,.04);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .icon {
  width: 48px; height: 48px; border-radius: 14px; background: var(--pink-soft);
  display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 6px;
}
.card h4 { font-size: 18px; font-weight: 700; letter-spacing: -.01em; }
.card p { color: var(--muted); font-size: 15px; }
@media (max-width: 880px) { .grid-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid-cards { grid-template-columns: 1fr; } }

/* ---------- award band ---------- */
.award {
  background: var(--ink); color: #fff; border-radius: 32px;
  padding: 64px 48px; text-align: center;
  display: flex; flex-direction: column; gap: 16px; align-items: center;
  position: relative; overflow: hidden;
}
.award::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(560px 300px at 50% -60px, rgba(231,29,44,.28), transparent 70%);
  pointer-events: none;
}
.award > * { position: relative; }
.award .medal {
  width: 128px; height: 128px; border-radius: 50%;
  box-shadow: 0 18px 44px -14px rgba(0,0,0,.7), 0 0 0 6px rgba(255,255,255,.06);
}
.award h3 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -.02em; }
.award p { color: rgba(255,255,255,.7); font-size: 17px; max-width: 54ch; }
.award .cnet { color: #FF3B49; font-weight: 800; font-size: 22px; letter-spacing: .06em; }
.award .cnet span { color: rgba(255,255,255,.55); font-weight: 600; letter-spacing: .02em; }

/* ---------- final CTA ---------- */
.final-cta { text-align: center; padding: 104px 0 120px; display: flex; flex-direction: column; align-items: center; gap: 26px; }
.final-cta .fine { font-size: 14px; color: var(--muted); }

/* ---------- footer ---------- */
footer {
  border-top: 1px solid rgba(26,27,32,.08);
  padding: 56px 0 48px; background: var(--bg-soft);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand .brand { font-size: 16px; }
.footer-brand p { color: var(--muted); font-size: 14px; max-width: 34ch; }
footer h5 { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer ul a { font-size: 14px; color: var(--ink); opacity: .8; }
footer ul a:hover { opacity: 1; color: var(--pink); }
.footer-bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(26,27,32,.07); font-size: 13px; color: var(--muted); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ============ Suite hub page ============ */
.suite-hero { padding: 96px 0 56px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.suite-hero .lede { margin: 0 auto; }

.suite-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.app-card {
  background: var(--card); border-radius: 28px; padding: 32px 28px;
  box-shadow: var(--shadow-soft); border: 1px solid rgba(26,27,32,.04);
  display: flex; flex-direction: column; gap: 12px; align-items: flex-start;
  transition: transform .22s ease, box-shadow .22s ease;
  position: relative; overflow: hidden;
}
.app-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.app-tile {
  width: 60px; height: 60px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center; font-size: 30px;
  box-shadow: inset 0 0 0 1px rgba(26,27,32,.05), 0 8px 20px -10px rgba(80,30,40,.3);
  margin-bottom: 6px;
  overflow: hidden; background: #fff;
}
.app-tile img { width: 100%; height: 100%; object-fit: cover; }
.app-card h3 { font-size: 20px; font-weight: 800; letter-spacing: -.015em; }
.app-card p { color: var(--muted); font-size: 15px; flex: 1; }
.app-link { font-size: 14.5px; font-weight: 700; color: var(--pink); display: inline-flex; align-items: center; gap: 6px; }
.app-link:hover { color: var(--pink-dark); }

.app-card.featured {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF0F4 100%);
  border: 1px solid rgba(229,41,99,.15);
  padding: 36px 40px;
}
.app-card.featured .app-tile { width: 84px; height: 84px; border-radius: 20px; margin: 0; padding: 0; overflow: hidden; }
.app-card.featured .app-tile img { width: 100%; height: 100%; }
.app-card.featured .fc-copy { display: flex; flex-direction: column; gap: 8px; }
.app-card.featured .badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.mini-chip {
  font-size: 12.5px; font-weight: 700; padding: 5px 12px; border-radius: 999px;
  background: var(--pink-soft); color: var(--pink-dark);
}
.app-card.featured .fc-cta { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.btn-primary {
  background: var(--pink); color: #fff; font-weight: 700; font-size: 15px;
  padding: 13px 26px; border-radius: 999px; text-align: center;
  box-shadow: 0 10px 24px -10px rgba(229,41,99,.55);
  transition: transform .15s, background .2s;
}
.btn-primary:hover { background: var(--pink-dark); transform: scale(1.03); }
.btn-secondary {
  background: #fff; border: 1.5px solid rgba(26,27,32,.14); color: var(--ink);
  font-weight: 600; font-size: 15px; padding: 12px 26px; border-radius: 999px; text-align: center;
  transition: border-color .2s;
}
.btn-secondary:hover { border-color: var(--ink); }
@media (max-width: 880px) {
  .suite-grid { grid-template-columns: 1fr 1fr; }
  .app-card.featured { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .app-card.featured .fc-copy { align-items: center; }
  .app-card.featured .fc-cta { flex-direction: row; justify-content: center; flex-wrap: wrap; }
}
@media (max-width: 560px) { .suite-grid { grid-template-columns: 1fr; } }

.suite-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.suite-values .v { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.suite-values .v .icon { font-size: 28px; }
.suite-values h4 { font-size: 17px; font-weight: 700; }
.suite-values p { color: var(--muted); font-size: 14.5px; max-width: 30ch; }
@media (max-width: 720px) { .suite-values { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- hero floating proof chips ---------- */
.float-chip {
  position: absolute; z-index: 2;
  background: #fff; border-radius: 16px; padding: 10px 16px;
  box-shadow: 0 16px 40px -16px rgba(80,30,40,.35), 0 0 0 1px rgba(26,27,32,.05);
  font-size: 13.5px; font-weight: 700; letter-spacing: -.01em;
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
  animation: bob 5s ease-in-out infinite;
}
.float-chip small { display: block; font-size: 11.5px; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.float-chip.fc1 { top: 9%; left: -14%; animation-delay: 0s; }
.float-chip.fc2 { top: 44%; right: -17%; animation-delay: 1.6s; }
.float-chip.fc3 { bottom: 8%; left: -10%; animation-delay: 3.2s; }
@keyframes bob { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-8px) } }
@media (max-width: 1080px) { .float-chip.fc1 { left: -2% } .float-chip.fc3 { left: 2% } .float-chip.fc2 { right: -4% } }
@media (max-width: 560px) { .float-chip { display: none } }
@media (prefers-reduced-motion: reduce) { .float-chip { animation: none } }

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  background: var(--card); border-radius: 28px; padding: 32px 28px 0; overflow: hidden;
  box-shadow: var(--shadow-soft); border: 1px solid rgba(26,27,32,.04);
  display: flex; flex-direction: column; gap: 10px; text-align: center; align-items: center;
}
.step .num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--pink); color: #fff; font-weight: 800; font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px -8px rgba(229,41,99,.6);
}
.step h4 { font-size: 20px; font-weight: 800; letter-spacing: -.015em; }
.step p { color: var(--muted); font-size: 15px; max-width: 30ch; }
.step .shot {
  margin-top: 14px; width: min(230px, 70%);
  border-radius: 28px 28px 0 0; overflow: hidden;
  box-shadow: 0 -2px 0 4px rgba(26,27,32,.04), 0 18px 40px -20px rgba(80,30,40,.35);
}
.step .shot img { display: block; width: 100%; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }

/* ---------- occasions ---------- */
.occasions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.occasion {
  background: var(--card); border-radius: 20px; padding: 22px 18px;
  box-shadow: var(--shadow-soft); border: 1px solid rgba(26,27,32,.04);
  display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
  transition: transform .2s ease;
}
.occasion:hover { transform: translateY(-4px); }
.occasion .emoji {
  width: 52px; height: 52px; border-radius: 16px; font-size: 26px;
  display: flex; align-items: center; justify-content: center;
}
.occasion h5 { font-size: 15px; font-weight: 700; letter-spacing: -.01em; }
@media (max-width: 880px) { .occasions { grid-template-columns: repeat(2, 1fr); } }

/* ---------- stats + mid CTA band ---------- */
.stats-band {
  background: linear-gradient(120deg, var(--pink) 0%, #C2185B 100%);
  border-radius: 32px; color: #fff; padding: 56px 48px;
  display: flex; flex-direction: column; align-items: center; gap: 30px; text-align: center;
  position: relative; overflow: hidden;
}
.stats-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(3px 3px at 12% 24%, rgba(255,255,255,.5) 45%, transparent 50%),
    radial-gradient(4px 4px at 88% 18%, rgba(255,255,255,.4) 45%, transparent 50%),
    radial-gradient(3px 3px at 78% 82%, rgba(255,255,255,.45) 45%, transparent 50%),
    radial-gradient(4px 4px at 8% 78%, rgba(255,255,255,.35) 45%, transparent 50%),
    radial-gradient(420px 300px at 85% -20%, rgba(255,255,255,.16), transparent 70%);
}
.stats-band > * { position: relative; }
.stats-row { display: flex; gap: 64px; flex-wrap: wrap; justify-content: center; }
.stat .n { font-size: clamp(30px, 4vw, 44px); font-weight: 800; letter-spacing: -.02em; }
.stat .l { font-size: 14px; font-weight: 600; opacity: .85; }
.stats-band h3 { font-size: clamp(24px, 3.4vw, 34px); font-weight: 800; letter-spacing: -.02em; max-width: 24ch; }
.stats-band .appstore-badge svg { height: 60px; }
@media (max-width: 640px) { .stats-row { gap: 28px; } }

/* ---------- FAQ ---------- */
.faq { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: var(--card); border-radius: 18px; padding: 20px 26px;
  box-shadow: var(--shadow-soft); border: 1px solid rgba(26,27,32,.04);
}
.faq summary {
  font-weight: 700; font-size: 16.5px; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; font-weight: 600; color: var(--pink); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 12px; color: var(--muted); font-size: 15.5px; }

/* ---------- QR + final CTA ---------- */
.qr-row { display: flex; align-items: center; gap: 28px; }
.qr-card {
  background: #fff; border-radius: 22px; padding: 14px;
  box-shadow: var(--shadow-soft); border: 1px solid rgba(26,27,32,.06);
}
.qr-card img, .qr-card svg { width: 128px; height: 128px; display: block; }
.qr-hint { font-size: 14px; color: var(--muted); max-width: 20ch; text-align: left; font-weight: 600; }
@media (max-width: 640px) { .qr-row { display: none; } }

/* ---------- sticky mobile download bar ---------- */
.sticky-cta {
  display: none;
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-radius: 20px; padding: 10px 14px;
  box-shadow: 0 18px 44px -18px rgba(26,27,32,.45), 0 0 0 1px rgba(26,27,32,.07);
  align-items: center; gap: 12px;
}
.sticky-cta img { width: 40px; height: 40px; border-radius: 10px; }
.sticky-cta .t { flex: 1; min-width: 0; }
.sticky-cta .t b { display: block; font-size: 14.5px; letter-spacing: -.01em; }
.sticky-cta .t span { font-size: 12px; color: var(--muted); }
.sticky-cta .get {
  background: var(--pink); color: #fff; font-weight: 800; font-size: 14px;
  padding: 10px 22px; border-radius: 999px;
}
@media (max-width: 720px) { .sticky-cta { display: flex; } }

/* reveal on scroll (only hidden when JS is confirmed running) */
html.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
