/* ============================================================================
   SLEQK — Marketing landing. "Warm Modern" design system.
   Tokens unified with product-docs/product/design-system.md v2.2
   ========================================================================== */

:root {
  /* light surfaces */
  --paper:      #fdfbf5;  /* warm ivory base */
  --paper-2:    #f3eee3;  /* section banding */
  --surface:    #fffdf9;  /* cards on light */
  /* ink */
  --ink:        #1b1f1c;
  --ink-soft:   #3a403b;
  --ink-mute:   #5f655f;
  --line:       #ded8cb;
  /* accent — grey-olive brand */
  --accent:        #474e40;
  --accent-ink:    #343a2e;
  --accent-bright: #9caf88;  /* sage — legible on dark */
  --on-accent:     #f8f4ee;
  /* dark bands — olive-ink */
  --band:        #232a1f;
  --band-2:      #2c3424;
  --on-band:     #ece6da;
  --on-band-mute:#a7a89d;
  --band-line:   #3a4433;

  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --maxw: 1180px;

  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans:  "Manrope", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

::selection { background: var(--accent-bright); color: var(--band); }

/* ---------- Type scale ---------------------------------------------------- */
.display-2xl {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.9rem, 7.2vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.display-xl {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.018em;
  margin: 0;
  text-wrap: balance;
}
.display-lg {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}
.display-md {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
}
.serif-italic { font-style: italic; }
.lede {
  font-size: clamp(1.08rem, 1.1vw, 1.32rem);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 34ch;
  text-wrap: pretty;
}
.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 1.6em; height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.body-prose { font-size: 1.0625rem; line-height: 1.7; color: var(--ink-soft); }

/* ---------- Layout -------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
section { position: relative; }
section[id] { scroll-margin-top: 84px; }
.showcase[id] { scroll-margin-top: 0; }
.section-pad { padding: clamp(80px, 11vw, 168px) 0; }

/* dark band */
.band {
  background: var(--band);
  color: var(--on-band);
}
.band .eyebrow { color: var(--on-band-mute); }
.band .lede { color: var(--on-band-mute); }
.band .display-2xl, .band .display-xl, .band .display-lg, .band .display-md { color: var(--on-band); }

/* ---------- Buttons ------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background-color .3s var(--ease-out), color .3s var(--ease-out), transform .3s var(--ease-out);
}
.btn-primary {
  background: var(--accent);
  color: var(--on-accent);
  height: 56px;
  padding: 0 8px 0 26px;
  border-radius: 999px;
}
.btn-primary .arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 999px;
  background: rgba(255,255,255,0.14);
  transition: transform .35s var(--ease-out), background-color .3s var(--ease-out);
}
.btn-primary:hover { background: var(--accent-ink); }
.btn-primary:hover .arrow { transform: translateX(4px); background: rgba(255,255,255,0.22); }
.btn-primary:active { transform: scale(0.98); }
.band .btn-primary { background: var(--accent-bright); color: var(--band); }
.band .btn-primary .arrow { background: rgba(0,0,0,0.14); }
.band .btn-primary:hover { background: #aebf9a; }

.btn-ghost {
  height: 44px; padding: 0 18px; border-radius: 999px;
  color: var(--ink); background: transparent;
}
.btn-ghost:hover { background: var(--paper-2); }

/* "Coming soon" status pill — shown on the pre-launch (marketing-only) prod
   apex in place of the auth + pricing CTAs. Filled olive so it sits in the
   primary slot, but inert: default cursor, no hover lift. A sage status dot
   (reusing the @keyframes pulse below) reads as "alive / soon" rather than a
   clickable arrow. Soft one-time entrance. Both animations honour
   prefers-reduced-motion (see the block at the end of this rule group). */
.coming-soon {
  height: 56px; padding: 0 26px; border-radius: 999px;
  background: var(--accent); color: var(--on-accent);
  cursor: default; user-select: none;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--on-accent) 16%, transparent);
  animation: cs-in .6s var(--ease-out) both;
}
.coming-soon::before {
  content: ""; flex: none;
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--accent-bright);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent-bright) 70%, transparent);
  animation: pulse 1.8s infinite;
}
.band .coming-soon { background: var(--accent-bright); color: var(--band); }
.band .coming-soon::before { background: var(--band); }
/* Nav: match the compact nav button height. */
.nav-cta .coming-soon, .coming-soon.nav-soon {
  height: 42px; padding: 0 18px; font-size: 0.92rem;
}
/* Pricing card: fill the card's button slot. */
.price-card .coming-soon, .coming-soon.card-soon {
  width: 100%; justify-content: center;
}
@keyframes cs-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .coming-soon, .coming-soon::before { animation: none; }
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.band :focus-visible { outline-color: var(--accent-bright); }

