/* ============================================================
   Makeup Plus — landing page
   1. Tokens        2. Base & reset      3. Utilities
   4. Buttons       5. Header            6. Hero
   7. Stats         8. Features          9. Phone & app screens
   10. Gallery      11. Final CTA        12. Footer
   13. Pocket CTA   14. Legal pages      15. Motion & a11y
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  /* palette — warm porcelain, plum ink, one rose accent */
  --paper:      #FAF6F2;
  --paper-deep: #F3ECE6;
  --card:       #FFFFFF;
  --ink:        #241B1E;
  --ink-soft:   #5C4E53;
  --muted:      #8B7B81;
  --line:       rgba(36, 27, 30, .1);
  --rose:       #D6486F;
  --rose-deep:  #B93A5C;
  --blush:      #F7E8EC;
  --petal:      #F0D5DD;

  /* type */
  --serif: "Fraunces", "Georgia", serif;
  --sans:  "Instrument Sans", "Helvetica Neue", "Segoe UI", sans-serif;

  /* rhythm */
  --space-section: clamp(5.5rem, 14vw, 10.5rem);
  --gutter: clamp(1.25rem, 5vw, 2.5rem);
  --measure: 34em;

  /* device */
  --phone-w: clamp(272px, 78vw, 336px);
  --phone-r: clamp(42px, 12.5vw, 54px);
}

/* ---------- 2. Base & reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

h1, h2, h3, p, dl, dd, dt, ul, figure { margin: 0; padding: 0; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }

::selection { background: var(--petal); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute;
  left: 50%;
  top: 0.75rem;
  translate: -50% 0;
  z-index: 100;
  padding: .6rem 1.1rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  font-size: .85rem;
  text-decoration: none;
  clip-path: inset(50%);
}
.skip:focus-visible { clip-path: none; }

/* ---------- 3. Utilities ---------- */
.eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rose);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: .45em; height: .45em;
  margin-right: .7em;
  border-radius: 50%;
  background: var(--rose);
  vertical-align: .12em;
}

.kicker {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.1rem;
}

/* scroll reveal — hidden only when JS is present */
.js [data-reveal],
.js [data-reveal-group] > * {
  opacity: 0;
  transform: translateY(26px);
}
.js .in[data-reveal],
.js .in[data-reveal-group] > * {
  opacity: 1;
  transform: none;
  transition:
    opacity .9s cubic-bezier(.22, .61, .36, 1),
    transform .9s cubic-bezier(.22, .61, .36, 1);
  transition-delay: var(--d, 0s);
}

/* ---------- 4. Buttons ---------- */
.store-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
}
/* platform-aware ordering (body class set by JS) */
.is-android .store-row a[data-store="appstore"]   { order: 2; }
.is-android .store-row a[data-store="googleplay"] { order: 1; }

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: .8rem 1.5rem .85rem 1.25rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  text-decoration: none;
  line-height: 1.05;
  box-shadow: 0 10px 24px -14px rgba(36, 27, 30, .55);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -16px rgba(36, 27, 30, .6);
  background: #35262B;
}
.store-btn:active { transform: translateY(0) scale(.98); }

.store-btn__icon { width: 22px; height: 22px; flex: none; }
.store-btn__icon--play { width: 19px; height: 19px; }

.store-btn__txt { display: flex; flex-direction: column; gap: .18rem; text-align: left; }
.store-btn__txt small {
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .72;
}
.store-btn__txt strong { font-size: 1.02rem; font-weight: 600; letter-spacing: .01em; }

.store-btn--invert { background: var(--paper); color: var(--ink); box-shadow: 0 14px 30px -14px rgba(0, 0, 0, .5); }
.store-btn--invert:hover { background: #fff; }

/* ---------- 5. Header ---------- */
.site-head {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding: clamp(1.1rem, 4vw, 2rem) var(--gutter);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}
.brand__mark { width: 27px; height: 27px; border-radius: 8px; }
.brand__word {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 560;
  letter-spacing: -.01em;
}
.brand__plus { color: var(--rose); font-weight: 600; margin-left: .04em; }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(6.5rem, 18vw, 9.5rem) var(--gutter) 0;
  text-align: center;
  overflow: clip;
}

