/* =========================================================
   MemoryCards — styles
   Order: reset → primitives → components → sections → motion → responsive
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--t-body);
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { margin: 0; color: var(--ink); line-height: 1.15; font-weight: 800; letter-spacing: -0.01em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 6px; }

/* Images that failed to load: swap in a transparent pixel so no broken icon or alt text shows,
   and let the tinted parent (or the img's own background) stand in */
img.is-missing { content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1' height='1'/%3E"); }

.skip {
  position: absolute; left: 1rem; top: -4rem; z-index: 200;
  padding: .6rem 1rem; background: var(--ink); color: #fff; border-radius: var(--r-pill);
}
.skip:focus { top: 1rem; }

/* ---------- Primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section); }
.section--mist { background: var(--mist); }

.section-head {
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
}
.section-head h2 {
  font-size: var(--t-h2);
  text-wrap: balance;
}
.section-head h2::after {
  content: "";
  display: block;
  width: 60px; height: 4px;
  margin: 1.1rem auto 0;
  border-radius: 2px;
  background: var(--blue);
}
.section-head p {
  margin-top: 1.1rem;
  font-size: var(--t-lead);
  color: var(--ink-soft);
}
.section-head--left { margin-inline: 0; text-align: left; max-width: 560px; }
.section-head--left h2::after { margin-inline: 0; }

.section-cta { text-align: center; margin-top: clamp(2.5rem, 5vw, 4rem); }

.media {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--mist-deep);
}
.media img { width: 100%; height: 100%; object-fit: cover; }
.media--4x3 { aspect-ratio: 4 / 3; }
.media--3x2 { aspect-ratio: 3 / 2; }
.media--peach    { background: linear-gradient(135deg, var(--peach), #ffd9c4); }
.media--lavender { background: linear-gradient(135deg, var(--lavender), #dccdff); }
.media--mint     { background: linear-gradient(135deg, var(--mint), #cdeedb); }
.media--butter   { background: linear-gradient(135deg, var(--butter), #ffe9a3); }
.media--rose     { background: linear-gradient(135deg, var(--rose), #ffc9d6); }

.eyebrow {
  margin: 0 0 .5rem;
  font-size: var(--t-micro);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
}

.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .45rem .95rem;
  border-radius: var(--r-pill);
  font-size: var(--t-small);
  font-weight: 600;
}
.chip--glass {
  color: #fff;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tag {
  display: inline-block;
  padding: .3rem .8rem;
  border-radius: var(--r-pill);
  font-size: var(--t-micro);
  font-weight: 800;
  color: var(--ink);
}
.tag--butter { background: var(--butter); }
.tag--mint { background: var(--mint); }
.tag--lavender { background: var(--lavender); }
.tag--rose { background: var(--rose); }
.tag--peach { background: var(--peach); }

.chip-icon {
  flex: none;
  display: grid; place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  color: var(--ink);
}
.chip-icon svg { width: 24px; height: 24px; }
.chip-icon--mint { background: var(--mint); }
.chip-icon--butter { background: var(--butter); }
.chip-icon--lavender { background: var(--lavender); }
.chip-icon--peach { background: var(--peach); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.5rem;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: var(--t-body);
  line-height: 1.2;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
}
.btn svg { width: 1.1em; height: 1.1em; flex: none; transition: transform var(--dur-fast) var(--ease-out); }
.btn--primary {
  color: #fff;
  background: var(--blue);
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover { background: var(--blue-deep); transform: translateY(-1px); }
.btn--primary:hover svg { transform: translateX(3px); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost {
  color: #fff;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,.2); }
.btn--text {
  padding: .5rem .25rem;
  color: var(--blue);
  border-radius: 6px;
}
.btn--text:hover svg { transform: translateX(3px); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.1rem; }
.btn--sm { padding: .6rem 1.1rem; font-size: var(--t-small); }
.btn--block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: .9rem var(--gutter) 0;
  pointer-events: none;
}
.nav__bar {
  pointer-events: auto;
  max-width: var(--container);
  margin-inline: auto;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0 .6rem 0 1.1rem;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: var(--shadow-nav);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  transition: height var(--dur-base) var(--ease-out), background var(--dur-base);
}
.nav.is-scrolled .nav__bar { height: 60px; background: rgba(255,255,255,.92); }
.nav__brand { display: flex; align-items: center; gap: .6rem; margin-right: auto; }
.nav__mark { position: relative; width: 36px; height: 36px; flex: none; }
.nav__mark img, .nav__mark svg { width: 36px; height: 36px; border-radius: 9px; }
.nav__mark .nav__mark-fallback { display: none; }
.nav__mark.is-missing .nav__mark-fallback { display: block; }
.nav__name { font-weight: 700; font-size: 1.25rem; color: var(--ink); letter-spacing: -.01em; }
.nav__links { display: flex; gap: 1.6rem; }
.nav__links a {
  font-weight: 600; color: var(--ink);
  padding: .3rem 0; border-bottom: 2px solid transparent;
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.nav__links a:hover, .nav__links a.is-current { border-color: var(--blue); }
.nav__cta { padding: .7rem 1.3rem; font-size: var(--t-small); }
.nav__toggle {
  display: none; width: 44px; height: 44px; border-radius: 50%;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav__toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-fast); }
.nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.nav__mobile {
  pointer-events: auto;
  max-width: var(--container);
  margin: .6rem auto 0;
  padding: 1rem 1.25rem 1.25rem;
  display: flex; flex-direction: column; gap: .2rem;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-nav);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav__mobile[hidden] { display: none; }
.nav__mobile a { padding: .7rem .25rem; font-weight: 600; color: var(--ink); }
.nav__mobile .btn { margin-top: .6rem; }
.nav__mobile-sub { text-align: center; font-size: var(--t-small); color: var(--blue) !important; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  color: #fff;
  background: var(--ink);
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero__img, .hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
}
.hero__img.is-missing {
  visibility: visible;
  background:
    radial-gradient(60% 80% at 80% 40%, rgba(123,77,255,.55), transparent 70%),
    radial-gradient(50% 60% at 20% 90%, rgba(27,132,255,.5), transparent 70%),
    linear-gradient(160deg, #22355c, #101a30);
}
.hero__video { display: none; }
.hero.has-video .hero__video { display: block; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(14,22,40,.82) 0%, rgba(14,22,40,.55) 42%, rgba(14,22,40,.15) 75%, rgba(14,22,40,0) 100%),
    linear-gradient(180deg, rgba(14,22,40,.35) 0%, rgba(14,22,40,0) 30%, rgba(14,22,40,.45) 100%);
}
.hero__inner { max-width: var(--container); }
.hero__title {
  margin: 1.4rem 0 1.25rem;
  max-width: 17ch;
  font-size: var(--t-hero);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -.025em;
  color: #fff;
}
.hero__line { display: block; }
.hero__line--em { font-style: italic; font-weight: 400; color: #fff; }
.hero__lead {
  max-width: 34rem;
  font-size: var(--t-lead);
  color: var(--on-dark-soft);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero__trust {
  display: flex; align-items: center; gap: .8rem;
  margin-top: 1.4rem;
  font-size: var(--t-small);
  color: var(--on-dark-soft);
}
.avatars { display: inline-flex; flex: none; }
.avatars img {
  width: 32px; height: 32px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(255,255,255,.9);
  margin-left: -8px;
  background: linear-gradient(135deg, var(--lavender), var(--purple));
}
.avatars img:first-child { margin-left: 0; }
.avatars img.is-missing { visibility: visible; }
.avatars img:nth-child(2).is-missing { background: linear-gradient(135deg, var(--peach), #ff9a6b); }
.avatars img:nth-child(3).is-missing { background: linear-gradient(135deg, var(--mint), #4cc38a); }
.avatars img:nth-child(4).is-missing { background: linear-gradient(135deg, var(--butter), #f5b400); }

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 220px));
  gap: 2.5rem;
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255,255,255,.22);
  width: fit-content;
}
.stats li { display: grid; gap: .2rem; align-content: start; }
.stats strong {
  margin-bottom: .25rem;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -.02em;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stats__label { font-size: var(--t-small); font-weight: 700; color: #fff; }
.stats__note { font-size: var(--t-micro); color: var(--on-dark-soft); }

.hero__peek {
  position: absolute; right: var(--gutter); bottom: 2rem;
  display: flex; align-items: center; gap: .9rem;
  padding: .6rem 1.1rem .6rem .6rem;
  border-radius: 18px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  transition: background var(--dur-fast);
}
.hero__peek:hover { background: rgba(255,255,255,.22); }
.hero__peek-media {
  position: relative; width: 112px; height: 74px;
  border-radius: 12px; overflow: hidden;
  background: linear-gradient(135deg, #5a3ad1, #1b84ff);
}
.hero__peek-media img { width: 100%; height: 100%; object-fit: cover; }
.hero__peek-play {
  position: absolute; inset: 0; display: grid; place-items: center;
}
.hero__peek-play svg { width: 26px; height: 26px; color: #fff; filter: drop-shadow(0 2px 6px rgba(0,0,0,.4)); }
.hero__peek-text { display: flex; flex-direction: column; line-height: 1.25; }
.hero__peek-text strong { font-size: var(--t-small); }
.hero__peek-text small { font-size: var(--t-micro); color: var(--on-dark-soft); }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  padding: 1.1rem 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee__track {
  display: flex; gap: 3rem; width: max-content;
  animation: marquee 48s linear infinite;
}
.marquee__track span {
  display: inline-flex; align-items: center; gap: 3rem;
  font-weight: 700; font-size: var(--t-small); color: var(--ink-mute);
  white-space: nowrap;
}
.marquee__track span::after {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--purple); opacity: .6;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Moments ---------- */
.moments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.moment {
  background: var(--paper);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
}
.moment .media { border-radius: 0; }
.moment__body { padding: 1.6rem 1.6rem 1.9rem; }
.moment__body h3 { font-size: var(--t-h3); margin-bottom: .6rem; }

/* ---------- Stickers ---------- */
.stickers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.product-stage {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  background:
    radial-gradient(70% 70% at 30% 25%, rgba(255,255,255,.9), transparent 70%),
    linear-gradient(150deg, var(--lavender), var(--peach));
  display: grid; place-items: center;
  padding: 12%;
}
.product-stage__pack {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(31,46,77,.25));
}
.product-stage__pack.is-missing {
  visibility: visible;
  border-radius: 20px;
  background: linear-gradient(160deg, #fff, #f1f4fa);
  box-shadow: 0 30px 50px -20px rgba(31,46,77,.35);
  filter: none;
}
.sticker {
  position: absolute; right: 6%; bottom: 6%;
  margin: 0;
  width: 38%;
  max-width: 190px;
  padding: 8% 6% 6%;
  background: #fff;
  border-radius: 14%/10%;
  box-shadow: var(--shadow-float);
  transform: rotate(-7deg);
  text-align: center;
}
.sticker__qr { aspect-ratio: 1; background: #fff; }
.sticker__qr svg { width: 100%; height: 100%; }
/* If the QR library never loads, show a stylised code so the sticker still reads as one */
.sticker__qr:empty {
  background-image:
    linear-gradient(var(--ink), var(--ink)), linear-gradient(var(--ink), var(--ink)), linear-gradient(var(--ink), var(--ink)),
    repeating-linear-gradient(0deg, var(--ink) 0 8%, transparent 8% 16%),
    repeating-linear-gradient(90deg, var(--ink) 0 9%, transparent 9% 18%);
  background-size: 26% 26%, 26% 26%, 26% 26%, 40% 40%, 40% 40%;
  background-position: 6% 6%, 94% 6%, 6% 94%, 90% 90%, 90% 90%;
  background-repeat: no-repeat;
}
.sticker figcaption { margin-top: 6%; line-height: 1.2; }
.sticker figcaption strong { display: block; font-size: clamp(.7rem, 1.2vw, .95rem); color: var(--ink); }
.sticker figcaption span { display: block; font-size: clamp(.55rem, .95vw, .75rem); font-weight: 700; color: var(--purple); }

.checks { display: grid; gap: .9rem; margin-top: 1.5rem; }
.checks li {
  position: relative;
  padding-left: 2rem;
}
.checks li::before {
  content: "";
  position: absolute; left: 0; top: .32em;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--mint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='m5.5 10.5 3 3 6-7' fill='none' stroke='%231a7f4b' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/16px no-repeat;
}
.checks b { color: var(--ink); font-weight: 800; }
.checks--tight { gap: .6rem; font-size: var(--t-small); }
.stickers__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin-top: 2rem; }

/* ---------- How it works ---------- */
.hiw__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.hiw__steps { display: grid; }
.hiw__step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.1rem;
  min-height: 32vh;
  padding: 1.25rem 0;
  opacity: .32;
  transition: opacity var(--dur-slow) var(--ease-out);
}
.hiw__step:first-child { min-height: 30vh; }
.hiw__step:last-child { min-height: 24vh; }
.hiw__step.is-active { opacity: 1; }
.hiw__num {
  display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: 50%;
  font-weight: 800; font-size: 1.05rem;
  color: var(--ink);
  background: var(--mist-deep);
  transition: background var(--dur-base), color var(--dur-base), transform var(--dur-base) var(--ease-out);
}
.hiw__step.is-active .hiw__num { background: var(--blue); color: #fff; transform: scale(1.06); }
.hiw__step:first-child .hiw__num { background: var(--purple); color: #fff; }
.hiw__step h3 { font-size: var(--t-h3); margin: .55rem 0 .6rem; max-width: 22ch; }
.hiw__step p { max-width: 40ch; }
.hiw__start {
  display: inline-block;
  padding: .2rem .7rem;
  border-radius: var(--r-pill);
  background: var(--purple-tint);
  color: var(--purple);
  font-size: var(--t-micro); font-weight: 800;
}
.hiw__buy { margin-top: 1rem; }

.hiw__stage {
  position: sticky;
  top: calc(var(--nav-h) + 2.5rem);
}
.hiw__stage-inner {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(160deg, var(--mist), var(--mist-deep));
  box-shadow: var(--shadow-card);
}
.scene {
  position: absolute; inset: 0;
  opacity: 0;
  transform: scale(.96);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.scene.is-active { opacity: 1; transform: none; }
.scene > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.illus { position: absolute; inset: 0; display: grid; place-items: center; }
.illus .tag { position: absolute; top: 7%; right: 7%; box-shadow: var(--shadow-card); }
.hiw__dots { display: flex; justify-content: center; gap: .45rem; margin-top: 1.1rem; }
.hiw__dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--line); transition: background var(--dur-base), width var(--dur-base) var(--ease-out); }
.hiw__dots i.is-active { width: 22px; border-radius: 4px; background: var(--blue); }

/* Illustration: pack */
.pack {
  width: 52%; aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #fff, #f3f5fb);
  border-radius: 14px;
  box-shadow: var(--shadow-float);
  padding: 8%;
  display: flex; flex-direction: column; gap: 8%;
}
.pack__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6%; }
.pack__grid i {
  aspect-ratio: 1; border-radius: 14%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(31,46,77,.18);
  background-image:
    linear-gradient(var(--ink), var(--ink)), linear-gradient(var(--ink), var(--ink)), linear-gradient(var(--ink), var(--ink)),
    repeating-linear-gradient(0deg, var(--ink) 0 10%, transparent 10% 20%),
    repeating-linear-gradient(90deg, var(--ink) 0 12%, transparent 12% 24%);
  background-size: 26% 26%, 26% 26%, 26% 26%, 36% 36%, 36% 36%;
  background-position: 14% 14%, 86% 14%, 14% 86%, 84% 84%, 84% 84%;
  background-repeat: no-repeat;
}
.pack__label { margin-top: auto; font-weight: 800; color: var(--purple); font-size: clamp(.8rem, 1.5vw, 1.1rem); line-height: 1.2; }
.pack__label small { display: block; color: var(--ink-mute); font-weight: 600; font-size: .7em; }