/* ---------- Nav ----------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 60%, transparent);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand img { height: 26px; width: auto; }
.brand .word {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.32rem;
  letter-spacing: 0.34em;
  text-indent: 0.34em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-cta { display: flex; align-items: center; gap: 6px; }
.nav-cta .btn-primary { height: 42px; padding: 0 20px; font-size: 0.92rem; }
.nav-cta .btn-ghost { height: 42px; font-size: 0.92rem; }

/* ---------- Hero ---------------------------------------------------------- */
.hero { position: relative; overflow: hidden; }
.hero-glow {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(60% 50% at 82% 18%, color-mix(in srgb, var(--accent-bright) 26%, transparent), transparent 70%),
    radial-gradient(50% 45% at 8% 90%, color-mix(in srgb, var(--paper-2) 90%, transparent), transparent 72%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(48px, 7vw, 104px) 0 clamp(64px, 9vw, 120px);
  min-height: min(86vh, 880px);
}
.hero-copy { max-width: 36rem; }
.hero h1 { margin: 18px 0 0; }
.hero .lede { margin-top: 26px; max-width: 30ch; }
.hero-actions { margin-top: 38px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero-actions .note { font-size: 0.9rem; color: var(--ink-mute); max-width: 15rem; line-height: 1.45; }

/* word-by-word headline animation */
.reveal-words .w { display: inline-block; overflow: hidden; vertical-align: top; }
.reveal-words .w > span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform .9s var(--ease-out), opacity .9s var(--ease-out);
}
.reveal-words.in .w > span { transform: translateY(0); opacity: 1; }

/* ---------- Hero visual : stage shared ----------------------------------- */
.hero-stage { position: relative; min-height: 540px; }
.hero-view { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .6s var(--ease-out); }
.hero-view.active { opacity: 1; visibility: visible; }

/* Direction A — before/after editorial portrait */
.ba {
  position: relative;
  width: min(100%, 430px);
  margin: 0 auto;
  aspect-ratio: 425 / 565;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: 0 30px 70px -34px rgba(35,42,31,0.5), 0 2px 0 rgba(255,255,255,0.6) inset;
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba .before {
  filter: saturate(0.7) brightness(1.18) contrast(0.92) blur(0.6px);
  transform: scale(1.06) rotate(0.6deg);
}
.ba .before::after { content: ""; }
.ba .after { opacity: 0; transition: opacity 1.1s var(--ease-in-out); }
.ba.show-after .after { opacity: 1; }
/* render scan sweep */
.ba .scan {
  position: absolute; left: 0; right: 0; height: 36%;
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--accent-bright) 60%, transparent), transparent);
  mix-blend-mode: screen; opacity: 0; top: -40%;
}
.ba.scanning .scan { animation: scan 1.1s var(--ease-in-out); }
@keyframes scan { 0%{opacity:0;top:-40%} 18%{opacity:.9} 82%{opacity:.9} 100%{opacity:0;top:108%} }
.ba .ba-tag {
  position: absolute; left: 16px; bottom: 16px;
  font-family: var(--sans); font-weight: 600; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff; background: rgba(27,31,28,0.42);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: 7px 12px; border-radius: 999px;
}

/* floating chips around hero A */
.chip {
  position: absolute; z-index: 3;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 11px 14px;
  box-shadow: 0 18px 40px -22px rgba(35,42,31,0.45);
  font-size: 0.86rem; color: var(--ink);
  display: flex; align-items: center; gap: 10px;
  opacity: 0; transform: translateY(14px) scale(0.96);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.hero-view.active .chip { opacity: 1; transform: translateY(0) scale(1); }
.hero-view.active .chip.d1 { transition-delay: .45s; }
.hero-view.active .chip.d2 { transition-delay: .6s; }
.hero-view.active .chip.d3 { transition-delay: .75s; }
.hero-view.active .chip.d4 { transition-delay: .9s; }
.hero-view.active .chip.d5 { transition-delay: 1.05s; }
.chip .av { width: 26px; height: 26px; border-radius: 999px; background: var(--accent); color: var(--on-accent); display: grid; place-items: center; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.02em; flex: none; }
.chip .heart { color: #b3553f; }
.chip-rendered { right: -12px; top: 2%; }
.chip-vote  { right: -30px; top: 27%; }
.chip-event { left: -26px; top: 42%; }
.chip-dress { left: -18px; bottom: 19%; }
.chip-shoes { right: 4%; bottom: -16px; }
.chip strong { font-weight: 700; }

@keyframes floaty { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-9px) } }
.float-anim { animation: floaty 6s var(--ease-in-out) infinite; }

/* Direction B — floating phone w/ cycling looks */
.phoneB-wrap { position: relative; height: 100%; display: grid; place-items: center; }
.collage {
  position: absolute; inset: -4% -8%;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  opacity: 0.5; filter: saturate(0.95);
}
.collage .tile { border-radius: 16px; overflow: hidden; background: var(--paper-2); }
.collage .tile:nth-child(1){ transform: translateY(-18px) rotate(-3deg); }
.collage .tile:nth-child(2){ transform: translateY(26px) rotate(2deg); }
.collage .tile:nth-child(3){ transform: translateY(-8px) rotate(4deg); }
.collage img { width: 100%; height: 220px; object-fit: cover; }

/* ---------- Phone frame --------------------------------------------------- */
.phone {
  position: relative;
  width: 278px;
  border-radius: 40px;
  background: #12150f;
  padding: 9px;
  box-shadow: 0 40px 90px -34px rgba(35,42,31,0.6), 0 0 0 1px rgba(0,0,0,0.4), 0 2px 1px rgba(255,255,255,0.18) inset;
}
.phone .screen { border-radius: 32px; overflow: hidden; background: var(--paper); }
.phone .screen img { width: 100%; display: block; }
.phone .screen.render img { aspect-ratio: 3/4; object-fit: cover; object-position: center top; }
.phone.lg { width: 312px; }
.phone.sm { width: 240px; }
.phoneB { position: relative; z-index: 2; }