.hero__copy {
  max-width: 46rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title {
  margin-top: 1.4rem;
  font-family: var(--serif);
  font-size: clamp(2.75rem, 10vw, 5.4rem);
  font-weight: 460;
  line-height: 1.02;
  letter-spacing: -.022em;
  text-wrap: balance;
}
.hero__title em,
.cta__title em {
  font-style: italic;
  font-weight: 480;
  color: var(--rose);
}

.hero__sub {
  margin-top: 1.6rem;
  max-width: var(--measure);
  font-size: clamp(1.05rem, 2.6vw, 1.2rem);
  line-height: 1.6;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.hero .store-row { margin-top: 2.2rem; }

.hero__note {
  margin-top: 1.1rem;
  font-size: .84rem;
  color: var(--muted);
  letter-spacing: .02em;
}

.hero__stage {
  position: relative;
  margin-top: clamp(3rem, 8vw, 4.5rem);
  display: flex;
  justify-content: center;
}

.glow {
  position: absolute;
  top: 4%;
  left: 50%;
  translate: -50% 0;
  width: min(720px, 130vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(214, 72, 111, .13), rgba(214, 72, 111, .05) 55%, transparent 72%);
  pointer-events: none;
}

.device { position: relative; }

/* gentle levitation */
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-11px); }
}
.float .phone { animation: float-y 7s ease-in-out infinite; }

/* hero marketing composition (phone + floating cards, pre-rendered) */
.hero-showcase {
  display: block;
  width: min(560px, 92vw);
  height: auto;
}
.float .hero-showcase { animation: float-y 7s ease-in-out infinite; }

/* floating detail cards — desktop only */
.fc {
  position: absolute;
  z-index: 2;
  display: none;
  padding: .8rem .95rem;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 18px;
  box-shadow: 0 24px 48px -24px rgba(36, 27, 30, .35);
}
.fc--a { left: calc(50% - var(--phone-w) / 2 - 150px); top: 16%; rotate: -7deg; }
.fc--b { right: calc(50% - var(--phone-w) / 2 - 138px); bottom: 20%; rotate: 6deg; }

.fc__face {
  width: 52px; height: 62px;
  border-radius: 12px;
  background: var(--blush);
  margin-bottom: .55rem;
}
.fc__meta { display: flex; flex-direction: column; gap: .1rem; }
.fc__meta strong { font-size: .82rem; font-weight: 600; letter-spacing: .01em; }
.fc__meta span { font-size: .72rem; color: var(--muted); display: inline-flex; align-items: center; gap: .28rem; }
.fc__star { width: 10px; height: 10px; color: var(--rose); }
.fc__bar {
  margin-top: .55rem;
  width: 108px; height: 5px;
  border-radius: 99px;
  background: var(--paper-deep);
  overflow: hidden;
}
.fc__bar i { display: block; height: 100%; border-radius: 99px; background: var(--rose); }

/* ---------- 7. Stats ---------- */
.stats { padding: var(--space-section) var(--gutter) 0; }

.stats__row {
  max-width: 56rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  padding: clamp(1.6rem, 5vw, 2.6rem) .5rem;
  text-align: center;
}
.stat + .stat { border-left: 1px solid var(--line); }

.stat dd {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 6.5vw, 3rem);
  font-weight: 470;
  line-height: 1;
  letter-spacing: -.02em;
  display: inline-flex;
  align-items: baseline;
  gap: .3rem;
}
.stat__star { width: .5em; height: .5em; color: var(--rose); align-self: center; }
.stat__plus, .stat__amp { color: var(--rose); }
.stat__platforms { font-size: clamp(1.35rem, 4.6vw, 2.1rem); }

.stat dt {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- 8. Features ---------- */
.feature {
  padding: var(--space-section) var(--gutter) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2.8rem, 7vw, 4rem);
}

.feature__copy {
  max-width: 33rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature__title {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 7vw, 3.4rem);
  font-weight: 460;
  line-height: 1.06;
  letter-spacing: -.02em;
  text-wrap: balance;
}

.feature__body {
  margin-top: 1.15rem;
  color: var(--ink-soft);
  max-width: var(--measure);
  text-wrap: pretty;
}

.feature__tags,
.feature__hint {
  margin-top: 1.4rem;
  font-size: .84rem;
  letter-spacing: .06em;
  color: var(--muted);
}
.feature__hint { color: var(--rose); font-weight: 500; }

.feature__stage { position: relative; }

/* ---------- 9. Phone & app screens ---------- */
/* Faces are inline <svg> with a 200×260 viewBox. height:auto does NOT derive
   from the viewBox in flex contexts (it falls back to the 150px default), so
   pin the ratio explicitly and size by width everywhere. */
.face { aspect-ratio: 200 / 260; height: auto; }