/* Illustration: mini phone */
.mini-phone {
  width: 42%; aspect-ratio: 9 / 18.5;
  border-radius: 12% / 6%;
  background: #1b2233;
  padding: 4%;
  box-shadow: var(--shadow-float);
}
.mini-screen {
  position: relative; width: 100%; height: 100%;
  border-radius: 10% / 5%;
  background: #fff;
  overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5%;
  padding: 10%;
  text-align: center;
}
.mini-screen b { font-size: clamp(.75rem, 1.4vw, 1rem); color: var(--ink); }
.mini-screen small { font-size: clamp(.55rem, 1vw, .75rem); color: var(--ink-mute); line-height: 1.3; }
.mini-appicon { width: 34%; }
.mini-btn {
  padding: .3em 1.2em; border-radius: var(--r-pill);
  background: var(--blue); color: #fff; font-weight: 800; font-size: clamp(.6rem, 1.1vw, .85rem);
}
.mini-btn--outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.mini-screen--rec { background: linear-gradient(180deg, #d9c6ff, #f7d9c7); }
.mini-rec-time { position: absolute; top: 7%; padding: .15em .6em; border-radius: var(--r-pill); background: rgba(0,0,0,.55); color: #fff; font-size: clamp(.55rem,1vw,.75rem); font-weight: 800; }
.mini-rec-time::before { content: ""; display: inline-block; width: .5em; height: .5em; border-radius: 50%; background: #ff3b5c; margin-right: .4em; animation: blink 1.2s infinite; }
@keyframes blink { 50% { opacity: .2; } }
.mini-face {
  width: 46%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffe0cf, #e8a98a);
  box-shadow: inset 0 -10px 20px rgba(0,0,0,.08);
}
.mini-face--big { width: 60%; }
.mini-rec-btn { position: absolute; bottom: 7%; width: 18%; aspect-ratio: 1; border-radius: 50%; background: #ff3b5c; box-shadow: 0 0 0 4px #fff, 0 0 0 6px #ff3b5c; }
.mini-screen--scan, .mini-screen--camera { background: #0f1727; justify-content: center; }
.mini-screen--scan small, .mini-screen--camera small { color: #9fe3bd; font-weight: 700; }
.mini-finder {
  position: relative; width: 62%; aspect-ratio: 1;
  display: grid; place-items: center;
}
.mini-finder::before {
  content: ""; position: absolute; inset: 0; border-radius: 12px;
  background:
    linear-gradient(#4cc38a, #4cc38a) top left / 22% 4px no-repeat,
    linear-gradient(#4cc38a, #4cc38a) top left / 4px 22% no-repeat,
    linear-gradient(#4cc38a, #4cc38a) top right / 22% 4px no-repeat,
    linear-gradient(#4cc38a, #4cc38a) top right / 4px 22% no-repeat,
    linear-gradient(#4cc38a, #4cc38a) bottom left / 22% 4px no-repeat,
    linear-gradient(#4cc38a, #4cc38a) bottom left / 4px 22% no-repeat,
    linear-gradient(#4cc38a, #4cc38a) bottom right / 22% 4px no-repeat,
    linear-gradient(#4cc38a, #4cc38a) bottom right / 4px 22% no-repeat;
}
.mini-finder--soft::before { opacity: .6; }
.mini-finder::after {
  content: ""; position: absolute; left: 8%; right: 8%; top: 10%; height: 2px;
  background: #4cc38a; box-shadow: 0 0 12px #4cc38a;
  animation: scanline 1.8s var(--ease-in-out) infinite alternate;
}
@keyframes scanline { to { top: 88%; } }
.qr-glyph {
  display: block; width: 62%; aspect-ratio: 1; border-radius: 6px; background: #fff;
  background-image:
    linear-gradient(var(--ink), var(--ink)), linear-gradient(var(--ink), var(--ink)), linear-gradient(var(--ink), var(--ink)),
    repeating-linear-gradient(0deg, var(--ink) 0 8%, transparent 8% 16%),
    repeating-linear-gradient(90deg, var(--ink) 0 9%, transparent 9% 18%);
  background-size: 26% 26%, 26% 26%, 26% 26%, 40% 40%, 40% 40%;
  background-position: 10% 10%, 90% 10%, 10% 90%, 88% 88%, 88% 88%;
  background-repeat: no-repeat;
  padding: 8%;
  background-clip: content-box;
}
.mini-toast {
  position: absolute; bottom: 8%; left: 6%; right: 6%;
  padding: .6em .8em; border-radius: 10px;
  background: rgba(255,255,255,.95); color: var(--ink);
  font-size: clamp(.5rem, .95vw, .72rem); font-weight: 700; line-height: 1.25;
}
.mini-screen--play { background: #0f1727; }
.mini-play {
  position: absolute; width: 22%; aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center; background: rgba(255,255,255,.92); color: var(--ink);
}
.mini-play svg { width: 55%; height: 55%; }
.mini-progress { position: absolute; left: 8%; right: 8%; bottom: 8%; height: 4px; border-radius: 2px; background: rgba(255,255,255,.3); }
.mini-progress i { display: block; height: 100%; width: 38%; border-radius: 2px; background: var(--blue); animation: progress 6s linear infinite; }
@keyframes progress { from { width: 6%; } to { width: 94%; } }
.mini-screen--keep { background: linear-gradient(180deg, #fff, var(--lavender)); }
.mini-heart { width: 30%; color: var(--purple); }

/* Illustration: gift */
.gift { position: relative; width: 56%; aspect-ratio: 1; }
.gift__box {
  position: absolute; left: 8%; right: 8%; bottom: 0; height: 60%;
  background: linear-gradient(160deg, #c9a97f, #a98559);
  border-radius: 0 0 10px 10px;
}
.gift__lid {
  position: absolute; left: 0; right: 0; top: 24%; height: 20%;
  background: linear-gradient(160deg, #d4b68d, #b8946a);
  border-radius: 8px;
  box-shadow: 0 8px 20px -8px rgba(31,46,77,.35);
}
.gift__ribbon {
  position: absolute; left: 46%; top: 24%; width: 8%; bottom: 0;
  background: #7b4dff;
}
.gift__ribbon::before, .gift__ribbon::after {
  content: ""; position: absolute; top: -17%;
  width: 190%; height: 20%;
  border: 3px solid #7b4dff; border-radius: 50%;
  background: rgba(123,77,255,.12);
}
.gift__ribbon::before { right: 50%; transform: rotate(-28deg); }
.gift__ribbon::after { left: 50%; transform: rotate(28deg); }
.gift__sticker {
  position: absolute; right: 12%; bottom: 10%;
  width: 30%; aspect-ratio: 1;
  background: #fff; border-radius: 12%;
  box-shadow: var(--shadow-float);
  transform: rotate(-8deg);
  display: grid; place-items: center;
}
.gift__sticker .qr-glyph { width: 74%; }

/* ---------- App ---------- */
.app {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
.app__features { display: grid; gap: clamp(2rem, 5vw, 3.5rem); }
.app__features li { display: flex; gap: 1.1rem; align-items: flex-start; }
.app__features h3 { font-size: var(--t-h3); margin-bottom: .4rem; }
.app__features--left { text-align: right; }
.app__features--left li { flex-direction: row-reverse; }
.phone { display: grid; place-items: center; }
.phone__frame {
  position: relative;
  width: clamp(240px, 26vw, 310px);
  aspect-ratio: 9 / 18.8;
  padding: 12px;
  border-radius: 46px;
  background: linear-gradient(160deg, #3a4257, #151a26);
  box-shadow: var(--shadow-float), inset 0 0 0 2px rgba(255,255,255,.08);
}
.phone__notch {
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 34%; height: 24px; border-radius: 14px; background: #0c0f16; z-index: 3;
}
.phone__screen {
  position: relative; width: 100%; height: 100%;
  border-radius: 36px; overflow: hidden;
  background: #fff;
}
/* (scene images are positioned by .app-scene img) */
.phone__placeholder {
  position: absolute; inset: 0; padding: 18% 8% 8%;
  display: flex; flex-direction: column; gap: 6%;
  background: #fbf9ff;
}
.phone__ph-hero { height: 24%; border-radius: 14px; background: linear-gradient(135deg, #2d2b55, #7b4dff); }
.phone__ph-row { display: flex; gap: 4%; height: 14%; }
.phone__ph-row i { flex: 1; border-radius: 12px; background: var(--lavender); }
.phone__ph-row--3 { height: 20%; }
.phone__ph-row--3 i { background: var(--peach); }
.phone__ph-row--3 i:nth-child(2) { background: var(--mint); }
.phone__ph-row--3 i:nth-child(3) { background: var(--butter); }
.phone__ph-nav { margin-top: auto; height: 8%; border-radius: 12px; background: #fff; box-shadow: 0 -4px 20px rgba(31,46,77,.08); }
.app-scene { position: absolute; inset: 0; opacity: 0; transform: scale(.985); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.app-scene.is-active { opacity: 1; transform: none; }
.app-scene img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.app__dots { display: flex; justify-content: center; gap: .45rem; margin-top: 1rem; }
.app__dots i { width: 7px; height: 7px; border-radius: 50%; background: #c9d3e2; transition: background var(--dur-base), width var(--dur-base) var(--ease-out); }
.app__dots i.is-active { width: 22px; border-radius: 4px; background: var(--blue); }
.app__feature { cursor: pointer; border-radius: var(--r-md); transition: opacity var(--dur-base); }
.app__feature .chip-icon { transition: box-shadow var(--dur-base), transform var(--dur-base) var(--ease-out); }
.app__feature.is-active .chip-icon { box-shadow: 0 0 0 4px var(--mist), 0 0 0 7px var(--blue); transform: scale(1.04); }
.app__feature:focus-visible { outline: 3px solid var(--blue); outline-offset: 6px; }
.phone__ph-title { font-weight: 800; color: var(--ink); font-size: clamp(.8rem, 1.2vw, 1rem); }
.phone__ph-title--light { color: #fff; }
.phone__ph-pill { align-self: center; padding: .35em 1em; border-radius: var(--r-pill); background: var(--lavender); color: var(--ink); font-weight: 800; font-size: clamp(.55rem, .9vw, .72rem); text-align: center; }
.phone__ph-pill--mint { background: var(--mint); }
.phone__placeholder--watch { background: #fbfaff; }
.phone__ph-video { flex: 1; border-radius: 14px; background: radial-gradient(circle at 50% 42%, #ffe0cf 0 18%, #6a4bd8 19%, #2a2455 100%); position: relative; }
.phone__ph-video i { position: absolute; left: 50%; top: 50%; width: 22%; aspect-ratio: 1; transform: translate(-50%, -50%); border-radius: 50%; background: rgba(255,255,255,.92); }
.phone__ph-video i::after { content: ""; position: absolute; left: 56%; top: 50%; transform: translate(-50%, -50%); border-left: 34% solid var(--ink); border-top: 22% solid transparent; border-bottom: 22% solid transparent; width: 0; height: 0; }
.phone__ph-bar { height: 5px; border-radius: 3px; background: var(--mist-deep); }
.phone__ph-bar i { display: block; width: 46%; height: 100%; border-radius: 3px; background: var(--blue); }
.phone__placeholder--scan { background: #0f1727; align-items: center; justify-content: center; gap: 8%; }
.phone__placeholder--scan .mini-finder { width: 70%; }
.phone__ph-avatars { display: flex; align-items: center; }
.phone__ph-avatars i { width: 22%; aspect-ratio: 1; border-radius: 50%; margin-left: -6%; border: 2px solid #fff; background: linear-gradient(135deg, var(--lavender), var(--purple)); }
.phone__ph-avatars i:first-child { margin-left: 0; }
.phone__ph-avatars i:nth-child(2) { background: linear-gradient(135deg, var(--peach), #ff9a6b); }
.phone__ph-avatars i:nth-child(3) { background: linear-gradient(135deg, var(--mint), #4cc38a); }
.phone__ph-avatars i:nth-child(4) { background: linear-gradient(135deg, var(--butter), #f5b400); }
.phone__ph-avatars b { margin-left: 4%; font-size: clamp(.6rem, 1vw, .8rem); color: var(--ink-mute); }
.phone__ph-clip { height: 11%; border-radius: 12px; background: var(--paper); box-shadow: var(--shadow-card); }
.phone__ph-clip:nth-of-type(2) { background: var(--peach); }
.phone__ph-clip:nth-of-type(3) { background: var(--mint); }
.app__badges { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; margin-top: clamp(2.5rem, 5vw, 4rem); }
.badge {
  display: inline-flex; align-items: center; gap: .7rem;
  padding: .6rem 1.2rem .6rem .9rem;
  border-radius: 12px;
  background: var(--ink); color: #fff;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast);
}
.badge:hover { background: #0f1a33; transform: translateY(-1px); }
.badge svg { width: 26px; height: 26px; }
.badge span { display: flex; flex-direction: column; line-height: 1.1; font-weight: 700; font-size: 1.05rem; }
.badge small { font-size: .68rem; font-weight: 600; opacity: .8; }

/* ---------- Reviews ---------- */
.reviews { overflow: hidden; }
.reviews__track {
  display: flex; gap: clamp(1rem, 2vw, 1.5rem);
  padding: .5rem var(--gutter) 1.5rem;
  padding-left: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  scroll-padding-left: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}
.reviews__track::-webkit-scrollbar { display: none; }
.reviews__track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.reviews__track::after { content: ""; flex: none; width: 1px; }
.review-card {
  flex: 0 0 min(78vw, 420px);
  scroll-snap-align: start;
  background: var(--paper);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.review-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
}
.review-card__media video { width: 100%; height: 100%; object-fit: cover; }
.review-card__media video.is-missing { display: none; }
.play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 72px; height: 72px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.92); color: var(--ink);
  box-shadow: var(--shadow-float);
  transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast);
}
.play:hover { transform: translate(-50%, -50%) scale(1.06); }
.play svg { width: 30px; height: 30px; margin-left: 3px; }
.review-card.is-playing .play { opacity: 0; pointer-events: none; }
.review-card.is-playing .review-card__quote { opacity: 0; }
.review-card__quote {
  position: absolute; left: 1.25rem; right: 1.25rem; bottom: 1.25rem;
  margin: 0;
  padding: .9rem 1.1rem;
  border-radius: 14px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--ink);
  font-weight: 600; font-size: var(--t-small); line-height: 1.4;
  transition: opacity var(--dur-base);
}
.review-card footer { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 1rem 1.4rem 1.2rem; }
.review-card footer strong { color: var(--ink); }
.review-card footer span { font-size: var(--t-small); color: var(--ink-mute); }

/* ---------- Pricing ---------- */
.pricing {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}
.price-card {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: var(--r-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-float);
}
.price-card__top h3 { font-size: var(--t-h3); margin-top: .8rem; }
.price { display: flex; align-items: baseline; gap: 1rem; margin: 1.2rem 0 .4rem; }
.price__amount { font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 800; color: var(--ink); letter-spacing: -.03em; line-height: 1; }
.price__per { font-weight: 700; color: var(--purple); }
.price-card .btn { margin-top: 1.8rem; }
.price-card__note { margin-top: .9rem; font-size: var(--t-micro); color: var(--ink-mute); text-align: center; }
.compare {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: var(--r-lg);
  background: var(--paper);
  border: 1px solid var(--line);
}
.compare h3 { font-size: var(--t-h3); margin-bottom: 1.4rem; }
.compare__row + .compare__row { margin-top: 1.4rem; }
.compare__meta { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .5rem; font-weight: 700; color: var(--ink); }
.compare__meta strong { font-size: 1.3rem; font-weight: 800; }
.compare__row small { display: block; margin-top: .45rem; color: var(--ink-mute); font-size: var(--t-micro); }
.bar { height: 14px; border-radius: 7px; background: var(--mist-deep); overflow: hidden; }
.bar i { display: block; height: 100%; width: var(--w); border-radius: 7px; transform-origin: left; transform: scaleX(1); }
.bar--grey i { background: #b9c2d1; }
.bar--blue i { background: linear-gradient(90deg, var(--purple), var(--blue)); }
.compare__saving { margin-top: 1.4rem; padding: .9rem 1.1rem; border-radius: 12px; background: var(--mint); color: var(--ink); font-weight: 600; }
.subs { margin-top: 1.8rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.subs h4 { font-size: 1.05rem; margin-bottom: .4rem; }
.subs p { font-size: var(--t-small); }
.subs dl { display: flex; gap: .8rem; margin: 1rem 0 0; }
.subs dl div { flex: 1; padding: .8rem 1rem; border-radius: 12px; background: var(--mist); }
.subs dt { font-weight: 800; color: var(--ink); }
.subs dd { margin: 0; font-size: var(--t-small); }

/* ---------- Partners ---------- */
.partners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.partner h3 { font-size: var(--t-h3); margin: 1.1rem 0 .5rem; }
.lead-form {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  border-radius: var(--r-lg);
  background: var(--mist);
  border: 1px solid var(--line);
}
.lead-form h3 { font-size: var(--t-h3); }
.lead-form > p { margin-top: .5rem; max-width: 56ch; }
.lead-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.25rem; margin-top: 1.6rem; }
.lead-form label { display: grid; gap: .35rem; font-weight: 700; color: var(--ink); font-size: var(--t-small); }
.lead-form label em { font-weight: 500; font-style: normal; color: var(--ink-mute); }
.lead-form__full { grid-column: 1 / -1; }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  padding: .8rem 1rem;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  font-weight: 500;
  color: var(--ink);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.lead-form textarea { resize: vertical; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-tint);
}
.lead-form input[aria-invalid="true"], .lead-form select[aria-invalid="true"] { border-color: #e0245e; }
.lead-form__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin-top: 1.4rem; }
.lead-form__status { font-weight: 600; font-size: var(--t-small); }
.lead-form__status.is-error { color: #c8123f; }
.lead-form__status.is-success { color: #1a7f4b; }
.lead-form.is-sent .lead-form__grid, .lead-form.is-sent .btn { display: none; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .75rem; }
.faq details {
  border-radius: var(--r-md);
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
}
.faq summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.4rem;
  font-weight: 700; color: var(--ink);
  cursor: pointer;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--mist) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10 5v10M5 10h10' stroke='%231f2e4d' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center/16px no-repeat;
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-base);
}
.faq details[open] summary::after { transform: rotate(45deg); background-color: var(--blue-tint); }
.faq details > div { padding: 0 1.4rem 1.3rem; max-width: 62ch; }
.faq details > div strong { color: var(--ink); }

/* ---------- Final CTA ---------- */
.final {
  position: relative;
  padding: clamp(6rem, 14vw, 11rem) 0;
  color: #fff;
  text-align: center;
  background: var(--ink);
  isolation: isolate;
  overflow: hidden;
}
.final__media { position: absolute; inset: 0; z-index: -1; }
.final__media img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.final__media img.is-missing {
  visibility: visible;
  background:
    radial-gradient(50% 70% at 20% 30%, rgba(123,77,255,.6), transparent 70%),
    radial-gradient(50% 60% at 85% 80%, rgba(27,132,255,.5), transparent 70%),
    linear-gradient(160deg, #1b2a4a, #0e1628);
}
.final__scrim { position: absolute; inset: 0; background: rgba(14,22,40,.55); }
.final h2 { font-size: var(--t-h2); color: #fff; font-weight: 300; letter-spacing: -.02em; font-size: clamp(2.2rem, 5vw, 3.6rem); }
.final h2 br { display: inline; }
.final p { margin-top: 1rem; font-size: var(--t-lead); color: var(--on-dark-soft); }
.final__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; margin-top: 2.2rem; }

/* ---------- Footer ---------- */
.footer { background: var(--paper); border-top: 1px solid var(--line); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; font-size: var(--t-small); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
.footer__grid h4 { font-size: 1rem; margin-bottom: .8rem; }
.footer__grid a { display: block; padding: .25rem 0; color: var(--ink-soft); }
.footer__grid a:hover { color: var(--blue); }
.footer__brand strong { display: block; margin: .8rem 0 .5rem; color: var(--ink); font-size: 1.15rem; }
.footer__brand p { max-width: 36ch; }
.footer__secure { margin-top: 1rem; padding: .8rem 1rem; border-radius: 12px; background: var(--mist); font-size: var(--t-micro); }
.footer__secure a { display: inline; padding: 0; color: var(--purple); font-weight: 700; }
.footer__legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); color: var(--ink-mute); font-size: var(--t-micro); }
.footer__legal a { margin-left: 1rem; }


/* ---------- Vendor band (landing page, slim) ---------- */
.vendors {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.vendors__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.vendors__copy { max-width: 640px; }
.vendors__copy h2 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); margin: .8rem 0 .5rem; }
.vendors__copy p { font-size: var(--t-small); }
.vendors .btn { flex: none; }

/* ---------- Partners page ---------- */
.page-hero {
  padding: calc(var(--nav-h) + 4.5rem) 0 clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(60% 80% at 100% 0%, var(--lavender), transparent 70%),
    radial-gradient(50% 60% at 0% 100%, var(--peach), transparent 70%),
    var(--mist);
}
.page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.page-hero h1 {
  margin: 1.1rem 0 1.2rem;
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  letter-spacing: -.02em;
}
.page-hero__lead { max-width: 36rem; font-size: var(--t-lead); }
.page-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin-top: 2rem; }

.brand-demo { position: relative; padding-bottom: 12%; padding-right: 8%; }
.brand-demo__photo { border-radius: var(--r-lg); box-shadow: var(--shadow-float); }
.brand-demo .sticker { right: 0; bottom: 0; width: 42%; max-width: 210px; }

.sticker--brand { padding-top: 6%; }
.sticker__brand {
  display: block;
  margin-bottom: 6%;
  font-size: clamp(.75rem, 1.3vw, 1rem);
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--ink);
  border-bottom: 2px solid var(--peach);
  padding-bottom: 4%;
}
.sticker--brand figcaption span { color: var(--ink-mute); }

.branded {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.product-stage--brand {
  background:
    radial-gradient(70% 70% at 30% 25%, rgba(255,255,255,.9), transparent 70%),
    linear-gradient(150deg, var(--peach), var(--rose));
}
.brand-pack {
  margin-right: 16%;
  width: 62%; aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #fff, #fff6f2);
  border-radius: 14px;
  box-shadow: var(--shadow-float);
  padding: 8%;
  display: flex; flex-direction: column;
  transform: rotate(-3deg);
}
.product-stage--brand .sticker { right: 5%; bottom: 5%; width: 34%; }
.brand-pack__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6%; }
.brand-pack__grid i {
  aspect-ratio: 1; border-radius: 14%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(31,46,77,.18);
  background-image:
    linear-gradient(var(--ink), var(--ink)), linear-gradient(var(--ink), var(--ink)), linear-gradient(var(--ink), var(--ink)),
    repeating-linear-gradient(0deg, var(--ink) 0 10%, transparent 10% 20%),
    repeating-linear-gradient(90deg, var(--ink) 0 12%, transparent 12% 24%);
  background-size: 26% 26%, 26% 26%, 26% 26%, 36% 36%, 36% 36%;
  background-position: 14% 14%, 86% 14%, 14% 86%, 84% 84%, 84% 84%;
  background-repeat: no-repeat;
}
.brand-pack__label {
  margin-top: auto;
  font-weight: 800; color: var(--ink);
  font-size: clamp(.9rem, 1.7vw, 1.3rem); line-height: 1.2;
}
.brand-pack__label small { display: block; margin-top: .2em; color: var(--ink-mute); font-weight: 600; font-size: .62em; }

.trade-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  counter-reset: none;
}
.trade-steps li {
  padding: 1.8rem;
  border-radius: var(--r-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.trade-steps__num {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue); color: #fff; font-weight: 800;
  margin-bottom: 1.1rem;
}
.trade-steps h3 { font-size: var(--t-h3); margin-bottom: .5rem; }

@media (max-width: 960px) {
  .vendors__inner { flex-direction: column; align-items: flex-start; }
  .page-hero__inner { grid-template-columns: 1fr; }
  .page-hero__visual { max-width: 520px; }
  .branded { grid-template-columns: 1fr; }
  .branded__visual { max-width: 520px; margin-inline: auto; width: 100%; }
  .trade-steps { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
}
/* ---------- Motion (progressive) ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); }
.js .reveal.is-in { opacity: 1; transform: none; transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.js .hero__line, .js .hero__lead, .js .hero__actions, .js .hero__trust, .js .stats, .js .hero .chip, .js .hero__peek {
  opacity: 0; transform: translateY(16px);
  animation: hero-in .9s var(--ease-out) forwards;
}
.js .hero .chip { animation-delay: .05s; }
.js .hero__line:nth-child(1) { animation-delay: .15s; }
.js .hero__line:nth-child(2) { animation-delay: .3s; }
.js .hero__lead { animation-delay: .45s; }
.js .hero__actions { animation-delay: .55s; }
.js .hero__trust { animation-delay: .65s; }
.js .stats { animation-delay: .8s; }
.js .hero__peek { animation-delay: 1s; }
@keyframes hero-in { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal, .js .hero__line, .js .hero__lead, .js .hero__actions, .js .hero__trust, .js .stats, .js .hero .chip, .js .hero__peek {
    opacity: 1; transform: none; animation: none; transition: none;
  }
  .marquee__track { animation: none; }
  .mini-finder::after, .mini-progress i, .mini-rec-time::before { animation: none; }
  .scene { transition: none; }
  .hiw__step { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .nav__links { gap: 1.1rem; }
  .app { grid-template-columns: 1fr auto 1fr; }
}

@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__bar { padding-right: .8rem; }

  .stats { grid-template-columns: 1fr; gap: 1.1rem; width: 100%; }
  .hero__peek { display: none; }

  .moments { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }

  .stickers { grid-template-columns: 1fr; }
  .stickers__visual { max-width: 520px; margin-inline: auto; width: 100%; }
  .section-head--left { margin-inline: auto; text-align: center; }
  .section-head--left h2::after { margin-inline: auto; }

  .hiw__layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .hiw__stage { order: -1; top: 0; z-index: 1; background: var(--paper); padding: calc(var(--nav-h) + 1.1rem) 0 .5rem; }
  .hiw__stage-inner { aspect-ratio: 16 / 10; max-width: 560px; margin-inline: auto; }
  .hiw__dots { margin-bottom: .5rem; }
  .hiw__step { min-height: 0; padding: 1rem 0; opacity: 1; }
  .hiw__step:first-child, .hiw__step:last-child { min-height: 0; }
  .hiw__step .hiw__num { transform: none; }

  .app { grid-template-columns: 1fr; gap: 1rem; }
  .app__features--left { text-align: left; }
  .app__features--left li { flex-direction: row; }
  .app__stage { order: -1; position: sticky; top: 0; z-index: 1; background: var(--mist); padding: calc(var(--nav-h) + 1.1rem) 0 .6rem; }
  .app__stage .phone__frame { width: 150px; padding: 7px; border-radius: 26px; }
  .app__stage .phone__screen { border-radius: 20px; }
  .app__stage .phone__notch { top: 12px; height: 14px; width: 36%; }
  .app__feature { min-height: 0; padding: 1.2rem 0; }
  .app__features { gap: 0; }

  .pricing { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .partners { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .lead-form__grid { grid-template-columns: 1fr; }

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

@media (max-width: 560px) {
  .hero { padding-top: calc(var(--nav-h) + 3rem); }
  .hero__title { max-width: none; }
  .hero__actions .btn { width: 100%; }
  .btn { white-space: normal; text-align: center; }
  .btn--lg { padding: .95rem 1.2rem; font-size: 1rem; }
  .hero__trust { align-items: flex-start; }
  .hiw__stage-inner { aspect-ratio: 16 / 9; }
  .mini-phone { width: auto; height: 90%; }
  .pack { width: auto; height: 84%; }
  .gift { width: auto; height: 78%; }
  .illus .tag { top: 5%; right: 5%; }
  .price { flex-direction: column; gap: .3rem; }
  .subs dl { flex-direction: column; }
  .footer__grid { grid-template-columns: 1fr; }
  .review-card footer { flex-direction: column; gap: .2rem; }
}