/* ---------- The moment band ----------------------------------------------- */
.moment p {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: var(--on-band);
  margin: 0 0 0.7em;
  max-width: 22ch;
}
.moment .seq > span {
  display: block;
  opacity: 0; transform: translateY(18px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.moment.in .seq > span { opacity: 1; transform: translateY(0); }
.moment .muted { color: var(--on-band-mute); }
.moment .punch { color: var(--accent-bright); }

/* ---------- How it works (Option A — horizontal stepper) ------------------ */
.steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(22px, 2.6vw, 40px); margin-top: 52px; }
.steps::before {
  content: ""; position: absolute; top: 17px; left: 6%; right: 6%; height: 1.5px;
  background: linear-gradient(90deg, var(--line), var(--accent) 50%, var(--line));
}
.step { position: relative; }
.step .num {
  font-family: var(--serif); font-size: 0.95rem; color: var(--accent);
  border: 1px solid var(--line); border-radius: 999px;
  width: 36px; height: 36px; display: grid; place-items: center; margin-bottom: 18px;
  background: var(--surface); position: relative; z-index: 1;
}
.step h3 { font-family: var(--serif); font-weight: 400; font-size: 1.2rem; letter-spacing: -0.01em; margin: 0 0 8px; }
.step p { color: var(--ink-soft); margin: 0; font-size: 0.92rem; line-height: 1.55; }
a.step { display: block; transition: transform .25s var(--ease-out); }
a.step:hover { transform: translateY(-3px); }
a.step:hover .num { border-color: var(--accent); background: var(--accent); color: var(--on-accent); }
a.step .num { transition: background-color .25s var(--ease-out), color .25s var(--ease-out), border-color .25s var(--ease-out); }

/* ---------- Feature lineup — slim pills ----------------------------------- */
.feature-nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 44px; }
.fn-card {
  display: grid; grid-template-columns: 38px 1fr; column-gap: 13px; row-gap: 2px; align-items: center;
  padding: 16px 18px; border: 1px solid var(--line); border-radius: 14px;
  background: var(--surface); text-decoration: none; color: inherit;
  transition: border-color .25s var(--ease-out), transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.fn-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 20px 40px -28px rgba(35,42,31,0.5); }
.fn-ic {
  grid-column: 1; grid-row: 1 / span 2; align-self: center;
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--accent-bright) 26%, transparent); color: var(--accent-ink);
}
.fn-ic svg { width: 19px; height: 19px; }
.fn-card h4 { grid-column: 2; font-family: var(--sans); font-weight: 700; font-size: 0.92rem; letter-spacing: -0.01em; margin: 0; }
.fn-card p { grid-column: 2; color: var(--ink-mute); font-size: 0.76rem; line-height: 1.4; margin: 0; }
.fn-go { display: none; }

/* ---------- Collection slideshow (digitized items marquee) ---------------- */
.collection-show { overflow: hidden; }
.im-viewport {
  margin-top: 44px;
  -webkit-mask: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.im-row { overflow: hidden; }
.im-row + .im-row { margin-top: 16px; }
.im-track { display: flex; gap: 16px; width: max-content; animation: imscroll 64s linear infinite; }
.im-row.rev .im-track { animation-duration: 78s; animation-direction: reverse; }
.collection-show:hover .im-track { animation-play-state: paused; }
.im-tile {
  width: 132px; height: 168px; flex: none; background: #fff;
  border: 1px solid var(--line); border-radius: 14px;
  display: grid; place-items: center; padding: 14px; position: relative;
  box-shadow: 0 10px 24px -20px rgba(35,42,31,0.5);
}
.im-tile img { max-width: 86%; max-height: 80%; object-fit: contain; }
.im-tile .im-cat {
  position: absolute; left: 9px; bottom: 9px;
  font-size: 0.54rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-mute); background: var(--paper-2); padding: 2px 6px; border-radius: 5px;
}
@keyframes imscroll { to { transform: translateX(-50%); } }
.im-stat { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 36px; }
.im-stat .s { }
.im-stat .s b { font-family: var(--serif); font-size: clamp(2rem, 3vw, 2.8rem); display: block; line-height: 1; letter-spacing: -0.01em; }
.im-stat .s span { font-size: 0.9rem; color: var(--ink-mute); }