.phone {
  position: relative;
  width: var(--phone-w);
  aspect-ratio: 39 / 82;
  padding: 9px;
  background: #171013;
  border-radius: var(--phone-r);
  box-shadow:
    inset 0 0 0 1.5px rgba(255, 255, 255, .16),
    0 2px 6px rgba(23, 16, 19, .22),
    0 34px 68px -22px rgba(23, 16, 19, .45);
}
/* dynamic island */
.phone::after {
  content: "";
  position: absolute;
  top: 21px;
  left: 50%;
  translate: -50% 0;
  width: 27%;
  height: 24px;
  border-radius: 99px;
  background: #171013;
  z-index: 5;
}

.phone--sm { --phone-w: clamp(236px, 64vw, 276px); }

.phone__screen {
  position: absolute;
  inset: 9px;
  border-radius: calc(var(--phone-r) - 9px);
  background: var(--paper);
  overflow: hidden;
}

/* real app screenshot filling a phone frame */
.shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* shared screen chrome */
.screen {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  line-height: 1.4;
  padding: 12px 16px 10px;
}

.s-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  font-weight: 600;
  padding: 2px 6px 0;
  margin-bottom: 10px;
}
.s-batt {
  width: 21px; height: 10.5px;
  border: 1.5px solid rgba(36, 27, 30, .5);
  border-radius: 3.5px;
  position: relative;
}
.s-batt::before {
  content: "";
  position: absolute;
  inset: 1.5px 30% 1.5px 1.5px;
  background: var(--ink);
  border-radius: 1.5px;
}
.s-batt::after {
  content: "";
  position: absolute;
  right: -4px; top: 3px;
  width: 2px; height: 4px;
  border-radius: 0 2px 2px 0;
  background: rgba(36, 27, 30, .5);
}

.s-home {
  margin: auto auto 0;
  width: 34%;
  height: 4px;
  border-radius: 99px;
  background: rgba(36, 27, 30, .28);
  flex: none;
}

/* — try-on screen — */
.s-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.s-title { font-family: var(--serif); font-size: 19px; font-weight: 560; }
.s-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rose);
  background: var(--blush);
  padding: 4px 9px;
  border-radius: 99px;
}
.s-live i { width: 5px; height: 5px; border-radius: 50%; background: var(--rose); }

.s-face {
  position: relative;
  flex: 1;
  min-height: 0;
  border-radius: 20px;
  background:
    radial-gradient(120% 90% at 50% 0%, #FDFAF7 0%, var(--paper-deep) 100%);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.s-face .face {
  width: 106%;
  margin-bottom: -4%;
}

.s-looktag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 99px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .02em;
  box-shadow: 0 6px 16px -8px rgba(36, 27, 30, .35);
}
.s-looktag__i { width: 10px; height: 10px; color: var(--rose); }