/* ---------- Planning journey --------------------------------------------- */
.journey { }
.j-track { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 64px; }
.j-track::before {
  content: ""; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--line), var(--accent) 50%, var(--line));
  z-index: 0;
}
.j-step { position: relative; z-index: 1; padding: 0 16px; }
.j-node {
  width: 56px; height: 56px; border-radius: 999px; background: var(--surface);
  border: 1px solid var(--line); display: grid; place-items: center; margin-bottom: 22px;
  font-family: var(--serif); font-size: 1.2rem; color: var(--accent);
  box-shadow: 0 8px 20px -14px rgba(35,42,31,0.5);
}
.j-step h4 { font-family: var(--serif); font-weight: 400; font-size: 1.22rem; letter-spacing: -0.01em; margin: 0 0 8px; }
.j-step p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.5; margin: 0; }
.j-step.last .j-node { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.j-step .j-shot {
  width: 100%; max-width: 150px; aspect-ratio: 3/4; border-radius: 12px; overflow: hidden;
  margin-top: 16px; box-shadow: 0 18px 36px -24px rgba(35,42,31,0.5);
}
.j-step .j-shot img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

@media (max-width: 860px) {
  .im-tile { width: 112px; height: 144px; }
  .j-track { grid-template-columns: 1fr; gap: 26px; }
  .j-track::before { display: none; }
  .j-step { display: grid; grid-template-columns: 56px 1fr; column-gap: 18px; align-items: start; padding: 0; }
  .j-node { margin-bottom: 0; }
  .j-step h4 { margin-top: 4px; }
  .j-step .j-shot { grid-column: 2; }
}
@media (prefers-reduced-motion: reduce) {
  .im-track { animation: none !important; }
}

/* ---------- Feature rows -------------------------------------------------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(36px, 6vw, 96px); }
.feature.flip .feat-media { order: 2; }
.feat-copy { max-width: 30rem; }
.feat-copy h2 { margin: 16px 0 0; }
.feat-copy .lede { margin-top: 20px; }
.feat-list { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.feat-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.02rem; color: var(--ink-soft); }
.feat-list .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--accent); margin-top: 9px; flex: none; }
.feat-media { position: relative; display: grid; place-items: center; min-height: 420px; }
.feat-media .float-anim { width: min(100%, 360px); }

/* media: try-on before/after small version reuse .ba */
/* media: planner stack */
.phone-pair { position: relative; }
.phone-pair .phone:nth-child(2) {
  position: absolute; right: -64px; bottom: -42px; width: 210px; z-index: 1;
}
.phone-pair .phone:nth-child(1) { z-index: 2; }

/* media: vote card */
.vote-card {
  width: min(100%, 380px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 30px 70px -36px rgba(35,42,31,0.5);
}
.vote-card .vc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.vote-card .vc-link { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.04em; color: var(--ink-mute); display: flex; align-items: center; gap: 7px; }
.vote-card .vc-link .lock { width: 12px; height: 12px; }
.vote-card .vc-live { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; }
.vote-card .vc-live .pulse { width: 7px; height: 7px; border-radius: 999px; background: var(--accent-bright); box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent-bright) 80%, transparent); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 color-mix(in srgb,var(--accent-bright) 70%,transparent)} 70%{box-shadow:0 0 0 8px transparent} 100%{box-shadow:0 0 0 0 transparent} }
.vc-options { display: flex; flex-direction: column; gap: 12px; }
.vc-opt { display: flex; align-items: center; gap: 13px; }
.vc-thumb { width: 46px; height: 60px; border-radius: 9px; object-fit: cover; flex: none; background: var(--paper-2); border: 1px solid var(--line); }
.vc-bar-wrap { flex: 1; }
.vc-bar-top { display: flex; justify-content: space-between; font-size: 0.82rem; margin-bottom: 5px; color: var(--ink-soft); }
.vc-bar-top .cnt { font-variant-numeric: tabular-nums; font-weight: 600; color: var(--ink); }
.vc-track { height: 8px; border-radius: 999px; background: var(--paper-2); overflow: hidden; }
.vc-fill { height: 100%; border-radius: 999px; background: var(--accent); width: 0; transition: width 1.1s var(--ease-out); }
.vc-opt.win .vc-fill { background: var(--accent-bright); }
.vc-opt.win .vc-bar-top .cnt { color: var(--accent); }
.vc-foot { margin-top: 18px; display: flex; align-items: center; justify-content: space-between; font-size: 0.84rem; color: var(--ink-mute); }
.vc-foot .avs { display: flex; }
.vc-foot .avs span { width: 24px; height: 24px; border-radius: 999px; border: 2px solid var(--surface); margin-left: -8px; display: grid; place-items: center; font-size: 0.6rem; font-weight: 700; color: var(--on-accent); }

/* media: capture / closet grid */
.closet { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center; }
.garment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 320px; }
.garment {
  aspect-ratio: 3/4; border-radius: 14px; border: 1px solid var(--line);
  background: var(--surface); position: relative; overflow: hidden;
  display: grid; place-items: center;
  opacity: 0; transform: translateY(12px) scale(0.94);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.garment.in { opacity: 1; transform: translateY(0) scale(1); }
.garment .ph {
  position: absolute; inset: 8px; border-radius: 8px;
  background-image: repeating-linear-gradient(135deg, color-mix(in srgb,var(--accent) 11%,transparent) 0 7px, transparent 7px 14px);
  background-color: var(--paper-2);
}
.garment .lbl { position: relative; font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); background: var(--surface); padding: 2px 6px; border-radius: 5px; }

/* media: recommendation engine card */
.rec-card {
  width: min(100%, 400px);
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 24px;
  box-shadow: 0 30px 70px -36px rgba(35,42,31,0.5);
}
.rec-event { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.rec-event .ev-name { font-family: var(--serif); font-size: 1.35rem; letter-spacing: -0.01em; }
.rec-loc { display: inline-flex; align-items: center; gap: 6px; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.04em; color: var(--accent); background: color-mix(in srgb, var(--accent-bright) 26%, transparent); padding: 5px 11px; border-radius: 999px; white-space: nowrap; }
.rec-meta { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mute); margin: 8px 0 0; }
.rec-divider { height: 1px; background: var(--line); margin: 18px 0; }
.rec-label { font-family: var(--sans); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); display: flex; align-items: center; justify-content: space-between; }
.rec-label .spark { color: var(--accent); font-weight: 700; letter-spacing: 0.02em; text-transform: none; }
.rec-row { display: flex; gap: 10px; margin-top: 16px; }
.rec-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0; transform: translateY(12px) scale(0.92);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.rec-item.in { opacity: 1; transform: translateY(0) scale(1); }
.rec-item .thumb {
  width: 100%; aspect-ratio: 3/4; border-radius: 11px; border: 1px solid var(--line);
  background-color: var(--paper-2);
  background-image: repeating-linear-gradient(135deg, color-mix(in srgb,var(--accent) 12%,transparent) 0 6px, transparent 6px 13px);
}
.rec-item .cat { font-family: var(--sans); font-size: 0.58rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mute); text-align: center; }
.rec-foot { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.rec-foot .pill-btn { font-family: var(--sans); font-size: 0.82rem; font-weight: 600; color: var(--on-accent); background: var(--accent); border-radius: 999px; padding: 9px 16px; }
.rec-foot .more { font-size: 0.82rem; color: var(--ink-mute); }

/* ---------- reveal utility ------------------------------------------------ */
.r { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.r.in { opacity: 1; transform: translateY(0); }
.r.d1 { transition-delay: .1s; } .r.d2 { transition-delay: .2s; } .r.d3 { transition-delay: .3s; } .r.d4 { transition-delay: .4s; }

/* parallax helper */
[data-parallax] { will-change: transform; }

/* ---------- marquee ------------------------------------------------------- */
.marquee { overflow: hidden; border-top: 1px solid var(--band-line); border-bottom: 1px solid var(--band-line); padding: 22px 0; }
.marquee-track { display: flex; gap: 56px; white-space: nowrap; width: max-content; animation: marq 32s linear infinite; }
.marquee-item { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 2.4vw, 2rem); color: var(--on-band); opacity: 0.85; }
.marquee-item .sp { color: var(--accent-bright); font-style: normal; margin: 0 0.5em; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ---------- Pricing ------------------------------------------------------- */
.billing-toggle {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: 999px; padding: 5px; margin-top: 26px;
}
.billing-toggle button {
  border: none; background: transparent; cursor: pointer;
  font-family: var(--sans); font-weight: 600; font-size: 0.9rem; color: var(--ink-soft);
  padding: 9px 20px; border-radius: 999px; transition: background-color .25s var(--ease-out), color .25s var(--ease-out);
  display: inline-flex; align-items: center; gap: 8px;
}
.billing-toggle button.on { background: var(--accent); color: var(--on-accent); }
.billing-toggle .save { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.04em; padding: 2px 7px; border-radius: 999px; background: var(--accent-bright); color: var(--band); }
.billing-toggle button.on .save { background: rgba(255,255,255,0.2); color: var(--on-accent); }

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 40px; align-items: stretch; }
.price-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 24px; display: flex; flex-direction: column; position: relative;
}
.price-card.feature-card {
  background: var(--band); color: var(--on-band); border-color: var(--band-line);
  box-shadow: 0 40px 90px -40px rgba(35,42,31,0.55);
}
.price-card .pc-badge {
  position: absolute; top: -11px; left: 24px;
  font-family: var(--sans); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--accent-bright); color: var(--band); padding: 4px 11px; border-radius: 999px;
}
.price-card .pc-name { font-family: var(--sans); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); }
.price-card.feature-card .pc-name { color: var(--accent-bright); }
.price-card .pc-price { font-family: var(--serif); font-size: clamp(2rem, 2.6vw, 2.7rem); letter-spacing: -0.02em; margin: 14px 0 2px; line-height: 1; transition: opacity .28s var(--ease-out); }
.price-card .pc-price .per { font-family: var(--sans); font-size: 0.82rem; font-weight: 600; color: var(--ink-mute); }
.price-card.feature-card .pc-price .per { color: var(--on-band-mute); }
.price-card .pc-sub { color: var(--ink-mute); font-size: 0.84rem; margin: 0 0 22px; min-height: 1.2em; transition: opacity .28s var(--ease-out); }
.price-card.feature-card .pc-sub { color: var(--on-band-mute); }
.price-list { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.price-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; line-height: 1.4; }
.price-list .ck { color: var(--accent); flex: none; margin-top: 2px; }
.price-card.feature-card .price-list .ck { color: var(--accent-bright); }
.price-card .btn-primary { height: 46px; padding: 0 6px 0 18px; font-size: 0.9rem; align-self: stretch; justify-content: space-between; }
.price-card .btn-outline {
  height: 46px; border-radius: 999px; align-self: stretch; justify-content: center;
  background: transparent; color: var(--ink); border: 1px solid var(--line); font-size: 0.9rem;
}
.price-card .btn-outline:hover { background: var(--paper-2); }
.price-card.feature-card .btn-primary { background: var(--accent-bright); color: var(--band); }
.price-card.feature-card .btn-primary .arrow { background: rgba(0,0,0,0.16); }
.price-card.feature-card .btn-primary:hover { background: #aebf9a; }

.credit-explainer {
  margin-top: 22px; background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 24px 30px;
  display: grid; grid-template-columns: auto 1fr; gap: 34px; align-items: center;
}
.credit-explainer h4 { font-family: var(--serif); font-weight: 400; font-size: 1.4rem; margin: 0; letter-spacing: -0.01em; line-height: 1.1; }
.credit-explainer ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px 30px; }
.credit-explainer li { display: flex; gap: 11px; align-items: baseline; font-size: 0.92rem; color: var(--ink-soft); line-height: 1.45; }
.credit-explainer .qty { font-family: var(--sans); font-weight: 700; color: var(--accent); flex: none; min-width: 4.4em; }
.price-note { font-size: 0.82rem; color: var(--ink-mute); margin: 18px 0 0; line-height: 1.55; max-width: 70ch; }
.price-note a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Final CTA ----------------------------------------------------- */
.final { text-align: center; }
.final .display-xl { margin: 0 auto; }
.final .lede { margin: 22px auto 0; max-width: 42ch; }
.final .hero-actions { justify-content: center; margin-top: 40px; }