.s-chips {
  display: flex;
  gap: 6px;
  margin: 10px 0;
  overflow-x: auto;
  scrollbar-width: none;
  flex: none;
}
.s-chips::-webkit-scrollbar { display: none; }
.s-chip {
  flex: none;
  font: inherit;
  font-size: 11px;
  font-weight: 550;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 6px 11px;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.s-chip.is-on {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.s-save {
  flex: none;
  text-align: center;
  background: var(--rose);
  color: #FFF6F2;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 10px;
  border-radius: 99px;
  margin-bottom: 10px;
  box-shadow: 0 10px 20px -10px rgba(214, 72, 111, .55);
}

/* — library / saved screen — */
.s-libhead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 9px;
}
.s-h1 { font-family: var(--serif); font-size: 22px; font-weight: 560; }
.s-search {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
}
.s-search svg { width: 12px; height: 12px; color: var(--ink-soft); }
.s-search--rose svg { color: var(--rose); }

.s-cats {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  overflow: hidden;
  flex: none;
}
.s-cat {
  flex: none;
  font-size: 10.5px;
  font-weight: 550;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 5px 10px;
}
.s-cat.is-on { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.s-grid {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(0, 1fr);
  gap: 8px;
  overflow: hidden;
  margin-bottom: 8px;
}

.lcard {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.lcard__pic {
  position: relative;
  flex: 1;
  min-height: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, #FDFAF7, var(--paper-deep));
  overflow: hidden;
}
.lcard__pic .face {
  position: absolute;
  width: 126%;
  left: -13%;
  top: 2%;
}
.lcard__pic--flip .face { transform: scaleX(-1); }
.lcard__name { font-size: 10.5px; font-weight: 600; margin-top: 5px; line-height: 1.2; }
.lcard__tag { font-size: 9px; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }

.s-tabs {
  flex: none;
  display: flex;
  justify-content: space-around;
  padding: 8px 6px 6px;
  border-top: 1px solid var(--line);
  margin: 0 -16px;
}
.s-tab { width: 30px; height: 24px; display: grid; place-items: center; color: #B9ACB1; }
.s-tab svg { width: 15px; height: 15px; }
.s-tab.is-on { color: var(--rose); }

/* — compare screen — */
.cmp {
  position: relative;
  flex: 1;
  min-height: 0;
  border-radius: 20px;
  overflow: hidden;
  background: radial-gradient(120% 90% at 50% 0%, #FDFAF7 0%, var(--paper-deep) 100%);
  touch-action: none;
  cursor: ew-resize;
}
.cmp__after, .cmp__before {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.cmp__before {
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
  background: radial-gradient(120% 90% at 50% 0%, #FDFAF7 0%, var(--paper-deep) 100%);
}
.face--cmp { width: 106%; margin-bottom: -4%; }

/* compare built from real full-screen captures: fill the whole phone
   screen (the screenshots already carry their own status bar / chrome) */
.cmp--shot {
  position: absolute;
  inset: 0;
  border-radius: 0;
}
.cmp--shot .cmp__after,
.cmp--shot .cmp__before { display: block; }

.cmp__label {
  position: absolute;
  top: 10px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .8);
  color: var(--ink-soft);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.cmp__label--l { left: 10px; }
.cmp__label--r { right: 10px; color: var(--rose); }

.cmp__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--split);
  translate: -50% 0;
  width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
}
.cmp__handle::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: 2px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 0 10px rgba(36, 27, 30, .22);
}
.cmp__grip {
  position: relative;
  z-index: 1;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 18px -6px rgba(36, 27, 30, .45);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.cmp__grip svg { width: 9px; height: 9px; color: var(--ink); }

.s-cmpfoot {
  flex: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 2px;
}
.s-cmpname { font-family: var(--serif); font-size: 15px; font-weight: 560; }
.s-cmpheart {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--blush);
  display: grid;
  place-items: center;
}
.s-cmpheart svg { width: 13px; height: 13px; color: var(--rose); }

/* — tutorial screen — */
.s-tuthead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.s-tuttitle { font-family: var(--serif); font-size: 17px; font-weight: 560; }
.s-round {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
}
.s-round svg { width: 12px; height: 12px; color: var(--ink-soft); }

.s-progress { display: flex; flex-direction: column; gap: 6px; margin-bottom: 10px; flex: none; }
.s-progress__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.s-progress__bar { height: 5px; border-radius: 99px; background: var(--paper-deep); overflow: hidden; }
.s-progress__bar i { display: block; height: 100%; border-radius: 99px; background: var(--rose); }

.s-step {
  display: flex;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px;
  margin-bottom: 10px;
  flex: none;
}
.s-step__pic {
  position: relative;
  flex: none;
  width: 74px;
  border-radius: 11px;
  background: linear-gradient(180deg, #FDFAF7, var(--paper-deep));
  overflow: hidden;
}
.s-step__pic .face { position: absolute; width: 150%; left: -25%; top: -4%; }
.s-step__txt { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.s-step__txt strong { font-size: 12.5px; font-weight: 650; }
.s-step__txt p { font-size: 10.5px; line-height: 1.45; color: var(--ink-soft); }
.s-watch {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  align-self: flex-start;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--rose);
  background: var(--blush);
  padding: 4px 9px;
  border-radius: 99px;
}
.s-watch svg { width: 8px; height: 8px; }

.s-steps {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}
.s-steps li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11.5px;
  font-weight: 550;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 7px 10px;
}
.s-steps li i {
  flex: none;
  width: 19px; height: 19px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 9.5px;
  font-style: normal;
  font-weight: 650;
  background: var(--paper-deep);
  color: var(--muted);
}
.s-steps li i svg { width: 9px; height: 9px; }
.s-steps li.is-done { color: var(--muted); }
.s-steps li.is-done i { background: var(--blush); color: var(--rose); }
.s-steps li.is-now { border-color: var(--rose); color: var(--ink); }
.s-steps li.is-now i { background: var(--rose); color: #fff; }

/* ---------- 10. Gallery ---------- */
.gallery {
  padding: var(--space-section) 0 0;
}

.gallery__line {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 4vw, 1.7rem);
  font-weight: 460;
  color: var(--ink-soft);
  padding: 0 var(--gutter);
  margin-bottom: clamp(2.4rem, 6vw, 3.6rem);
}

/* mobile: swipeable, snap-centered */
.gallery__track {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1.5rem calc((100vw - min(64vw, 276px)) / 2) 2.5rem;
  scrollbar-width: none;
}
.gallery__track::-webkit-scrollbar { display: none; }
.gallery__item { flex: none; scroll-snap-align: center; }

/* ---------- 11. Final CTA ---------- */
.cta {
  padding: var(--space-section) var(--gutter) 0;
}

.cta__panel {
  max-width: 62rem;
  margin: 0 auto;
  background: var(--ink);
  color: var(--paper);
  border-radius: clamp(28px, 6vw, 44px);
  padding: clamp(4rem, 12vw, 7.5rem) var(--gutter);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta__panel::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  translate: -50% 0;
  width: 130%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(214, 72, 111, .22), transparent 70%);
  pointer-events: none;
}

.cta__title {
  position: relative;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 8vw, 4.2rem);
  font-weight: 440;
  line-height: 1.05;
  letter-spacing: -.02em;
  max-width: 15em;
  text-wrap: balance;
}
.cta__title em { color: #F09CB4; }

.cta .store-row { margin-top: 2.6rem; position: relative; }

.cta__note {
  position: relative;
  margin-top: 1.2rem;
  font-size: .84rem;
  color: rgba(250, 246, 242, .55);
  letter-spacing: .02em;
}

/* ---------- 12. Footer ---------- */
.site-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  padding: calc(var(--space-section) * .8) var(--gutter) 3rem;
  text-align: center;
}

.brand--foot .brand__mark { width: 23px; height: 23px; }
.brand--foot .brand__word { font-size: 1.15rem; }

.site-foot__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.8rem;
  font-size: .88rem;
}
.site-foot__nav a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .2s ease;
}
.site-foot__nav a:hover { color: var(--rose); }