/* ---------- Footer -------------------------------------------------------- */
.footer { background: var(--accent); color: var(--on-accent); }
.footer-inner { padding: 72px 0 56px; }
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer .word { font-family: var(--serif); font-weight: 500; font-size: 1.4rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--on-accent); }
.footer .tag { margin-top: 14px; color: color-mix(in srgb, var(--on-accent) 72%, transparent); font-size: 0.95rem; max-width: 26ch; }
.footer h4 { font-family: var(--sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: color-mix(in srgb,var(--on-accent) 70%, transparent); margin: 0 0 18px; }
.footer a { display: block; color: color-mix(in srgb, var(--on-accent) 78%, transparent); text-decoration: none; font-size: 0.95rem; padding: 5px 0; transition: color .2s; }
.footer a:hover { color: var(--on-accent); }
.footer-bottom { margin-top: 56px; border-top: 1px solid color-mix(in srgb, var(--on-accent) 20%, transparent); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 0.88rem; color: color-mix(in srgb,var(--on-accent) 70%, transparent); }
.footer-bottom .mono { font-family: ui-monospace, "SF Mono", Menlo, monospace; letter-spacing: 0.02em; }

/* ---------- Hero switcher control ----------------------------------------- */
.switcher {
  position: fixed; z-index: 70; right: 22px; bottom: 22px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px; padding: 6px; display: flex; gap: 4px; align-items: center;
  box-shadow: 0 22px 50px -26px rgba(35,42,31,0.5);
  font-family: var(--sans);
}
.switcher .lab { font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); padding: 0 8px 0 12px; font-weight: 600; }
.switcher button {
  border: none; background: transparent; cursor: pointer;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 600; color: var(--ink-soft);
  padding: 8px 15px; border-radius: 999px; transition: background-color .25s, color .25s;
}
.switcher button.on { background: var(--accent); color: var(--on-accent); }

/* ---------- Responsive ---------------------------------------------------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 8px; min-height: 0; padding-top: 36px; }
  .hero-stage { min-height: 520px; margin-top: 24px; }
  .feature { grid-template-columns: 1fr; gap: 40px; }
  .feature.flip .feat-media { order: 0; }
  .feat-media { min-height: 0; }
  .steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps::before { display: none; }
  .feature-nav { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .credit-explainer { grid-template-columns: 1fr; gap: 18px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .closet { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .nav-cta .btn-ghost { display: none; }
  .chip-event { left: -8px; } .chip-vote { right: -8px; } .chip-rendered { right: 0; }
  .chip-dress { left: -8px; } .chip-shoes { right: 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .credit-explainer ul { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .switcher .lab { display: none; }
}

/* ── Local addition (beyond the imported design) ──────────────────────────
   The auth CTAs link out to the product app (sign-in = app root, sign-up =
   /?mode=signup). Keep the nav "Sign in" visible at every width — the section
   ghost links (Collection / How it works / Pricing) still collapse on mobile,
   but sign-in must stay reachable. Higher specificity (a.nav-signin) so it
   wins over the max-width:560px ghost-hide rule above. */
.nav-cta a.nav-signin { display: inline-flex; }
@media (max-width: 560px) {
  .nav-cta a.nav-signin { height: 38px; padding: 0 12px; }
}

/* ======================================================================
   NEW COMPONENTS (Aastha refresh)
   ====================================================================== */

/* ---- hero item chips (cut-out from collection) -------------------------- */
.chip-item { gap: 9px; padding: 8px 13px 8px 8px; }
.chip-item .ci-thumb {
  width: 38px; height: 38px; border-radius: 9px; background: #fff;
  display: grid; place-items: center; flex: none; border: 1px solid var(--line);
}
.chip-item .ci-thumb img { width: 82%; height: 82%; object-fit: contain; }
.chip-item .ci-cat { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); display: block; }
.chip-item .ci-name { font-weight: 700; font-size: 0.86rem; }

/* ---- CURATED LOOKS SLIDESHOW (dark band) -------------------------------- */
.showcase { overflow: hidden; }
.showcase .wrap { padding-top: clamp(72px, 9vw, 130px); padding-bottom: clamp(72px, 9vw, 130px); }
.sc-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.sc-stage {
  position: relative; height: clamp(440px, 56vw, 660px);
  display: grid; place-items: center;
}
.sc-glow {
  position: absolute; width: 78%; height: 70%; border-radius: 50%;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--accent-bright) 30%, transparent), transparent);
  filter: blur(8px); z-index: 0;
}
.sc-slide {
  position: absolute; inset: 0; display: grid; grid-template-rows: 100%; place-items: center;
  opacity: 0; transform: scale(1.02); transition: opacity .9s var(--ease-out), transform 1.1s var(--ease-out);
  z-index: 1;
}
.sc-slide.on { opacity: 1; transform: scale(1); z-index: 2; }
.sc-slide img {
  max-height: 100%; width: auto; max-width: 100%; object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 40px 90px -34px rgba(0,0,0,0.7);
}
.sc-badge {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 7px; z-index: 3;
  font-family: var(--sans); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; background: rgba(20,21,15,0.5); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 8px 14px; border-radius: 999px;
}
.sc-info { }
.sc-num { font-family: var(--sans); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; color: var(--accent-bright); }
.sc-cap { min-height: 4.2em; margin-top: 14px; }
.sc-cap .sc-ev {
  font-family: var(--serif); font-size: clamp(1.9rem, 3.2vw, 3rem); line-height: 1.05; letter-spacing: -0.015em;
  color: var(--on-band); display: block;
  opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.sc-cap .sc-loc {
  display: block; margin-top: 10px; color: var(--on-band-mute); font-size: 1.05rem;
  opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease-out) .08s, transform .6s var(--ease-out) .08s;
}
.sc-cap.show .sc-ev, .sc-cap.show .sc-loc { opacity: 1; transform: translateY(0); }
.sc-built { margin-top: 26px; display: flex; align-items: center; gap: 12px; color: var(--on-band-mute); font-size: 0.92rem; }
.sc-built .pieces { display: flex; }
.sc-built .pieces span {
  width: 34px; height: 34px; border-radius: 8px; background: #fff; margin-left: -8px;
  border: 1.5px solid var(--band); display: grid; place-items: center; overflow: hidden;
}
.sc-built .pieces span:first-child { margin-left: 0; }
.sc-built .pieces img { width: 80%; height: 80%; object-fit: contain; }
.sc-nav { display: flex; gap: 10px; margin-top: 34px; }
.sc-dot {
  flex: 1; height: 4px; border-radius: 999px; background: var(--band-line); border: none; cursor: pointer; padding: 0;
  position: relative; overflow: hidden;
}
.sc-dot .fillbar { position: absolute; inset: 0; width: 0; background: var(--accent-bright); border-radius: 999px; }
.sc-dot.on .fillbar { width: 100%; transition: width 4.2s linear; }

/* ---- WARDROBE (what you can digitalize) — filterable -------------------- */
.filter-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.filter-chips button {
  font-family: var(--sans); font-weight: 600; font-size: 0.9rem; cursor: pointer;
  background: var(--surface); border: 1px solid var(--line); color: var(--ink-soft);
  padding: 9px 17px; border-radius: 999px;
  transition: background-color .25s var(--ease-out), color .25s var(--ease-out), border-color .25s var(--ease-out);
}
.filter-chips button:hover { border-color: var(--accent); }
.filter-chips button.on { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.filter-chips button .n { opacity: 0.6; font-weight: 700; margin-left: 5px; font-variant-numeric: tabular-nums; }
.wardrobe-grid {
  margin-top: 30px;
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px;
}
.w-tile {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  aspect-ratio: 3/4; display: grid; place-items: center; padding: 10px; overflow: hidden;
  transition: opacity .45s var(--ease-out), transform .45s var(--ease-out), box-shadow .25s var(--ease-out);
}
.w-tile:hover { box-shadow: 0 18px 40px -24px rgba(35,42,31,0.5); transform: translateY(-3px); }
.w-tile img { max-width: 88%; max-height: 80%; object-fit: contain; }
.w-tile .w-cat {
  position: absolute; left: 8px; bottom: 8px;
  font-size: 0.56rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute);
  background: var(--paper-2); padding: 2px 6px; border-radius: 5px;
}
.w-tile.r-pop { opacity: 0; transform: translateY(16px) scale(0.92); }
.w-tile.r-pop.in { opacity: 1; transform: translateY(0) scale(1); }
.w-tile.hide { display: none; }
.wardrobe-foot { margin-top: 22px; font-size: 0.9rem; color: var(--ink-mute); display: flex; align-items: center; gap: 8px; }

/* ---------- Collection showcase (filterable item slideshow) -------------- */
.cs-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 76px); align-items: center; }
.cs-chips { margin-top: 30px; }
.cs-cap { margin-top: 30px; min-height: 3.6em; }
.cs-name {
  display: block; font-family: var(--serif); font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  line-height: 1.05; letter-spacing: -0.015em; color: var(--ink);
  opacity: 0; transform: translateY(12px); transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.cs-meta {
  display: block; margin-top: 10px; color: var(--ink-mute); font-size: 0.98rem;
  opacity: 0; transform: translateY(12px); transition: opacity .5s var(--ease-out) .06s, transform .5s var(--ease-out) .06s;
}
.cs-cap.show .cs-name, .cs-cap.show .cs-meta { opacity: 1; transform: translateY(0); }
.cs-progress { margin-top: 28px; display: flex; align-items: center; gap: 16px; }
.cs-count { font-family: var(--sans); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em; color: var(--ink-mute); font-variant-numeric: tabular-nums; flex: none; }
.cs-bar { flex: 1; height: 3px; background: var(--line); border-radius: 999px; overflow: hidden; max-width: 260px; }
.cs-fill { display: block; height: 100%; width: 0; background: var(--accent); border-radius: 999px; transition: width .5s var(--ease-out); }

.cs-stage { position: relative; height: clamp(420px, 50vw, 560px); display: grid; place-items: center; }
.cs-glow {
  position: absolute; width: 74%; height: 66%; border-radius: 50%;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--accent-bright) 30%, transparent), transparent);
  filter: blur(10px); z-index: 0;
}
.cs-slide {
  position: absolute; inset: 0; display: grid; place-items: center; z-index: 1;
  opacity: 0; transform: scale(1.03); transition: opacity .6s var(--ease-out), transform .8s var(--ease-out);
}
.cs-slide.on { opacity: 1; transform: scale(1); z-index: 2; }
.cs-card {
  position: relative; width: min(76%, 360px); aspect-ratio: 4/5;
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  display: grid; place-items: center; padding: 34px;
  box-shadow: 0 40px 80px -40px rgba(35,42,31,0.5);
}
.cs-card img { max-width: 84%; max-height: 84%; object-fit: contain; }
.cs-tag {
  position: absolute; left: 16px; top: 16px;
  font-family: var(--sans); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); background: color-mix(in srgb, var(--accent-bright) 28%, transparent);
  padding: 6px 11px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px;
}
.cs-tag .pulse { width: 6px; height: 6px; border-radius: 999px; background: var(--accent); }