.site-foot__copy { font-size: .78rem; color: var(--muted); }

/* ---------- 13. Pocket CTA (mobile floating) ---------- */
.pocket-cta {
  position: fixed;
  left: 50%;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  translate: -50% 0;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .78rem 1.35rem;
  background: rgba(36, 27, 30, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--paper);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .01em;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 16px 36px -14px rgba(36, 27, 30, .65);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .4s ease, transform .4s ease;
}
.pocket-cta__i { width: 13px; height: 13px; color: #F09CB4; }
.pocket-cta.show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
@media (min-width: 900px) {
  .pocket-cta { display: none; }
}

/* ---------- 14. Legal pages ---------- */
.legal {
  max-width: 40rem;
  margin: 0 auto;
  padding: clamp(7rem, 16vw, 9rem) var(--gutter) 5rem;
}
.legal h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 7vw, 3.2rem);
  font-weight: 460;
  letter-spacing: -.02em;
  line-height: 1.08;
}
.legal .legal__date { margin-top: .9rem; font-size: .84rem; color: var(--muted); }
.legal h2 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 540;
  margin-top: 2.6rem;
}
.legal p { margin-top: .9rem; color: var(--ink-soft); }
.legal a { color: var(--rose); }

/* ---------- 15. Desktop layout ---------- */
@media (min-width: 900px) {
  .fc { display: block; }

  .feature {
    flex-direction: row;
    justify-content: center;
    gap: clamp(4rem, 9vw, 8rem);
  }
  .feature__copy {
    text-align: left;
    align-items: flex-start;
    max-width: 26rem;
  }
  .feature--flip { flex-direction: row-reverse; }

  /* gallery becomes a composed still-life */
  .gallery__track {
    justify-content: center;
    align-items: center;
    overflow: visible;
    padding: 2.5rem var(--gutter) 3rem;
    gap: 0;
  }
  .gallery__item--a { rotate: -7deg; translate: 44px 30px; z-index: 1; }
  .gallery__item--b { z-index: 2; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.16), 0 2px 6px rgba(23,16,19,.22), 0 48px 90px -30px rgba(23,16,19,.55); }
  .gallery__item--c { rotate: 7deg; translate: -44px 42px; z-index: 1; }
}

/* ---------- Motion & accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .float .phone,
  .float .hero-showcase { animation: none; }
  .js [data-reveal],
  .js [data-reveal-group] > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .store-btn, .pocket-cta { transition: none; }
}