/* ---- PLANNER CARD ------------------------------------------------------- */
.planner-card {
  width: min(100%, 420px);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px -36px rgba(35,42,31,0.5); overflow: hidden;
}
.planner-head { padding: 20px 22px 14px; display: flex; align-items: baseline; justify-content: space-between; }
.planner-head .pm { font-family: var(--serif); font-size: 1.4rem; letter-spacing: -0.01em; }
.planner-head .yr { color: var(--ink-mute); font-size: 0.86rem; }
.pl-row {
  display: flex; align-items: center; gap: 14px; padding: 14px 22px;
  border-top: 1px solid var(--line);
  opacity: 0; transform: translateX(-10px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.planner-card.in .pl-row { opacity: 1; transform: translateX(0); }
.planner-card.in .pl-row:nth-child(2){ transition-delay: .05s; }
.planner-card.in .pl-row:nth-child(3){ transition-delay: .15s; }
.planner-card.in .pl-row:nth-child(4){ transition-delay: .25s; }
.planner-card.in .pl-row:nth-child(5){ transition-delay: .35s; }
.pl-date { width: 44px; flex: none; text-align: center; }
.pl-date .d { font-family: var(--serif); font-size: 1.35rem; line-height: 1; }
.pl-date .m { font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); }
.pl-thumb { width: 44px; height: 58px; border-radius: 8px; object-fit: cover; object-position: center top; flex: none; background: var(--paper-2); border: 1px solid var(--line); }
.pl-info { flex: 1; min-width: 0; }
.pl-info .ev { font-weight: 700; font-size: 0.98rem; }
.pl-info .meta { font-size: 0.8rem; color: var(--ink-mute); }
.pl-status { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; flex: none; display: inline-flex; align-items: center; gap: 5px; }
.pl-status.done { color: var(--accent); }
.pl-status.done .tick { width: 14px; height: 14px; }
.pl-status.todo { color: var(--ink-mute); background: var(--paper-2); padding: 6px 11px; border-radius: 999px; }

/* ---- REC card result render -------------------------------------------- */
.rec-result {
  margin-top: 18px; display: flex; align-items: center; gap: 14px;
  background: var(--band); border-radius: 14px; padding: 12px; color: var(--on-band);
}
.rec-result img { width: 54px; height: 70px; object-fit: cover; object-position: center top; border-radius: 8px; flex: none; }
.rec-result .rr-txt { font-size: 0.85rem; line-height: 1.4; }
.rec-result .rr-txt strong { color: var(--accent-bright); }
.rec-item .thumb { display: grid; place-items: center; background: #fff; padding: 6px; }
.rec-item .thumb img { max-width: 86%; max-height: 86%; object-fit: contain; }

/* ---- final CTA with render ---------------------------------------------- */
.final-shots { display: flex; justify-content: center; gap: 16px; margin-top: 50px; }
.final-shots .fs {
  width: clamp(120px, 16vw, 190px); aspect-ratio: 3/4; border-radius: 16px; overflow: hidden;
  box-shadow: 0 30px 60px -34px rgba(35,42,31,0.5);
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.final-shots.in .fs { opacity: 1; transform: translateY(0); }
.final-shots.in .fs:nth-child(2){ transition-delay: .1s; }
.final-shots.in .fs:nth-child(3){ transition-delay: .2s; }
.final-shots.in .fs:nth-child(4){ transition-delay: .3s; }
.final-shots .fs:nth-child(odd){ transform: translateY(20px) rotate(-2deg); }
.final-shots.in .fs:nth-child(odd){ transform: translateY(0) rotate(-2deg); }
.final-shots .fs img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

@media (max-width: 980px) {
  .sc-grid { grid-template-columns: 1fr; gap: 28px; }
  .sc-stage { height: clamp(420px, 90vw, 560px); order: -1; }
  .cs-grid { grid-template-columns: 1fr; gap: 24px; }
  .cs-stage { height: clamp(380px, 86vw, 520px); order: -1; }
  .wardrobe-grid { grid-template-columns: repeat(4, 1fr); }
  .final-shots .fs:nth-child(4){ display: none; }
}
@media (max-width: 560px) {
  .wardrobe-grid { grid-template-columns: repeat(3, 1fr); }
  .final-shots .fs:nth-child(3){ display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .sc-slide { opacity: 0 !important; }
  .sc-slide.on { opacity: 1 !important; transform: none !important; }
  .sc-cap .sc-ev, .sc-cap .sc-loc { opacity: 1 !important; transform: none !important; }
  .cs-slide { opacity: 0 !important; }
  .cs-slide.on { opacity: 1 !important; transform: none !important; }
  .cs-cap .cs-name, .cs-cap .cs-meta { opacity: 1 !important; transform: none !important; }
  .pl-row, .w-tile.r-pop, .final-shots .fs { opacity: 1 !important; transform: none !important; }
  .final-shots .fs:nth-child(odd){ transform: rotate(-2deg) !important; }
  .sc-dot.on .fillbar { transition: none !important; }
}

/* ---------- Compliance grid (privacy band) -------------------------------- */
.compliance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 50px; }
.comp-card {
  background: var(--band-2); border: 1px solid var(--band-line); border-radius: 16px;
  padding: 26px 24px;
}
.comp-ic {
  width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--accent-bright) 20%, transparent); color: var(--accent-bright);
  margin-bottom: 18px;
}
.comp-ic svg { width: 22px; height: 22px; }
.comp-card h4 { font-family: var(--sans); font-weight: 700; font-size: 1.02rem; color: var(--on-band); margin: 0 0 8px; letter-spacing: -0.01em; }
.comp-card p { color: var(--on-band-mute); font-size: 0.92rem; line-height: 1.55; margin: 0; }
@media (max-width: 860px) { .compliance-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .compliance-grid { grid-template-columns: 1fr; } }

/* ---------- Reduced motion ------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .r, .reveal-words .w > span, .moment .seq > span, .chip, .garment { opacity: 1 !important; transform: none !important; }
  .ba .after { opacity: 1 !important; }
  .float-anim { animation: none !important; }
  .marquee-track { animation: none !important; }
}
