/* AUTO-GENERATED  do not edit by hand.
 * Source: colocated marketing CSS modules (Expo Metro web CSS).
 * Regenerate from client/src/features/landing/marketing/marketingStyles.ts.
 * Modules (16):
 *   - sections/ShowcaseSection.web.css
 *   - sections/HowSection.web.css
 *   - sections/ReachSection.web.css
 *   - sections/FeaturesSection.web.css
 *   - sections/ProofSection.web.css
 *   - sections/NarrativeSections.web.css
 *   - sections/BlogSection.web.css
 *   - sections/CtaSection.web.css
 *   - sections/FooterSection.web.css
 *   - parts/MiniPhone.web.css
 *   - parts/HowPanel.web.css
 *   - parts/FeatureFlow.web.css
 *   - parts/ShowcaseChips.web.css
 *   - styles/typewriterShared.css
 *   - parts/ReachNewspaper.web.css
 *   - parts/MediaWall.web.css
 */
/* SHOWCASE — open on page ground (no navy panel, no grid squares) */
.showcase {
  position: relative;
  background: transparent;
  overflow: visible;
}
.showcase-inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: clamp(48px, 6.5vw, 88px) clamp(18px, 4vw, 32px);
}
.showcase .sec-head {
  margin-bottom: clamp(22px, 3vw, 34px);
}
.showcase .sec-head h2 {
  color: var(--ink);
}
.showcase-intro {
  max-width: 640px;
  margin-top: 12px;
  color: var(--muted);
  font-size: var(--mypr-font-body);
  line-height: 1.65;
}
.showcase-question {
  max-width: 680px;
  margin-top: 18px;
  color: var(--ink);
  font-size: var(--mypr-font-body-lg);
  font-weight: 700;
}
.showcase-assurance {
  display: block;
  max-width: 680px;
  margin-top: 14px;
  color: var(--azure-ink);
  font-size: var(--mypr-font-body);
}
.showcase-cta {
  margin-top: 22px;
}
.showcase .kick.light {
  color: var(--azure);
}
/* Showcase phones — inline on the section (no card/panel wrapper) */
.stage {
  --stage-artwork-height: min(760px, 88vh);
  position: relative;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  /* Tall enough for ~300px phones at 9/19.4 + captions */
  min-height: min(760px, 90vh);
}
/* Showcase chips + icon motion live in parts/showcase-chips.css */
.stage-artwork {
  min-height: var(--stage-artwork-height);
}

/* Dual Y-axis columns — col1 up, col2 down, phones sit inline on page ground */
.stage-duo {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Room for two phones; width tracks container so tablet/mobile never clip. */
  --stage-phone-w: min(300px, 100%);
  gap: clamp(20px, 3.5vw, 48px);
  width: 100%;
  max-width: min(720px, 100%);
  margin: 0 auto;
  height: var(--stage-artwork-height);
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: hidden; /* keep y-scroll mocks inside the stage, never page overflow */
}
.stage-carousel {
  position: relative;
  min-width: 0;
  height: 100%;
}
.stage-viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
  /* No mask fade — hard clip keeps phones solid/inline, no gray wash */
  /* Let wheel/touch reach mu-scroll inside mini phones when the stage is paused */
  pointer-events: auto;
}
.stage-track {
  display: flex;
  flex-direction: column;
  will-change: transform;
}
.stage-carousel--up .stage-track {
  animation: stage-scroll-y-up 22s linear infinite;
}
.stage-carousel--down .stage-track {
  /* Opposite direction + half-cycle offset so phones interleave, not align */
  animation: stage-scroll-y-down 22s linear infinite;
  animation-delay: -11s;
}
/* Stage track pauses via parent .motion-pausable; phones stay interactive while paused */
.stage-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding-block: 16px;
}
.stage-carousel .mini-iphone,
.stage-carousel .mini-iphone__content,
.stage-carousel .mini-iphone__content--squeezed,
.stage-carousel .mini-iphone__stage,
.stage-carousel .mini-iphone__content > .mu {
  pointer-events: auto;
}
.stage-carousel .mu-scroll,
.stage-carousel .mini-iphone__stage {
  pointer-events: auto;
  touch-action: pan-y;
  overscroll-behavior: contain;
}
/* Stagger column 2 so phones sit in the gaps of column 1 */
.stage-carousel--down .stage-strip {
  padding-block-start: 140px;
}
.shot {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
/* Figure must own the column width — otherwise phone width:100% collapses (~70px). */
.shot.shot-carousel {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.shot.shot-carousel .mini-iphone {
  /* Tracks column; never exceeds stage. Prefer ~full column on mobile. */
  width: var(--stage-phone-w, min(300px, 100%));
  max-width: 100%;
  flex: none;
}
/* No filter shadows here — see .mini-iphone--carousel in phone.css */
.shot figcaption,
.shot-label {
  font-size: var(--mypr-font-label);
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.02em;
}
@keyframes stage-scroll-y-up {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}
@keyframes stage-scroll-y-down {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}
/* Tablet: still dual column but slightly smaller phones so both fit. */
@media (max-width: 900px) and (min-width: 561px) {
  .stage-duo {
    --stage-phone-w: min(260px, 100%);
    max-width: min(640px, 100%);
    gap: clamp(16px, 2.5vw, 28px);
  }
  .stage {
    --stage-artwork-height: min(700px, 84vh);
    min-height: min(700px, 86vh);
  }
}

@media (max-width: 560px) {
  .stage-duo {
    --stage-phone-w: min(300px, 86vw);
    max-width: min(360px, 100%);
    grid-template-columns: 1fr;
    gap: 0;
  }
  .stage {
    --stage-artwork-height: min(620px, 78vh);
    min-height: min(620px, 80vh);
  }
  .stage-carousel--down {
    display: none;
  }
  .stage-strip {
    gap: 22px;
    padding-block: 12px;
  }
  .shot figcaption,
  .shot-label {
    font-size: var(--mypr-font-caption);
  }
}
@media (prefers-reduced-motion: reduce) {
  .stage-track {
    animation: none !important;
  }
  .stage-duo {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }
  .stage-carousel {
    height: auto;
    position: relative;
  }
  .stage-viewport {
    position: relative;
    overflow: visible;
  }
  .stage-strip[aria-hidden="true"] {
    display: none;
  }
  .stage-carousel--down {
    display: block;
  }
  .stage-carousel--down .stage-strip {
    padding-block-start: 16px;
  }
}
.phone {
  position: relative;
  width: min(258px, 72vw);
  border-radius: 36px;
  padding: 8px;
  background: linear-gradient(160deg, #28324c, #0b1020);
  box-shadow:
    0 34px 66px -26px rgba(11, 16, 32, 0.5),
    0 2px 5px rgba(11, 16, 32, 0.25);
}
.phone::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.14);
  z-index: 2;
}
.phone img {
  width: 100%;
  display: block;
  border-radius: 29px;
}

/* HOW layout shell — panel animations live in parts/HowPanel.web.css */
.section.how {
  padding-block: clamp(44px, 6vw, 80px);
}
.section.how .sec-head {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.how-step-copy strong {
  color: var(--ink);
  font-weight: 800;
}

/* REACH (dark) — same navy stage language as hero */
.reach {
  background:
    radial-gradient(70% 70% at 18% 20%, rgba(11, 124, 240, 0.22), transparent 58%),
    radial-gradient(80% 80% at 88% 35%, rgba(27, 196, 254, 0.2), transparent 60%),
    linear-gradient(180deg, #0e1530, #0b1020);
  position: relative;
  /* Clip decorative art; copy + wall scroll inside their own panes (issue #64). */
  overflow: hidden;
  min-height: 560px;
}
.reach::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0 119px,
    var(--navy-line) 119px 120px
  );
  opacity: 0.38;
  pointer-events: none;
}
.reach-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  min-height: 560px;
  margin: 0;
  padding-block: clamp(38px, 4.5vw, 58px);
  display: flex;
  align-items: center;
  pointer-events: none;
}
.reach-copy {
  position: relative;
  z-index: 3;
  width: min(1100px, calc(100vw - 64px));
  /* Center the copy+paper band; balanced inset on both sides (RTL and LTR). */
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: center;
  gap: clamp(24px, 3.5vw, 48px);
  pointer-events: auto;
  text-shadow: none;
  /* Outer column is NOT a scroller — lede + paper + CTA stack in normal flow. */
  max-height: none;
  overflow: visible;
}
/* Prefer lede styles from ReachNewspaper.web.css (.reach-copy-text); keep legacy hooks. */
.reach-copy .kick {
  margin-bottom: 10px;
}
.reach-copy > .reach-copy-text h2,
.reach-copy-text h2 {
  color: #fff;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 14px;
  text-wrap: balance;
  letter-spacing: -0.02em;
  text-shadow: none;
}
.reach-copy > .reach-copy-text p,
.reach-copy-text p {
  color: #fff;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.52;
  margin-bottom: 0;
  max-width: 42ch;
  text-shadow: none;
}
.reach-copy > .btn-lg {
  padding: 13px 24px;
  font-size: var(--mypr-font-body-sm);
  position: static;
  margin-top: 0;
}
.reach-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  overflow: hidden;
  pointer-events: none;
  direction: ltr;
}
.reach-art::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  /* Soften the wash so spotlighted journalists stay readable; keep copy-side tint. */
  background: linear-gradient(
    90deg,
    rgba(5, 10, 24, 0.55) 0%,
    rgba(5, 10, 24, 0.22) 22%,
    rgba(5, 10, 24, 0) 48%
  );
  pointer-events: none;
}
.page[dir="rtl"] .reach-art::after {
  background: linear-gradient(
    270deg,
    rgba(5, 10, 24, 0.55) 0%,
    rgba(5, 10, 24, 0.22) 22%,
    rgba(5, 10, 24, 0) 48%
  );
}
/* Decorative-only art hosts (legacy); MediaWall uses .media-wall-scroll instead. */
.reach-art:not(.media-wall) > :last-child {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.glow-c {
  background: radial-gradient(circle at 48% 42%, rgba(27, 196, 254, 0.48), transparent 62%);
  filter: blur(42px);
}
.reach-illus {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  display: block;
  filter: drop-shadow(0 22px 44px rgba(11, 124, 240, 0.28));
  animation: float 6.5s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .reach-illus {
    animation: none;
  }
}
@media (max-width: 820px) {
  .reach {
    min-height: 0;
  }
  .reach-inner {
    min-height: 0;
    text-align: center;
  }
  .reach-copy {
    width: min(100%, calc(100vw - 36px));
    margin-inline: auto;
    padding-inline: 18px;
    max-height: none;
    overflow: visible;
    align-items: center;
  }
  .reach-copy-text {
    max-width: none;
    align-items: center;
  }
  .reach-art::after,
  .page[dir="rtl"] .reach-art::after {
    background: rgba(5, 10, 24, 0.42);
  }
  .reach-copy-text p,
  .reach-copy > .reach-copy-text p {
    margin-inline: auto;
  }
  .reach-copy > .btn,
  .reach-copy > .btn-lg {
    margin-inline: auto;
    align-self: center;
  }
}
@media (max-width: 640px) {
  .reach-copy {
    display: flex;
    flex-direction: column;
  }
}

/* === reach.css === */
/* REACH — full-section journalist pool + directed ceiling spotlight.
   Class hooks live on .reach-illus (see parts/reach-svg.js).

   Selection cycle 24s; each four-second reel spins for 1.5s, then holds for 2.5s:
     scroll → hold + pick A → scroll → hold + pick B →
     scroll → hold + pick C → scroll → hold + pick D →
     scroll → hold + pick E → scroll → hold + pick F → loop

   One reel crosses all nine rows (ROW_STEP = 66, stripH = 594) before
   the spotlight settles on the next selected journalist.
*/

.reach-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  min-height: 0;
  height: auto;
  /* MediaWall is decorative: overflow hidden; motion from SVG reel + CSS drift. */
  overflow: hidden;
  pointer-events: none;
  direction: ltr;
}

.reach-illus {
  --r-cycle: 24s;
  --r-reel: 4s;
  --r-strip: 594px;
  /* Dim the crowd so the spotlighted card reads as a clear pick (hero-like). */
  --r-crowd-opacity: 0.34;
  --r-highlight-opacity: 1;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: 100%;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 18px 36px rgba(11, 124, 240, 0.26));
  animation: r-stage-float 7s ease-in-out infinite;
  will-change: transform;
}

/* ── Lamp slides toward the chosen column ────────────────── */
.reach-illus .r-fixture {
  transform-box: fill-box;
  transform-origin: center top;
  animation: r-lamp-aim var(--r-cycle) ease-in-out infinite;
}

.reach-illus .r-lamp,
.reach-illus .r-lamp-core {
  animation: r-lamp-soft 3.6s ease-in-out infinite;
}

.reach-illus .r-ceil-wash {
  animation: r-ceil-pulse var(--r-cycle) ease-in-out infinite;
}

/* Soft ambient beam (scan) — dips when a directed beam is on */
.reach-illus .r-beam-soft {
  animation: r-beam-soft var(--r-cycle) ease-in-out infinite;
}

/* Directed beams — one cone per pick, aimed at that card */
.reach-illus .r-beam-a {
  animation: r-beam-a var(--r-cycle) ease-in-out infinite;
}
.reach-illus .r-beam-b {
  animation: r-beam-b var(--r-cycle) ease-in-out infinite;
}
.reach-illus .r-beam-c {
  animation: r-beam-c var(--r-cycle) ease-in-out infinite;
}
.reach-illus .r-beam-d {
  animation: r-beam-d var(--r-cycle) ease-in-out infinite;
}
.reach-illus .r-beam-e {
  animation: r-beam-e var(--r-cycle) ease-in-out infinite;
}
.reach-illus .r-beam-f {
  animation: r-beam-f var(--r-cycle) ease-in-out infinite;
}

/* Spotlight pools under the chosen card */
.reach-illus .r-pool {
  transform-box: fill-box;
  transform-origin: center;
  pointer-events: none;
}
.reach-illus .r-pool-a {
  animation: r-pool-a var(--r-cycle) ease-in-out infinite;
}
.reach-illus .r-pool-b {
  animation: r-pool-b var(--r-cycle) ease-in-out infinite;
}
.reach-illus .r-pool-c {
  animation: r-pool-c var(--r-cycle) ease-in-out infinite;
}
.reach-illus .r-pool-d {
  animation: r-pool-d var(--r-cycle) ease-in-out infinite;
}
.reach-illus .r-pool-e {
  animation: r-pool-e var(--r-cycle) ease-in-out infinite;
}
.reach-illus .r-pool-f {
  animation: r-pool-f var(--r-cycle) ease-in-out infinite;
}

/* ── Slot reel: nine fast rows, then a clean result hold ─── */
.reach-illus .r-scroll {
  animation: r-scroll var(--r-reel) cubic-bezier(0.12, 0.72, 0.18, 1) infinite;
  will-change: transform;
}

/* ── Grid cells ──────────────────────────────────────────── */
.reach-illus .r-cell {
  transform-box: fill-box;
  transform-origin: center;
}

.reach-illus .r-cell-dim {
  opacity: var(--r-crowd-opacity);
}

/* Non-pick cells: dim while a pick is lit */
.reach-illus .r-cell:not([class*="r-pick-"]) {
  animation: r-cell-crowd var(--r-cycle) ease-in-out infinite;
}

/* Pick slots — elevate + swap dim/hot shells */
.reach-illus .r-pick-a {
  animation: r-pick-a var(--r-cycle) ease-in-out infinite;
}
.reach-illus .r-pick-b {
  animation: r-pick-b var(--r-cycle) ease-in-out infinite;
}
.reach-illus .r-pick-c {
  animation: r-pick-c var(--r-cycle) ease-in-out infinite;
}
.reach-illus .r-pick-d {
  animation: r-pick-d var(--r-cycle) ease-in-out infinite;
}
.reach-illus .r-pick-e {
  animation: r-pick-e var(--r-cycle) ease-in-out infinite;
}
.reach-illus .r-pick-f {
  animation: r-pick-f var(--r-cycle) ease-in-out infinite;
}

.reach-illus .r-cell-hot {
  opacity: 0;
  pointer-events: none;
}
.reach-illus .r-pick-a .r-cell-hot {
  animation: r-hot-shell-a var(--r-cycle) ease-in-out infinite;
}
.reach-illus .r-pick-b .r-cell-hot {
  animation: r-hot-shell-b var(--r-cycle) ease-in-out infinite;
}
.reach-illus .r-pick-c .r-cell-hot {
  animation: r-hot-shell-c var(--r-cycle) ease-in-out infinite;
}
.reach-illus .r-pick-d .r-cell-hot {
  animation: r-hot-shell-d var(--r-cycle) ease-in-out infinite;
}
.reach-illus .r-pick-e .r-cell-hot {
  animation: r-hot-shell-e var(--r-cycle) ease-in-out infinite;
}
.reach-illus .r-pick-f .r-cell-hot {
  animation: r-hot-shell-f var(--r-cycle) ease-in-out infinite;
}

.reach-illus .r-pick-a .r-cell-dim {
  animation: r-dim-shell-a var(--r-cycle) ease-in-out infinite;
}
.reach-illus .r-pick-b .r-cell-dim {
  animation: r-dim-shell-b var(--r-cycle) ease-in-out infinite;
}
.reach-illus .r-pick-c .r-cell-dim {
  animation: r-dim-shell-c var(--r-cycle) ease-in-out infinite;
}
.reach-illus .r-pick-d .r-cell-dim {
  animation: r-dim-shell-d var(--r-cycle) ease-in-out infinite;
}
.reach-illus .r-pick-e .r-cell-dim {
  animation: r-dim-shell-e var(--r-cycle) ease-in-out infinite;
}
.reach-illus .r-pick-f .r-cell-dim {
  animation: r-dim-shell-f var(--r-cycle) ease-in-out infinite;
}

.reach-illus .r-hot-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: r-hot-ring 2.4s ease-in-out infinite;
}

.reach-illus .r-match-dot {
  transform-box: fill-box;
  transform-origin: center;
  animation: r-match-pulse 1.6s ease-in-out infinite;
}

/* Six selections across one stable 24-second loop. */

@keyframes r-stage-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -5px, 0);
  }
}

@keyframes r-lamp-soft {
  0%,
  100% {
    opacity: 0.72;
  }
  50% {
    opacity: 1;
  }
}

/* Lamp / wash nudge toward the active pick column */
@keyframes r-lamp-aim {
  0%,
  6% {
    transform: translateX(0);
  }
  6.25%,
  16.4% {
    transform: translateX(-140px);
  }
  16.67%,
  22.67% {
    transform: translateX(0);
  }
  22.92%,
  33.07% {
    transform: translateX(110px);
  }
  33.33%,
  39.33% {
    transform: translateX(0);
  }
  39.58%,
  49.73% {
    transform: translateX(-60px);
  }
  50%,
  56% {
    transform: translateX(0);
  }
  56.25%,
  66.4% {
    transform: translateX(160px);
  }
  66.67%,
  72.67% {
    transform: translateX(0);
  }
  72.92%,
  83.07% {
    transform: translateX(0);
  }
  83.33%,
  89.33% {
    transform: translateX(0);
  }
  89.58%,
  99.73% {
    transform: translateX(-110px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes r-ceil-pulse {
  0%,
  6% {
    opacity: 0.65;
  }
  6.25%,
  16.4% {
    opacity: 1;
  }
  16.67%,
  22.67% {
    opacity: 0.65;
  }
  22.92%,
  33.07% {
    opacity: 1;
  }
  33.33%,
  39.33% {
    opacity: 0.65;
  }
  39.58%,
  49.73% {
    opacity: 1;
  }
  50%,
  56% {
    opacity: 0.65;
  }
  56.25%,
  66.4% {
    opacity: 1;
  }
  66.67%,
  72.67% {
    opacity: 0.65;
  }
  72.92%,
  83.07% {
    opacity: 1;
  }
  83.33%,
  89.33% {
    opacity: 0.65;
  }
  89.58%,
  99.73% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}

/* Soft center beam only between picks */
@keyframes r-beam-soft {
  0%,
  6% {
    opacity: 0.4;
  }
  6.25%,
  16.4% {
    opacity: 0.1;
  }
  16.67%,
  22.67% {
    opacity: 0.4;
  }
  22.92%,
  33.07% {
    opacity: 0.1;
  }
  33.33%,
  39.33% {
    opacity: 0.4;
  }
  39.58%,
  49.73% {
    opacity: 0.1;
  }
  50%,
  56% {
    opacity: 0.4;
  }
  56.25%,
  66.4% {
    opacity: 0.1;
  }
  66.67%,
  72.67% {
    opacity: 0.4;
  }
  72.92%,
  83.07% {
    opacity: 0.1;
  }
  83.33%,
  89.33% {
    opacity: 0.4;
  }
  89.58%,
  99.73% {
    opacity: 0.1;
  }
  100% {
    opacity: 0.45;
  }
}

/* Directed beams — point at the chosen journalist */
@keyframes r-beam-a {
  0%,
  6% {
    opacity: 0;
  }
  6.25%,
  16.4% {
    opacity: 1;
  }
  16.67%,
  100% {
    opacity: 0;
  }
}
@keyframes r-beam-b {
  0%,
  22.67% {
    opacity: 0;
  }
  22.92%,
  33.07% {
    opacity: 1;
  }
  33.33%,
  100% {
    opacity: 0;
  }
}
@keyframes r-beam-c {
  0%,
  39.33% {
    opacity: 0;
  }
  39.58%,
  49.73% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}
@keyframes r-beam-d {
  0%,
  56% {
    opacity: 0;
  }
  56.25%,
  66.4% {
    opacity: 1;
  }
  66.67%,
  100% {
    opacity: 0;
  }
}
@keyframes r-beam-e {
  0%,
  72.67% {
    opacity: 0;
  }
  72.92%,
  83.07% {
    opacity: 1;
  }
  83.33%,
  100% {
    opacity: 0;
  }
}
@keyframes r-beam-f {
  0%,
  89.33% {
    opacity: 0;
  }
  89.58%,
  99.73% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*
 * The reel crosses all nine rows in 37.5% of four seconds (1.5s), then
 * remains stationary for the remaining 2.5s before the seamless reset.
 */
@keyframes r-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  37.5%,
  100% {
    transform: translate3d(0, calc(var(--r-strip) * -1), 0);
  }
}

/* Crowd dim while any pick is active */
@keyframes r-cell-crowd {
  0%,
  6% {
    transform: scale(1);
  }
  6.25%,
  16.4% {
    transform: scale(0.985);
  }
  16.67%,
  22.67% {
    transform: scale(1);
  }
  22.92%,
  33.07% {
    transform: scale(0.985);
  }
  33.33%,
  39.33% {
    transform: scale(1);
  }
  39.58%,
  49.73% {
    transform: scale(0.985);
  }
  50%,
  56% {
    transform: scale(1);
  }
  56.25%,
  66.4% {
    transform: scale(0.985);
  }
  66.67%,
  72.67% {
    transform: scale(1);
  }
  72.92%,
  83.07% {
    transform: scale(0.985);
  }
  83.33%,
  89.33% {
    transform: scale(1);
  }
  89.58%,
  99.73% {
    transform: scale(0.985);
  }
  100% {
    transform: scale(1);
  }
}

/* Pick card lift — stronger pop so the chosen journalist reads against the dim crowd */
@keyframes r-pick-a {
  0%,
  6% {
    transform: scale(0.985);
  }
  6.25%,
  16.4% {
    transform: scale(1.22);
  }
  16.67%,
  100% {
    transform: scale(0.985);
  }
}
@keyframes r-pick-b {
  0%,
  22.67% {
    transform: scale(0.985);
  }
  22.92%,
  33.07% {
    transform: scale(1.22);
  }
  33.33%,
  100% {
    transform: scale(0.985);
  }
}
@keyframes r-pick-c {
  0%,
  39.33% {
    transform: scale(0.985);
  }
  39.58%,
  49.73% {
    transform: scale(1.22);
  }
  50%,
  100% {
    transform: scale(0.985);
  }
}
@keyframes r-pick-d {
  0%,
  56% {
    transform: scale(0.985);
  }
  56.25%,
  66.4% {
    transform: scale(1.22);
  }
  66.67%,
  100% {
    transform: scale(0.985);
  }
}
@keyframes r-pick-e {
  0%,
  72.67% {
    transform: scale(0.985);
  }
  72.92%,
  83.07% {
    transform: scale(1.22);
  }
  83.33%,
  100% {
    transform: scale(0.985);
  }
}
@keyframes r-pick-f {
  0%,
  89.33% {
    transform: scale(0.985);
  }
  89.58%,
  99.73% {
    transform: scale(1.22);
  }
  100% {
    transform: scale(0.985);
  }
}

@keyframes r-hot-shell-a {
  0%,
  6% {
    opacity: 0;
  }
  6.25%,
  16.4% {
    opacity: var(--r-highlight-opacity);
  }
  16.67%,
  100% {
    opacity: 0;
  }
}
@keyframes r-hot-shell-b {
  0%,
  22.67% {
    opacity: 0;
  }
  22.92%,
  33.07% {
    opacity: var(--r-highlight-opacity);
  }
  33.33%,
  100% {
    opacity: 0;
  }
}
@keyframes r-hot-shell-c {
  0%,
  39.33% {
    opacity: 0;
  }
  39.58%,
  49.73% {
    opacity: var(--r-highlight-opacity);
  }
  50%,
  100% {
    opacity: 0;
  }
}
@keyframes r-hot-shell-d {
  0%,
  56% {
    opacity: 0;
  }
  56.25%,
  66.4% {
    opacity: var(--r-highlight-opacity);
  }
  66.67%,
  100% {
    opacity: 0;
  }
}
@keyframes r-hot-shell-e {
  0%,
  72.67% {
    opacity: 0;
  }
  72.92%,
  83.07% {
    opacity: var(--r-highlight-opacity);
  }
  83.33%,
  100% {
    opacity: 0;
  }
}
@keyframes r-hot-shell-f {
  0%,
  89.33% {
    opacity: 0;
  }
  89.58%,
  99.73% {
    opacity: var(--r-highlight-opacity);
  }
  100% {
    opacity: 0;
  }
}

@keyframes r-dim-shell-a {
  0%,
  6% {
    opacity: var(--r-crowd-opacity);
  }
  6.25%,
  16.4% {
    opacity: 0;
  }
  16.67%,
  100% {
    opacity: var(--r-crowd-opacity);
  }
}
@keyframes r-dim-shell-b {
  0%,
  22.67% {
    opacity: var(--r-crowd-opacity);
  }
  22.92%,
  33.07% {
    opacity: 0;
  }
  33.33%,
  100% {
    opacity: var(--r-crowd-opacity);
  }
}
@keyframes r-dim-shell-c {
  0%,
  39.33% {
    opacity: var(--r-crowd-opacity);
  }
  39.58%,
  49.73% {
    opacity: 0;
  }
  50%,
  100% {
    opacity: var(--r-crowd-opacity);
  }
}
@keyframes r-dim-shell-d {
  0%,
  56% {
    opacity: var(--r-crowd-opacity);
  }
  56.25%,
  66.4% {
    opacity: 0;
  }
  66.67%,
  100% {
    opacity: var(--r-crowd-opacity);
  }
}
@keyframes r-dim-shell-e {
  0%,
  72.67% {
    opacity: var(--r-crowd-opacity);
  }
  72.92%,
  83.07% {
    opacity: 0;
  }
  83.33%,
  100% {
    opacity: var(--r-crowd-opacity);
  }
}
@keyframes r-dim-shell-f {
  0%,
  89.33% {
    opacity: var(--r-crowd-opacity);
  }
  89.58%,
  99.73% {
    opacity: 0;
  }
  100% {
    opacity: var(--r-crowd-opacity);
  }
}

@keyframes r-pool-a {
  0%,
  6% {
    opacity: 0;
    transform: scale(0.85);
  }
  6.25%,
  16.4% {
    opacity: 1;
    transform: scale(1);
  }
  16.67%,
  100% {
    opacity: 0;
    transform: scale(0.9);
  }
}
@keyframes r-pool-b {
  0%,
  22.67% {
    opacity: 0;
    transform: scale(0.85);
  }
  22.92%,
  33.07% {
    opacity: 1;
    transform: scale(1);
  }
  33.33%,
  100% {
    opacity: 0;
    transform: scale(0.9);
  }
}
@keyframes r-pool-c {
  0%,
  39.33% {
    opacity: 0;
    transform: scale(0.85);
  }
  39.58%,
  49.73% {
    opacity: 1;
    transform: scale(1);
  }
  50%,
  100% {
    opacity: 0;
    transform: scale(0.9);
  }
}
@keyframes r-pool-d {
  0%,
  56% {
    opacity: 0;
    transform: scale(0.85);
  }
  56.25%,
  66.4% {
    opacity: 1;
    transform: scale(1);
  }
  66.67%,
  100% {
    opacity: 0;
    transform: scale(0.9);
  }
}
@keyframes r-pool-e {
  0%,
  72.67% {
    opacity: 0;
    transform: scale(0.85);
  }
  72.92%,
  83.07% {
    opacity: 1;
    transform: scale(1);
  }
  83.33%,
  100% {
    opacity: 0;
    transform: scale(0.9);
  }
}
@keyframes r-pool-f {
  0%,
  89.33% {
    opacity: 0;
    transform: scale(0.85);
  }
  89.58%,
  99.73% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.9);
  }
}

@keyframes r-hot-ring {
  0%,
  100% {
    opacity: 0.75;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes r-match-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.22);
    opacity: 0.85;
  }
}

@media (max-width: 820px) {
  .reach-art {
    position: absolute;
    inset: 0;
    min-height: 0;
    height: auto;
    aspect-ratio: auto;
  }
  .reach-illus {
    max-width: none;
    width: 100%;
    height: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reach-illus,
  .reach-illus .r-fixture,
  .reach-illus .r-lamp,
  .reach-illus .r-lamp-core,
  .reach-illus .r-ceil-wash,
  .reach-illus .r-beam-soft,
  .reach-illus .r-beam,
  .reach-illus .r-pool,
  .reach-illus .r-scroll,
  .reach-illus .r-cell,
  .reach-illus .r-cell-hot,
  .reach-illus .r-cell-dim,
  .reach-illus .r-hot-ring,
  .reach-illus .r-match-dot {
    animation: none !important;
  }
  /* Freeze on first pick so reduced-motion still shows "the right one" */
  .reach-illus .r-pick-a {
    transform: scale(1.1);
  }
  .reach-illus .r-pick-a .r-cell-hot {
    opacity: var(--r-highlight-opacity);
  }
  .reach-illus .r-pick-a .r-cell-dim {
    opacity: 0;
  }
  .reach-illus .r-pool-a {
    opacity: 0.9;
  }
  .reach-illus .r-beam-a {
    opacity: 1;
  }
  .reach-illus .r-beam-soft {
    opacity: 0.15;
  }
  .reach-illus .r-cell:not(.r-pick-a) {
    opacity: 0.45;
  }
}

/* FEATURES shell — animated product flow styles live in parts/FeatureFlow.web.css */


/* PROOF — full-bleed navy + white grid squares; stats + testimonials */
.section.proof {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: clamp(56px, 7vw, 96px) clamp(18px, 4vw, 32px);
  background:
    radial-gradient(70% 70% at 18% 20%, rgba(11, 124, 240, 0.22), transparent 58%),
    radial-gradient(80% 80% at 88% 35%, rgba(27, 196, 254, 0.2), transparent 60%),
    linear-gradient(180deg, #0e1530, #0b1020);
  position: relative;
  overflow: hidden;
}
.section.proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 119px, var(--navy-line) 119px 120px),
    repeating-linear-gradient(0deg, transparent 0 119px, var(--navy-line) 119px 120px);
  opacity: 0.38;
  pointer-events: none;
}
.section.proof > * {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin-inline: auto;
}
.section.proof .sec-head {
  margin-bottom: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section.proof .sec-head h2 {
  color: #fff;
}
.stats,
.proof-stats {
  display: flex;
  gap: clamp(26px, 4vw, 54px);
  flex-wrap: wrap;
  justify-content: center;
}
.proof-stats {
  margin-bottom: clamp(28px, 4vw, 44px);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
}
.stat-n {
  font-size: var(--mypr-font-fluid-section-title);
  font-weight: 900;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.stat-l {
  font-size: var(--mypr-font-label);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.62);
  max-width: 20ch;
}

/* TESTIMONIALS (inside proof) — white cards on navy */
.tst {
  padding-top: 0;
}
.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tst-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 24px;
  box-shadow: 0 20px 46px -34px rgba(0, 0, 0, 0.55);
  transition:
    transform 0.18s,
    box-shadow 0.18s;
}
.tst-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 56px -32px rgba(0, 0, 0, 0.55);
}
.tst-q {
  font-size: var(--mypr-font-display-lg);
  line-height: 0.1;
  height: 26px;
  color: var(--cyan);
  font-weight: 900;
}
.tst-card blockquote {
  margin: 0 0 22px;
  font-size: var(--mypr-font-body);
  line-height: 1.65;
  font-weight: 600;
  color: var(--ink);
}
.tst-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.tst-av {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: var(--mypr-font-body);
}
.tst-av.a {
  background: linear-gradient(135deg, #1bc4fe, #0b7cf0);
}
.tst-av.b {
  background: linear-gradient(135deg, #3dd68c, #0fa968);
}
.tst-av.c {
  background: linear-gradient(135deg, #9b8afb, #7a5af8);
}
.tst-who {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.tst-who b {
  font-size: var(--mypr-font-body-sm);
  font-weight: 800;
}
.tst-who span {
  font-size: var(--mypr-font-caption);
  color: var(--muted);
}
@media (max-width: 820px) {
  .tst-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .tst-grid {
    grid-template-columns: 1fr;
  }
}

/* === testimonials.css === */
/* Infinite testimonial marquee + realtime typewriter (parts — merged by generate.js) */

.section.tst {
  overflow: hidden;
}

.tst-carousel {
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  padding-block: 8px 4px;
}

.tst-carousel .infinite-carousel__item {
  flex: 0 0 min(340px, 82vw);
}

.tst-card {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--card, #fff);
  border: 1px solid var(--line, #e6ecf5);
  border-radius: 20px;
  padding: 26px 24px;
  box-shadow: 0 20px 46px -34px rgba(11, 16, 32, 0.5);
  transition:
    transform 0.18s,
    box-shadow 0.18s,
    border-color 0.18s;
}

.tst-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 56px -32px rgba(11, 16, 32, 0.5);
  border-color: rgba(27, 196, 254, 0.5);
}

.tst-q {
  font-size: var(--mypr-font-display-lg);
  line-height: 0.1;
  height: 26px;
  color: var(--cyan, #1bc4fe);
  font-weight: 900;
}

.tst-quote {
  margin: 0 0 22px;
  font-size: var(--mypr-font-body);
  line-height: 1.65;
  font-weight: 600;
  color: var(--ink, #0b1020);
  position: relative;
  min-height: 5.2em; /* reserve space so typewriter doesn't jump layout */
}

.tst-quote-text {
  display: inline;
  white-space: pre-wrap;
}

/* Caret: only while writing */
.tst-caret {
  display: none;
  width: 2px;
  height: 1.05em;
  margin-inline-start: 2px;
  vertical-align: -0.15em;
  background: var(--cyan, #1bc4fe);
  border-radius: 1px;
  animation: tst-caret-blink 0.85s step-end infinite;
}

.tst-card.is-writing .tst-caret {
  display: inline-block;
}

.tst-card.is-writing {
  border-color: rgba(27, 196, 254, 0.48);
  box-shadow: 0 22px 52px -34px rgba(27, 196, 254, 0.7);
}

.tst-card.is-written .tst-caret {
  display: none;
}

@keyframes tst-caret-blink {
  50% {
    opacity: 0;
  }
}

.tst-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.tst-av {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: var(--mypr-font-body);
  overflow: hidden;
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 3px rgba(11, 124, 240, 0.18);
}

.tst-av.a {
  background: linear-gradient(135deg, #1bc4fe, #0b7cf0);
}
.tst-av.b {
  background: linear-gradient(135deg, #3dd68c, #0fa968);
}
.tst-av.c {
  background: linear-gradient(135deg, #9b8afb, #7a5af8);
}

.tst-av.tst-av-svg {
  padding: 0;
  background: transparent !important;
}

.tst-av.tst-av-svg svg {
  display: block;
  width: 100%;
  height: 100%;
}

.tst-av img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tst-who {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.tst-who b {
  font-size: var(--mypr-font-body-sm);
  font-weight: 800;
}

.tst-who span {
  font-size: var(--mypr-font-caption);
  color: var(--muted, #59647b);
}

/* Stats count-up (proof section) — primes dimmed, pops on viewport entry */
.proof-stats .stat-n {
  font-variant-numeric: tabular-nums;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease,
    filter 0.35s ease;
}

.proof-stats .stat-n.is-pending {
  opacity: 0.28;
  transform: translateY(8px) scale(0.94);
  filter: saturate(0.6);
}

.proof-stats .stat-n.is-pop {
  opacity: 1;
  transform: scale(1.08);
  filter: none;
}

.proof-stats .stat-n.is-done {
  opacity: 1;
  transform: scale(1);
  filter: none;
}

.proof-stats[data-stats-ready="1"] .stat {
  animation: proof-stat-in 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.proof-stats[data-stats-ready="1"] .stat:nth-child(1) {
  animation-delay: 0ms;
}
.proof-stats[data-stats-ready="1"] .stat:nth-child(2) {
  animation-delay: 90ms;
}
.proof-stats[data-stats-ready="1"] .stat:nth-child(3) {
  animation-delay: 180ms;
}

@keyframes proof-stat-in {
  from {
    opacity: 0.55;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tst-caret {
    display: none !important;
  }
  .proof-stats .stat-n {
    transition: none;
  }
  .proof-stats[data-stats-ready="1"] .stat {
    animation: none;
  }
}

.tst-loading {
  display: flex;
  gap: 18px;
  overflow: hidden;
}
.tst-loading-item {
  display: flex;
  flex: 0 0 min(340px, 82vw);
  min-width: 0;
}
.tst-loading-quote {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 132px;
  margin-bottom: 22px;
}
.tst-loading-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.tst-loading-name {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
}

.narrative-problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
}
.narrative-problem h2,
.narrative-journalist h2 {
  font-size: var(--mypr-font-fluid-page-title);
  font-weight: 900;
  text-wrap: balance;
}
.narrative-problem h2 span {
  color: var(--azure);
}
.narrative-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.narrative-copy p,
.narrative-journalist p {
  color: var(--muted);
  font-size: var(--mypr-font-body-lg);
  line-height: 1.75;
}
.narrative-copy .narrative-strong {
  color: var(--ink);
  font-weight: 800;
}
.narrative-journalist strong {
  color: var(--azure-ink);
  font-size: var(--mypr-font-body-lg);
}
.narrative-journalist {
  max-width: 880px;
  text-align: center;
}
.narrative-journalist-art {
  position: relative;
  display: grid;
  place-items: center;
  width: 190px;
  min-height: 142px;
  margin: 0 auto 20px;
  isolation: isolate;
}
.narrative-journalist-art::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 132px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 196, 254, 0.2), rgba(11, 124, 240, 0.05) 58%, transparent 72%);
  filter: blur(4px);
}
.narrative-journalist p {
  max-width: 720px;
  margin: 20px auto 16px;
}
@media (max-width: 820px) {
  .narrative-problem-grid {
    grid-template-columns: 1fr;
  }
}

/* BLOG */
.section.blog .sec-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
/* Legacy text link kept for any residual markup */
.blog-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: var(--mypr-font-body-sm);
  font-weight: 800;
  color: var(--azure);
  text-decoration: none;
}
.blog-all:hover {
  text-decoration: underline;
}
/* Cute blog CTA — animated open-book SVG + label → /blog */
.blog-cta {
  --blog-cta-pad-y: 11px;
  --blog-cta-pad-x: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  padding: var(--blog-cta-pad-y) var(--blog-cta-pad-x);
  border-radius: 999px;
  text-decoration: none;
  color: var(--azure-ink);
  font-size: var(--mypr-font-body-sm);
  font-weight: 800;
  line-height: 1;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--cyan), var(--blue)) border-box;
  border: 1.5px solid transparent;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 10px 28px -14px rgba(11, 124, 240, 0.45);
  transition:
    transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
  position: relative;
  overflow: hidden;
}
.blog-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(27, 196, 254, 0.12) 48%,
    transparent 66%
  );
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}
.blog-cta:hover {
  transform: translateY(-2px) scale(1.02);
  color: #fff;
  background:
    linear-gradient(135deg, var(--cyan), var(--blue)) padding-box,
    linear-gradient(135deg, var(--cyan), var(--blue)) border-box;
  box-shadow: 0 16px 34px -14px rgba(8, 115, 238, 0.55);
}
.blog-cta:hover::before {
  transform: translateX(120%);
}
.blog-cta:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}
.blog-cta:active {
  transform: translateY(0) scale(0.99);
}
.blog-cta-art {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 30px;
  flex: none;
  border-radius: 10px;
  background: linear-gradient(160deg, rgba(27, 196, 254, 0.16), rgba(11, 124, 240, 0.1));
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease;
}
.blog-cta:hover .blog-cta-art {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22) inset;
}
.blog-cta-illus {
  display: block;
  width: 28px;
  height: 24px;
  overflow: visible;
}
.blog-cta-label {
  position: relative;
  z-index: 1;
}
.blog-cta-arrow {
  display: inline-flex;
  position: relative;
  z-index: 1;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-cta-arrow svg {
  width: 16px;
  height: 16px;
  display: block;
}
.blog-cta:hover .blog-cta-arrow {
  transform: translateX(var(--blog-cta-arrow-nudge, -3px));
}
.page[dir="ltr"] .blog-cta {
  --blog-cta-arrow-nudge: 3px;
}
.page[dir="rtl"] .blog-cta {
  --blog-cta-arrow-nudge: -3px;
}
/* Book SVG motion — idle loop */
.blog-cta-illus .blog-cta-left,
.blog-cta-illus .blog-cta-right,
.blog-cta-illus .blog-cta-ribbon,
.blog-cta-illus .blog-cta-float,
.blog-cta-illus .blog-cta-shadow,
.blog-cta-illus .blog-cta-spark {
  transform-box: fill-box;
}
.blog-cta-left {
  transform-origin: 100% 55%;
  animation: blog-cta-page-l 3.6s ease-in-out infinite;
}
.blog-cta-right {
  transform-origin: 0% 55%;
  animation: blog-cta-page-r 3.6s ease-in-out infinite;
}
.blog-cta-ribbon {
  transform-origin: 50% 0%;
  animation: blog-cta-ribbon 2.8s ease-in-out infinite;
}
.blog-cta-float {
  transform-origin: 50% 50%;
  animation: blog-cta-float 3.2s ease-in-out infinite;
}
.blog-cta-shadow {
  transform-origin: 50% 50%;
  animation: blog-cta-shadow 3.6s ease-in-out infinite;
}
.blog-cta-lines-l path,
.blog-cta-lines-r path {
  stroke-dasharray: 10;
  animation: blog-cta-lines 3.6s ease-in-out infinite;
}
.blog-cta-lines-l path:nth-child(2),
.blog-cta-lines-r path:nth-child(2) {
  animation-delay: 0.12s;
}
.blog-cta-lines-l path:nth-child(3),
.blog-cta-lines-r path:nth-child(3) {
  animation-delay: 0.24s;
}
.blog-cta-lines-l path:nth-child(4),
.blog-cta-lines-r path:nth-child(4) {
  animation-delay: 0.36s;
}
.blog-cta-spark-a {
  transform-origin: 50% 50%;
  animation: blog-cta-spark 2.4s ease-in-out infinite;
}
.blog-cta-spark-b {
  transform-origin: 50% 50%;
  animation: blog-cta-spark 2.8s ease-in-out infinite 0.4s;
}
.blog-cta-spark-c {
  transform-origin: 50% 50%;
  animation: blog-cta-spark 2.2s ease-in-out infinite 0.8s;
}
.blog-cta:hover .blog-cta-left {
  animation-duration: 2.2s;
}
.blog-cta:hover .blog-cta-right {
  animation-duration: 2.2s;
}
.blog-cta:hover .blog-cta-float {
  animation-duration: 1.8s;
}
@keyframes blog-cta-page-l {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-3.5deg);
  }
}
@keyframes blog-cta-page-r {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(3.5deg);
  }
}
@keyframes blog-cta-ribbon {
  0%,
  100% {
    transform: rotate(0deg) translateY(0);
  }
  50% {
    transform: rotate(6deg) translateY(1px);
  }
}
@keyframes blog-cta-float {
  0%,
  100% {
    transform: translateY(0) rotate(8deg);
  }
  50% {
    transform: translateY(-3px) rotate(14deg);
  }
}
@keyframes blog-cta-shadow {
  0%,
  100% {
    transform: scaleX(1);
    opacity: 0.14;
  }
  50% {
    transform: scaleX(1.08);
    opacity: 0.1;
  }
}
@keyframes blog-cta-lines {
  0%,
  100% {
    stroke-dashoffset: 0;
    opacity: 0.4;
  }
  50% {
    stroke-dashoffset: 4;
    opacity: 0.7;
  }
}
@keyframes blog-cta-spark {
  0%,
  100% {
    transform: scale(0.65);
    opacity: 0.35;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .blog-cta-left,
  .blog-cta-right,
  .blog-cta-ribbon,
  .blog-cta-float,
  .blog-cta-shadow,
  .blog-cta-lines-l path,
  .blog-cta-lines-r path,
  .blog-cta-spark-a,
  .blog-cta-spark-b,
  .blog-cta-spark-c {
    animation: none !important;
  }
  .blog-cta::before {
    display: none;
  }
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.18s,
    box-shadow 0.18s,
    border-color 0.18s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 48px -30px rgba(11, 16, 32, 0.42);
  border-color: #cfe0f5;
}
.blog-cover {
  height: 148px;
  background-color: var(--cc, #2f6bff);
  background-image: linear-gradient(
    135deg,
    color-mix(in srgb, var(--cc, #2f6bff) 72%, #fff),
    var(--cc, #2f6bff)
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  position: relative;
}
.blog-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11, 16, 32, 0.22));
  pointer-events: none;
}
.blog-cat {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.94);
  color: var(--cc);
  font-size: var(--mypr-font-caption);
  font-weight: 800;
  padding: 4px 11px;
  border-radius: 999px;
}
.blog-body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 18px 18px 20px;
  flex: 1;
}
.blog-body h3 {
  font-size: var(--mypr-font-body);
  font-weight: 800;
  line-height: 1.32;
  color: var(--ink);
}
.blog-body p {
  font-size: var(--mypr-font-label);
  line-height: 1.55;
  color: var(--muted);
}
.blog-meta {
  margin-top: auto;
  padding-top: 6px;
  font-size: var(--mypr-font-caption);
  font-weight: 700;
  color: var(--muted-2);
}
.blog-meta .rt-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
.blog-meta .rt-book {
  flex: none;
  display: block;
  opacity: 0.9;
}
@media (max-width: 860px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}


/* CTA — full-bleed blue band; copy + art on top; store badges bottom */
.cta {
  padding: 0;
  margin: 0;
  width: 100%;
}
.cta-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 56px);
  background:
    radial-gradient(60% 100% at 50% 0%, rgba(255, 255, 255, 0.18), transparent 60%),
    linear-gradient(140deg, var(--cyan), var(--blue) 55%, var(--azure-ink));
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: none;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-areas:
    "copy art"
    "trust trust";
  align-items: center;
  column-gap: clamp(24px, 4vw, 48px);
  row-gap: clamp(22px, 3.5vw, 36px);
  text-align: start;
}
.cta-copy {
  grid-area: copy;
  min-width: 0;
}
.cta-art {
  grid-area: art;
}
.cta-trust {
  grid-area: trust;
}
.cta-copy .brand-lg,
.brand-lg {
  font-size: var(--mypr-font-heading-lg);
  margin-bottom: 18px;
  display: inline-flex;
}
.brand-lg .brand-mark {
  width: 51px;
  height: 51px;
}
.brand-lg .my {
  color: #fff;
}
.brand-lg .pr {
  color: #cfeeff;
}
.cta-inner h2,
.cta-copy h2 {
  font-size: var(--mypr-font-fluid-page-title);
  font-weight: 900;
  margin-bottom: 12px;
  text-wrap: balance;
}
.cta-inner p,
.cta-copy p {
  font-size: var(--mypr-font-body-lg);
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.92);
  max-width: 40ch;
}
.cta-art {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  pointer-events: none;
  direction: ltr;
}
.cta-illus {
  width: 100%;
  max-width: 460px;
  height: auto;
  direction: ltr;
  filter: drop-shadow(0 26px 36px rgba(4, 16, 40, 0.4));
}

@media (max-width: 820px) {
  .cta-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "art"
      "copy"
      "trust";
    text-align: center;
    padding-inline: clamp(18px, 4vw, 24px);
    row-gap: clamp(18px, 3vw, 28px);
  }
  .cta-copy p {
    margin-inline: auto;
  }
  .cta-illus {
    max-width: 300px;
  }
}

/* === cta.css === */
/* CTA — sharp broadcast monitor + speech waves + LIVE flash + RSS news stack
   6s cycle · opacity/transform only · no filter thrash */

.cta-inner {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  grid-template-areas:
    "copy art"
    "trust trust";
  align-items: center;
  column-gap: clamp(20px, 3.5vw, 44px);
  row-gap: clamp(22px, 3.5vw, 36px);
  text-align: start;
  /* full-bleed shell; horizontal inset only for content readability */
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  padding-inline: clamp(20px, 5vw, 56px);
}

.cta-copy {
  grid-area: copy;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cta-art {
  grid-area: art;
}
.cta-trust {
  grid-area: trust;
}
.cta-copy .brand-lg {
  display: inline-block;
}
.cta-copy h2 {
  text-wrap: balance;
}
.cta-copy p {
  max-width: 40ch;
  margin-bottom: 0;
}
.cta-primary {
  margin-top: 24px;
}
.cta-note {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--mypr-font-caption);
}
@media (max-width: 820px) {
  .cta-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "art"
      "copy"
      "trust";
  }
  .cta-copy {
    align-items: center;
    text-align: center;
  }
  .cta-copy p {
    margin-inline: auto;
  }
}

.cta-art {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  pointer-events: none;
  position: relative;
  direction: ltr;
}

/* Html wraps the SVG in a flex item. Let that wrapper occupy the art column so
   the fluid SVG width resolves against the available desktop space. */
.cta-art-frame {
  display: flex;
  width: 100%;
  justify-content: center;
}

.cta-illus {
  --cta-cycle: 6s;
  /* Keep the broadcast UI substantial on wide screens without crowding the copy.
     The mobile media query below retains its compact 300px presentation. */
  width: min(100%, clamp(420px, 38vw, 660px));
  max-width: none;
  height: auto;
  overflow: visible;
  direction: ltr;
  filter: drop-shadow(0 26px 36px rgba(4, 16, 40, 0.4));
}

.cta-illus .cta-glow {
  transform-box: fill-box;
  transform-origin: center;
  animation: cta-glow var(--cta-cycle) ease-in-out infinite;
}

.cta-illus .cta-panel {
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: cta-panel var(--cta-cycle) ease-in-out infinite;
}

/* On-glass RSS rail (same TV) — fades in as a broadcast package */
.cta-illus .cta-news-panel {
  opacity: 0;
  animation: cta-news-panel var(--cta-cycle) cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
.cta-illus .cta-news-card {
  opacity: 0;
}
.cta-illus .cta-nc0 {
  animation: cta-news-card var(--cta-cycle) ease-out infinite;
}
.cta-illus .cta-nc1 {
  animation: cta-news-card var(--cta-cycle) ease-out infinite;
  animation-delay: 0.1s;
}
.cta-illus .cta-nc2 {
  animation: cta-news-card var(--cta-cycle) ease-out infinite;
  animation-delay: 0.2s;
}

/* Key light */
.cta-illus .cta-spot {
  transform-box: fill-box;
  transform-origin: center;
  animation: cta-spot var(--cta-cycle) ease-in-out infinite;
  mix-blend-mode: screen;
}
.cta-illus .cta-spot-core {
  transform-box: fill-box;
  transform-origin: center;
  animation: cta-spot-core var(--cta-cycle) ease-in-out infinite;
  mix-blend-mode: screen;
}

.cta-illus .cta-beam {
  animation: cta-beam var(--cta-cycle) ease-in-out infinite;
}
.cta-illus .cta-ceil-wash {
  animation: cta-ceil var(--cta-cycle) ease-in-out infinite;
}

.cta-illus .cta-talent {
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: cta-talent var(--cta-cycle) ease-in-out infinite;
}

/* Speech waves — push outward into open air (not glued to the head) */
.cta-illus .cta-wave {
  transform-box: fill-box;
  transform-origin: left center;
  opacity: 0;
}
.cta-illus .cta-w1 {
  animation: cta-wave 0.95s ease-out infinite;
}
.cta-illus .cta-w2 {
  animation: cta-wave 0.95s ease-out infinite;
  animation-delay: 0.14s;
}
.cta-illus .cta-w3 {
  animation: cta-wave 0.95s ease-out infinite;
  animation-delay: 0.28s;
}
.cta-illus .cta-w4 {
  animation: cta-wave 0.95s ease-out infinite;
  animation-delay: 0.42s;
}

/* LIVE — whole pill flashes hard */
.cta-illus .cta-live {
  transform-box: fill-box;
  transform-origin: center;
  animation: cta-live-flash 1.05s ease-in-out infinite;
}
.cta-illus .cta-live-pill {
  transform-box: fill-box;
  transform-origin: center;
  animation: cta-live-pill 1.05s ease-in-out infinite;
}
.cta-illus .cta-live-dot {
  transform-box: fill-box;
  transform-origin: center;
  animation: cta-live-dot 0.75s ease-in-out infinite;
}
.cta-illus .cta-live-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: cta-live-ring 0.9s ease-out infinite;
}

/* BREAKING punch */
.cta-illus .cta-breaking {
  transform-box: fill-box;
  transform-origin: left center;
  opacity: 0;
  animation: cta-breaking var(--cta-cycle) cubic-bezier(0.34, 1.4, 0.64, 1) infinite;
}

.cta-illus .cta-hero-sheen {
  animation: cta-sheen var(--cta-cycle) ease-in-out infinite;
}

/* Lower-third + headlines */
.cta-illus .cta-lower {
  opacity: 0;
  animation: cta-lower var(--cta-cycle) cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
.cta-illus .cta-hl {
  transform-box: fill-box;
  transform-origin: left center;
  animation: cta-hl var(--cta-cycle) cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
.cta-illus .cta-hl-1 {
  animation-delay: 0s;
}
.cta-illus .cta-hl-2 {
  animation-delay: 0.07s;
}

/* Outlets */
.cta-illus .cta-outlet {
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  filter: drop-shadow(0 8px 14px rgba(4, 16, 40, 0.3));
}
.cta-illus .cta-o1 {
  animation: cta-o1 var(--cta-cycle) cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
.cta-illus .cta-o2 {
  animation: cta-o2 var(--cta-cycle) cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
.cta-illus .cta-o3 {
  animation: cta-o3 var(--cta-cycle) cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
.cta-illus .cta-o4 {
  animation: cta-o4 var(--cta-cycle) cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.cta-illus .cta-link {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  opacity: 0;
  animation: cta-link var(--cta-cycle) ease-out infinite;
}
.cta-illus .cta-link-1 {
  animation-delay: 0.16s;
}
.cta-illus .cta-link-2 {
  animation-delay: 0.22s;
}
.cta-illus .cta-link-3 {
  animation-delay: 0.28s;
}
.cta-illus .cta-link-4 {
  animation-delay: 0.34s;
}

.cta-illus .cta-stamp {
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  filter: drop-shadow(0 8px 12px rgba(4, 16, 40, 0.3));
  animation: cta-stamp var(--cta-cycle) cubic-bezier(0.34, 1.35, 0.64, 1) infinite;
}
.cta-illus .cta-stamp-check {
  stroke-dasharray: 16;
  stroke-dashoffset: 16;
  animation: cta-check var(--cta-cycle) ease-out infinite;
}

/* ── Keyframes ── */

@keyframes cta-panel {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes cta-glow {
  0%,
  100% {
    opacity: 0.08;
  }
  50% {
    opacity: 0.14;
  }
}
@keyframes cta-news-panel {
  0%,
  8% {
    opacity: 0;
  }
  20%,
  82% {
    opacity: 1;
  }
  92%,
  100% {
    opacity: 0.92;
  }
}
@keyframes cta-news-card {
  0%,
  10% {
    opacity: 0;
  }
  22%,
  80% {
    opacity: 1;
  }
  90%,
  100% {
    opacity: 0.92;
  }
}
@keyframes cta-spot {
  0%,
  100% {
    opacity: 0.82;
    transform: scale(0.97);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}
@keyframes cta-spot-core {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.08);
  }
}
@keyframes cta-beam {
  0%,
  100% {
    opacity: 0.12;
  }
  50% {
    opacity: 0.2;
  }
}
@keyframes cta-ceil {
  0%,
  100% {
    opacity: 0.12;
  }
  50% {
    opacity: 0.2;
  }
}
@keyframes cta-talent {
  0%,
  100% {
    transform: translate3d(0, 1px, 0);
  }
  50% {
    transform: translate3d(0, 0, 0);
  }
}
/* Expanding talk arcs — travel right into studio air */
@keyframes cta-wave {
  0% {
    opacity: 0;
    transform: translateX(-2px) scale(0.5);
  }
  14% {
    opacity: 0.95;
    transform: translateX(0) scale(0.82);
  }
  48% {
    opacity: 0.55;
    transform: translateX(8px) scale(1.08);
  }
  100% {
    opacity: 0;
    transform: translateX(16px) scale(1.32);
  }
}
/* Hard LIVE flash */
@keyframes cta-live-flash {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  40% {
    opacity: 1;
    transform: scale(1.04);
  }
  50% {
    opacity: 0.55;
    transform: scale(0.96);
  }
  60% {
    opacity: 1;
    transform: scale(1.06);
  }
  70% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes cta-live-pill {
  0%,
  100% {
    fill: #ff4d2e;
  }
  50% {
    fill: #ff6a4a;
  }
}
@keyframes cta-live-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}
@keyframes cta-live-ring {
  0% {
    transform: scale(0.55);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}
@keyframes cta-breaking {
  0%,
  8% {
    opacity: 0;
    transform: scale(0.75) translateX(-6px);
  }
  16% {
    opacity: 1;
    transform: scale(1.06) translateX(0);
  }
  24%,
  78% {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
  88%,
  100% {
    opacity: 0.85;
    transform: scale(1) translateX(0);
  }
}
@keyframes cta-sheen {
  0%,
  14% {
    transform: translateX(-20px);
    opacity: 0;
  }
  28% {
    transform: translateX(70px);
    opacity: 0.7;
  }
  40%,
  100% {
    transform: translateX(240px);
    opacity: 0;
  }
}
@keyframes cta-lower {
  0%,
  6% {
    opacity: 0;
    transform: translateY(8px);
  }
  16%,
  80% {
    opacity: 1;
    transform: translateY(0);
  }
  90%,
  100% {
    opacity: 0.9;
    transform: translateY(0);
  }
}
@keyframes cta-hl {
  0%,
  10% {
    opacity: 0;
    transform: scaleX(0.1);
  }
  20%,
  80% {
    opacity: 1;
    transform: scaleX(1);
  }
  90%,
  100% {
    opacity: 0.8;
    transform: scaleX(1);
  }
}
@keyframes cta-up {
  0%,
  14% {
    opacity: 0;
    transform: translateY(3px);
  }
  24%,
  80% {
    opacity: 1;
    transform: translateY(0);
  }
  90%,
  100% {
    opacity: 0.75;
    transform: translateY(0);
  }
}
@keyframes cta-o1 {
  0%,
  12% {
    opacity: 0;
    transform: translate(-12px, -8px) scale(0.75);
  }
  26%,
  80% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  90%,
  100% {
    opacity: 0.75;
    transform: translate(0, 0) scale(0.98);
  }
}
@keyframes cta-o2 {
  0%,
  16% {
    opacity: 0;
    transform: translate(12px, -8px) scale(0.75);
  }
  30%,
  80% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  90%,
  100% {
    opacity: 0.75;
    transform: translate(0, 0) scale(0.98);
  }
}
@keyframes cta-o3 {
  0%,
  20% {
    opacity: 0;
    transform: translate(-10px, 10px) scale(0.75);
  }
  34%,
  80% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  90%,
  100% {
    opacity: 0.75;
    transform: translate(0, 0) scale(0.98);
  }
}
@keyframes cta-o4 {
  0%,
  24% {
    opacity: 0;
    transform: translate(10px, 10px) scale(0.75);
  }
  38%,
  80% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  90%,
  100% {
    opacity: 0.75;
    transform: translate(0, 0) scale(0.98);
  }
}
@keyframes cta-link {
  0%,
  12% {
    opacity: 0;
    stroke-dashoffset: 80;
  }
  26% {
    opacity: 0.5;
    stroke-dashoffset: 0;
  }
  80% {
    opacity: 0.4;
    stroke-dashoffset: 0;
  }
  90%,
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}
@keyframes cta-stamp {
  0%,
  40% {
    opacity: 0;
    transform: scale(0.72) rotate(-5deg);
  }
  48% {
    opacity: 1;
    transform: scale(1.05) rotate(1deg);
  }
  54%,
  80% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
  90%,
  100% {
    opacity: 0.75;
    transform: scale(0.98) rotate(0);
  }
}
@keyframes cta-check {
  0%,
  44% {
    stroke-dashoffset: 16;
  }
  54%,
  100% {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 820px) {
  .cta-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "art"
      "copy"
      "trust";
    text-align: center;
    padding-inline: clamp(18px, 4vw, 24px);
  }
  .cta-copy p {
    margin-inline: auto;
  }
  .cta-illus {
    max-width: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-illus .cta-glow,
  .cta-illus .cta-panel,
  .cta-illus .cta-news-panel,
  .cta-illus .cta-news-card,
  .cta-illus .cta-news-live-dot,
  .cta-illus .cta-spot,
  .cta-illus .cta-spot-core,
  .cta-illus .cta-beam,
  .cta-illus .cta-ceil-wash,
  .cta-illus .cta-talent,
  .cta-illus .cta-wave,
  .cta-illus .cta-live,
  .cta-illus .cta-live-pill,
  .cta-illus .cta-live-dot,
  .cta-illus .cta-live-ring,
  .cta-illus .cta-breaking,
  .cta-illus .cta-hero-sheen,
  .cta-illus .cta-hl,
  .cta-illus .cta-lower,
  .cta-illus .cta-outlet,
  .cta-illus .cta-link,
  .cta-illus .cta-stamp,
  .cta-illus .cta-stamp-check {
    animation: none !important;
  }
  .cta-illus .cta-hl,
  .cta-illus .cta-lower,
  .cta-illus .cta-breaking,
  .cta-illus .cta-outlet,
  .cta-illus .cta-link,
  .cta-illus .cta-stamp,
  .cta-illus .cta-news-panel,
  .cta-illus .cta-news-card,
  .cta-illus .cta-wave {
    opacity: 1;
    transform: none;
    stroke-dashoffset: 0;
  }
  .cta-illus .cta-stamp-check {
    stroke-dashoffset: 0;
  }
  .cta-illus .cta-live-ring {
    opacity: 0.3;
  }
  .cta-illus .cta-spot {
    opacity: 0.95;
  }
  .cta-illus .cta-spot-core {
    opacity: 0.8;
  }
  .cta-illus .cta-live {
    opacity: 1;
  }
}

/* FOOTER (dark) — last paint on the page; no trailing ground bleed */
.foot {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.62);
  padding: clamp(46px, 6vw, 72px) clamp(18px, 4vw, 32px) 26px;
  margin: 0;
  width: 100%;
}
.foot-main {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.65fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.foot-brand {
  min-width: 0;
}
.foot-brand .brand {
  font-size: var(--mypr-font-heading-sm);
}
.foot-brand > p {
  margin-top: 14px;
  max-width: 52ch;
  font-size: var(--mypr-font-body-sm);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
}
/* Fixed 4 columns — no flex-wrap orphan (was dropping "Contact" alone) */
.foot-cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 32px);
  min-width: 0;
}
.foot-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-width: 0;
}
.foot-col h4 {
  margin: 0 0 3px;
  font-size: var(--mypr-font-caption);
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.42);
}
.foot-col a,
.foot-link-button {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  font-size: var(--mypr-font-body-sm);
  font-weight: 600;
  transition: color 0.18s;
}
.foot-link-button {
  align-self: flex-start;
  border: 0;
  padding: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}
.foot-col a:hover,
.foot-link-button:hover {
  color: #fff;
}
.foot-link-button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}
.foot-bar {
  max-width: 1140px;
  margin: clamp(34px, 4vw, 50px) auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: var(--mypr-font-label);
  color: rgba(255, 255, 255, 0.5);
}
.contact-dialog {
  position: relative;
  width: min(100%, 560px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: clamp(24px, 5vw, 38px);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 34px 90px -28px rgba(0, 0, 0, 0.68);
}
.contact-dialog::backdrop {
  background: rgba(5, 10, 24, 0.72);
  backdrop-filter: blur(8px);
}
.contact-dialog h2 {
  margin: 0;
  font-size: var(--mypr-font-heading);
}
.contact-dialog > p {
  margin: 10px 0 24px;
  color: var(--muted);
  line-height: 1.65;
}
.contact-close {
  position: absolute;
  inset-block-start: 14px;
  inset-inline-end: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  color: var(--ink);
  font: inherit;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.contact-form,
.contact-form label {
  display: grid;
  gap: 8px;
}
.contact-form {
  gap: 17px;
}
.contact-required-hint {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: var(--mypr-font-body-sm);
}
.contact-form label > span {
  font-size: var(--mypr-font-body-sm);
  font-weight: 750;
}
.contact-attachments {
  display: grid;
  gap: 8px;
  min-width: 0;
}
.contact-attachments-label {
  font-size: var(--mypr-font-body-sm);
  font-weight: 750;
}
.contact-file-preview {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(27, 196, 254, 0.22);
  border-color: var(--azure);
}
.contact-form input[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
  border-color: #b42318;
  background: #fff8f7;
}
.contact-field-hint,
.contact-field-error {
  font-size: var(--mypr-font-label);
  line-height: 1.45;
}
.contact-field-hint {
  color: var(--muted);
}
.contact-field-error {
  color: #b42318;
  font-weight: 650;
}
.contact-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.contact-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}
.contact-error {
  margin: 0;
  color: #b42318;
  font-weight: 650;
}
.contact-success {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding-block: 16px 4px;
  text-align: center;
}
.contact-success > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #e9f9ef;
  color: #137a3d;
  font-size: 28px;
}
@media (max-width: 900px) {
  .foot-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .foot-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 24px;
  }
}
@media (max-width: 480px) {
  .foot-cols {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mini-iPhone — layout + screen slot. Chassis paint is SVG (miniPhoneShell.tsx). */

.mini-iphone {
  position: relative;
  display: block;
  /* Prefer explicit width; avoid width:100% of shrink-wrap parents (carousel collapse). */
  width: min(300px, 100%);
  max-width: 300px;
  margin-inline: auto;
  aspect-ratio: 9 / 19.4;
  color: rgba(255, 255, 255, 0.92);
  filter: drop-shadow(0 22px 36px rgba(15, 23, 42, 0.38))
    drop-shadow(0 4px 10px rgba(15, 23, 42, 0.22));
  transform: perspective(900px) rotateY(-8deg) rotateX(4deg);
  transform-style: preserve-3d;
}

/* Vector shell sits on top of the HTML viewport (pointer-events none). */
.mini-iphone__shell {
  position: absolute;
  inset: 0;
  z-index: 12;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  color: rgba(255, 255, 255, 0.38);
}

.mini-iphone__titanium-svg {
  mix-blend-mode: soft-light;
}

/*
 * Screen content inset matches SVG frame hole (~14/390 ≈ 3.6%).
 * z-index under the shell rim (12) but content shows through the evenodd hole.
 */
.mini-iphone__viewport {
  position: absolute;
  z-index: 5;
  inset: 3.6% 3.6% 3.2% 3.6%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: clamp(18px, 11%, 42px);
  background: #f7f9fd;
}

.mini-iphone__status {
  position: relative;
  z-index: 15;
  display: flex;
  height: 34px;
  flex-shrink: 0;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 14px 3px;
  color: inherit;
  font-size: var(--mypr-font-micro);
  font-weight: 600;
  letter-spacing: -0.02em;
  pointer-events: none;
}

.mini-iphone__status-time {
  margin-left: 2px;
  font-variant-numeric: tabular-nums;
}

.mypr-status-icons {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: inherit;
}

.mypr-status-signal {
  width: 15px;
  height: 10px;
  display: block;
}

.mypr-status-wifi {
  width: 14px;
  height: 10px;
  display: block;
}

.mypr-status-battery {
  width: 18px;
  height: 10px;
  display: block;
  margin-left: 1px;
}

.mini-iphone__content {
  position: relative;
  z-index: 5;
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  overflow: hidden;
  background: #05080f;
}

/*
 * Squeeze stage: real product UI lays out at logical phone width (default 390),
 * then CSS-scales into the chassis hole so type/spacing match the live app.
 *
 * Geometry is always LTR (physical left). RTL page direction must not move the
 * 390px stage — otherwise scale origin keeps the mock outside the frame.
 */
.mini-iphone__content--squeezed {
  position: relative;
  display: block;
  overflow: hidden;
  background: #f7f9fd;
  pointer-events: auto;
  /* Contain absolutely pinned stage; avoid RTL reordering of the hole. */
  direction: ltr;
}

.mini-iphone__stage {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #f7f9fd;
  pointer-events: auto;
  user-select: none;
  /* RN-web screens use flex:1; stage must establish a definite height box. */
  min-height: 0;
  /* left/top set inline so transform-origin 0 0 is physical top-left of the hole */
  will-change: transform;
}

.mini-iphone__stage-screen {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  width: 100%;
  height: 100%;
}

.mini-iphone__stage-screen > * {
  flex: 1;
  min-height: 0;
  width: 100%;
}

/* Legacy direct children (if any) still fill the stage. */
.mini-iphone__stage > *:not(.mini-iphone__stage-screen) {
  flex: 1;
  min-height: 0;
  width: 100%;
}

/* Legacy HTML mini-app root (how panel / residual mu markup) */
.mini-iphone__content > .mu {
  flex: 1;
  min-height: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #f7f9fd;
  color: #0b1020;
  font-family:
    "SF Hebrew", "Heebo", "Assistant", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  pointer-events: auto;
  user-select: none;
}

.mini-iphone__content img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

/* Light app chrome: dark status glyphs on white-ish screens */
.mini-iphone--light {
  color: rgba(11, 16, 32, 0.88);
}
.mini-iphone--light .mini-iphone__content {
  background: #f7f9fd;
}
.mini-iphone--light .mini-iphone__shell {
  color: rgba(11, 16, 32, 0.22);
}
.mini-iphone--light .mini-iphone__home-svg {
  opacity: 0.22;
}

/* Flat override — showcase side-by-side */
.mini-iphone--flat {
  transform: none;
  filter: drop-shadow(0 22px 40px rgba(15, 23, 42, 0.38))
    drop-shadow(0 4px 12px rgba(15, 23, 42, 0.2));
}

/*
 * Carousel phones — no filter drop-shadow (stacks into a gray cloud when many
 * phones scroll + clip); plain shell omits glass/titanium wash.
 */
.mini-iphone--carousel,
.shot.shot-carousel .mini-iphone {
  filter: none;
}

/* Optional 3D on desktop when not forced flat */
@media (min-width: 901px) {
  .mini-iphone:not(.mini-iphone--flat) {
    transform: perspective(900px) rotateY(-8deg) rotateX(4deg);
  }
}

@media (max-width: 900px) {
  .mini-iphone {
    transform: none;
    max-width: min(300px, 72vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mini-iphone {
    transform: none;
  }
}


/* ── Store badges (under phones) ───────────────────────────────────────── */

.store-badges {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(22px, 3.5vw, 32px);
  padding-inline: 8px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px 16px 8px 14px;
  border-radius: 10px;
  background: #0b1020;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px -14px rgba(11, 16, 32, 0.55);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

.store-badge:hover {
  background: #141b32;
  box-shadow: 0 14px 28px -12px rgba(11, 16, 32, 0.6);
  transform: translateY(-1px);
}

.store-badge:active {
  transform: translateY(0);
}

.store-badge__logo {
  flex: none;
  width: 22px;
  height: 26px;
  color: #fff;
}

/* Clean multicolor Play triangle (webp) — object-fit keeps proportions */
.store-badge__logo--play {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
  object-position: center;
  /* kill any browser image filter / dark invert on dark badges */
  image-rendering: auto;
  -webkit-user-drag: none;
  user-select: none;
}

.store-badge__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
  gap: 1px;
}

.store-badge__sub {
  font-size: var(--mypr-font-micro);
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.78;
  text-transform: none;
}

.store-badge__main {
  font-size: var(--mypr-font-body);
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* RTL: badges keep LTR brand mark layout; copy still inherits page dir for sub when HE */
[dir="rtl"] .store-badge__text {
  align-items: flex-start;
}

@media (prefers-reduced-motion: reduce) {
  .store-badge {
    transition: none;
  }
  .store-badge:hover {
    transform: none;
  }
}

/* ── Mini-app UI (interactive screens inside the phone) ─────────────────── */

.mu-beat-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.mu-head {
  flex: none;
  padding: 6px 10px 8px;
  background: #fff;
  border-bottom: 1px solid #e6ecf5;
}

.mu-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  padding-inline: 2px;
}

.mu-title {
  font-size: var(--mypr-font-body);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0b1020;
}

.mu-title-chev {
  width: 7px;
  height: 7px;
  border-inline-end: 2px solid #8a94a9;
  border-bottom: 2px solid #8a94a9;
  transform: rotate(45deg);
  margin-inline-end: 4px;
  opacity: 0.7;
}

.mu-chips {
  display: flex;
  gap: 5px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.mu-chips::-webkit-scrollbar {
  display: none;
}

.mu-chip {
  flex: none;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid #d7e2f0;
  background: #fff;
  color: #59647b;
  font-size: var(--mypr-font-micro);
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s,
    transform 0.12s;
  white-space: nowrap;
}
.mu-chip:hover {
  border-color: #0b7cf0;
  color: #0b7cf0;
}
.mu-chip:active {
  transform: scale(0.96);
}

/* Active chip driven by sibling radio (CSS-only tabs) */
#mu-beat-all:checked ~ .mu-head .mu-chip[data-beat="all"],
#mu-beat-tech:checked ~ .mu-head .mu-chip[data-beat="tech"],
#mu-beat-business:checked ~ .mu-head .mu-chip[data-beat="business"],
#mu-beat-politics:checked ~ .mu-head .mu-chip[data-beat="politics"],
#mu-beat-health:checked ~ .mu-head .mu-chip[data-beat="health"] {
  background: linear-gradient(135deg, #1bc4fe, #0873ee);
  border-color: transparent;
  color: #fff;
}

/* Filter rows by beat */
#mu-beat-tech:checked ~ .mu-scroll .mu-row:not([data-beats~="tech"]),
#mu-beat-business:checked ~ .mu-scroll .mu-row:not([data-beats~="business"]),
#mu-beat-politics:checked ~ .mu-scroll .mu-row:not([data-beats~="politics"]),
#mu-beat-health:checked ~ .mu-scroll .mu-row:not([data-beats~="health"]) {
  display: none;
}

.mu-search {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 10px;
  background: #f0f4fa;
  border: 1px solid #e1eaf5;
}
.mu-search-ic {
  flex: none;
  width: 12px;
  height: 12px;
  border: 1.6px solid #8a94a9;
  border-radius: 50%;
  position: relative;
}
.mu-search-ic::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 1.6px;
  background: #8a94a9;
  border-radius: 1px;
  right: -3px;
  bottom: -1px;
  transform: rotate(45deg);
  transform-origin: left center;
}
.mu-search-input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font-size: var(--mypr-font-micro);
  font-weight: 600;
  color: #0b1020;
  outline: none;
}
.mu-search-input::placeholder {
  color: #8a94a9;
  font-weight: 500;
}

.mu-scroll {
  flex: 1;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  background: #f7f9fd;
  scrollbar-width: thin;
  scrollbar-color: #c7d0de transparent;
  pointer-events: auto;
}

.mu-list {
  display: flex;
  flex-direction: column;
  padding: 4px 0 12px;
}

.mu-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 9px 10px;
  border: 0;
  border-bottom: 1px solid #eef2f8;
  background: #fff;
  text-align: start;
  cursor: pointer;
  transition: background 0.12s;
  font: inherit;
  color: inherit;
}
.mu-row:hover,
.mu-row:focus-visible {
  background: #eef6ff;
  outline: none;
}
.mu-row:active {
  background: #e3f0ff;
}

.mu-avatar {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--av, #0b7cf0);
  color: #fff;
  font-size: var(--mypr-font-micro);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.mu-row-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.mu-row-name {
  font-size: var(--mypr-font-caption);
  font-weight: 800;
  color: #0b1020;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mu-row-meta {
  font-size: var(--mypr-font-art-xl);
  font-weight: 600;
  color: #8a94a9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mu-row-action {
  flex: none;
  font-size: var(--mypr-font-art-lg);
  font-weight: 700;
  color: #0b7cf0;
  opacity: 0.85;
}

/* News / home mini screen */
.mu-head--news {
  padding: 4px 10px 10px;
  background: linear-gradient(180deg, #f7f9fd 0%, #fff 100%);
  border-bottom: 0;
}

.mu-news-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.mu-bell {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #e6ecf5;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}
.mu-bell span {
  width: 12px;
  height: 12px;
  border: 1.5px solid #0b1020;
  border-radius: 50% 50% 40% 40%;
  border-bottom: 0;
  position: relative;
}
.mu-bell span::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 5px;
  height: 2px;
  background: #0b1020;
  border-radius: 1px;
  transform: translateX(-50%);
}

.mu-greet {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  line-height: 1.15;
}
.mu-greet-sub {
  font-size: var(--mypr-font-art-lg);
  font-weight: 600;
  color: #8a94a9;
}
.mu-greet-name {
  font-size: var(--mypr-font-label);
  font-weight: 800;
  color: #0b1020;
}

.mu-wire {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 10px;
  border-radius: 12px;
  background: #0b1020;
  color: #fff;
  margin-bottom: 8px;
  text-align: start;
}
.mu-wire-tag {
  font-size: var(--mypr-font-art-sm);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #ff4d2e;
}
.mu-wire-line {
  font-size: var(--mypr-font-micro);
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mu-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  width: 100%;
  padding: 12px 40px 12px 12px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #1bc4fe, #0873ee);
  color: #fff;
  text-align: start;
  cursor: pointer;
  box-shadow: 0 10px 22px -10px rgba(8, 115, 238, 0.65);
  transition:
    transform 0.12s,
    box-shadow 0.12s;
  font: inherit;
}
.mu-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px -10px rgba(8, 115, 238, 0.7);
}
.mu-cta:active {
  transform: translateY(0);
}
.mu-cta-title {
  font-size: var(--mypr-font-caption);
  font-weight: 800;
}
.mu-cta-sub {
  font-size: var(--mypr-font-art-lg);
  font-weight: 600;
  opacity: 0.9;
  line-height: 1.3;
}
.mu-cta-ic {
  position: absolute;
  inset-inline-end: 12px;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%);
}
.mu-cta-ic::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 2px;
  border: 1.5px solid #fff;
  border-left-width: 0;
  border-bottom-width: 0;
  /* LTR: chevron points end-forward (→) */
  transform: rotate(45deg);
}
/* RTL: icon sits on inline-end (left); flip so chevron points outward (←), not into the title */
.mu[dir='rtl'] .mu-cta-ic::before {
  transform: rotate(-135deg);
}

.mu-sec-label {
  padding: 10px 12px 4px;
  font-size: var(--mypr-font-micro);
  font-weight: 800;
  color: #8a94a9;
  letter-spacing: 0.04em;
  text-align: start;
}

.mu-pitches {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 8px 14px;
}

.mu-pitch {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e6ecf5;
  border-radius: 12px;
  background: #fff;
  text-align: start;
  cursor: pointer;
  transition:
    border-color 0.12s,
    box-shadow 0.12s,
    transform 0.12s;
  font: inherit;
  color: inherit;
  box-shadow: 0 4px 12px -10px rgba(11, 16, 32, 0.2);
}
.mu-pitch:hover {
  border-color: rgba(11, 124, 240, 0.35);
  box-shadow: 0 8px 18px -12px rgba(11, 124, 240, 0.4);
  transform: translateY(-1px);
}
.mu-pitch:active {
  transform: none;
}

.mu-pitch-status {
  font-size: var(--mypr-font-art-lg);
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 999px;
}
.mu-pitch-status--ready {
  background: #e8f9f0;
  color: #12b76a;
}
.mu-pitch-status--draft {
  background: #eef2f8;
  color: #59647b;
}
.mu-pitch-status--sent {
  background: #eaf4ff;
  color: #0b7cf0;
}
.mu-pitch-title {
  font-size: var(--mypr-font-micro);
  font-weight: 700;
  color: #0b1020;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mu-pitch-time {
  font-size: var(--mypr-font-art-lg);
  font-weight: 600;
  color: #8a94a9;
}

/* Live search filter (class toggled from LandingScreen.web.tsx) */
.mu-row.is-hidden {
  display: none !important;
}

.mu-row.is-pressed,
.mu-pitch.is-pressed,
.mu-cta.is-pressed {
  transform: scale(0.98);
}

/* ── Extra product screens (pitch / match / tracking / chats) ───────────── */

.mu-field-label {
  display: block;
  margin-top: 8px;
  font-size: var(--mypr-font-micro);
  font-weight: 800;
  color: #8a94a9;
  letter-spacing: 0.04em;
  text-align: start;
}
.mu-sub {
  display: block;
  margin-top: 4px;
  font-size: var(--mypr-font-micro);
  font-weight: 600;
  color: #59647b;
  text-align: start;
}

.mu-story-box {
  margin: 8px 10px 0;
  min-height: 120px;
  padding: 12px;
  border-radius: 14px;
  border: 1.5px solid #e6ecf5;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: start;
  box-shadow: 0 6px 16px -14px rgba(11, 16, 32, 0.35);
}
.mu-story-line {
  font-size: var(--mypr-font-caption);
  font-weight: 650;
  color: #0b1020;
  line-height: 1.4;
}
.mu-story-caret {
  width: 1.5px;
  height: 14px;
  background: #0b7cf0;
  border-radius: 1px;
  animation: mu-caret 1s steps(1) infinite;
}
@keyframes mu-caret {
  50% {
    opacity: 0;
  }
}

.mu-attach-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 10px 0;
}
.mu-attach-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: var(--mypr-font-micro);
  font-weight: 800;
  background: #eaf4ff;
  color: #0b7cf0;
}
.mu-attach-chip--doc {
  background: #fff7e8;
  color: #b54708;
}
.mu-hint {
  margin: 8px 12px 0;
  font-size: var(--mypr-font-micro);
  font-weight: 600;
  color: #8a94a9;
  text-align: start;
}
.mu-foot {
  padding: 10px 10px 14px;
  border-top: 1px solid #e6ecf5;
  background: #fbfcff;
}
.mu-primary {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 11px 14px;
  font: inherit;
  font-size: var(--mypr-font-caption);
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #1bc4fe, #0873ee);
  box-shadow: 0 10px 20px -12px rgba(8, 115, 238, 0.7);
  cursor: pointer;
}

.mu-match-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 10px 16px;
}
.mu-match-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e6ecf5;
  box-shadow: 0 6px 14px -12px rgba(11, 16, 32, 0.28);
}
.mu-score {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 36px;
}
.mu-score-n {
  font-size: var(--mypr-font-label);
  font-weight: 900;
  color: #0b7cf0;
  line-height: 1;
}
.mu-score-l {
  font-size: var(--mypr-font-art-sm);
  font-weight: 700;
  color: #8a94a9;
  margin-top: 2px;
}

.mu-track-card {
  margin: 8px 10px 0;
  padding: 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e6ecf5;
  box-shadow: 0 8px 18px -14px rgba(11, 16, 32, 0.3);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mu-track-card--dim {
  opacity: 0.78;
}
.mu-track-to {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mu-track-pitch {
  margin: 0;
  font-size: var(--mypr-font-micro);
  font-weight: 700;
  color: #0b1020;
  line-height: 1.35;
  text-align: start;
}
.mu-track-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.mu-track-step {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: var(--mypr-font-art-lg);
  font-weight: 800;
  background: #eef2f8;
  color: #8a94a9;
}
.mu-track-step i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
}
.mu-track-step--done {
  background: #eaf4ff;
  color: #0b7cf0;
}
.mu-track-step--done i {
  opacity: 1;
}
.mu-track-step--live {
  background: #e8f9f0;
  color: #12b76a;
}
.mu-track-step--live i {
  opacity: 1;
  box-shadow: 0 0 0 3px rgba(18, 183, 106, 0.22);
}

.mu-chat-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-bottom: 1px solid #eef2f8;
  background: transparent;
  text-align: start;
  cursor: pointer;
  font: inherit;
  color: inherit;
  position: relative;
}
.mu-chat-row:hover {
  background: #f5f8fc;
}
.mu-chat-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}
.mu-chat-time {
  font-size: var(--mypr-font-art-lg);
  font-weight: 700;
  color: #8a94a9;
  flex: none;
}
.mu-chat-preview {
  display: block;
  font-size: var(--mypr-font-micro);
  font-weight: 600;
  color: #59647b;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
.mu-chat-preview--you {
  color: #8a94a9;
}
.mu-chat-dot {
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0b7cf0;
  box-shadow: 0 0 0 3px rgba(11, 124, 240, 0.18);
}

/* ── Rating badge (wings + 5 stars) ─ */

.rating-badge {
  /* Always LTR: left wreath original, right wreath mirrored — never invert under [dir=rtl]. */
  direction: ltr;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  margin: 4px 0 14px;
  color: rgba(255, 255, 255, 0.92);
}
.rating-badge__wreath {
  flex: none;
  width: 28px;
  height: 64px;
  color: rgba(255, 255, 255, 0.82);
  overflow: visible;
  /* Left: slightly faster cycle */
  --wreath-shine-dur: 3.5s;
  --wreath-shine-delay: 0s;
}
.rating-badge__wreath--mirror {
  transform: scaleX(-1);
  /* Right: longer + phase offset so both sides mix bottom→up */
  --wreath-shine-dur: 4.2s;
  --wreath-shine-delay: -1.15s;
}
/* Foil band rides up through the masked leaf shapes (same feel as star foil). */
.rating-badge__wreath-shine-band {
  mix-blend-mode: soft-light;
  animation: rating-wreath-foil var(--wreath-shine-dur) linear infinite;
  animation-delay: var(--wreath-shine-delay);
  transform-box: fill-box;
  transform-origin: center bottom;
}
@keyframes rating-wreath-foil {
  from {
    transform: translateY(78px);
    opacity: 0.35;
  }
  12% {
    opacity: 0.95;
  }
  88% {
    opacity: 0.95;
  }
  to {
    transform: translateY(-42px);
    opacity: 0.35;
  }
}
.rating-badge__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 110px;
  text-align: center;
}
/*
 * Foil stars — CSS gradient + SVG mask (not SMIL).
 * SMIL <animate> on linearGradient does not start when the landing HTML is
 * injected with React dangerouslySetInnerHTML; this CSS path always runs.
 */
.rating-badge__stars {
  position: relative;
  display: block;
  width: 88px;
  height: 16px;
  flex: none;
  /* Gold foil band (same family as hero MYPR TIMES / features foil) */
  background-image: linear-gradient(
    105deg,
    #c47a0a 0%,
    #e8a317 32%,
    #f5c84a 42%,
    #fff8e8 50%,
    #fdb022 58%,
    #d97706 68%,
    #b45309 100%
  );
  background-size: 220% 100%;
  background-position: 100% 50%;
  animation: rating-star-foil 3.4s linear infinite;
  filter: drop-shadow(0 0 3px rgba(253, 176, 34, 0.45));
  /* Paint only where the white star paths sit */
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 132 24'%3E%3Cpath fill='%23fff' transform='translate(0 0)' d='M12 2.5 14.9 9l7.1.6-5.4 4.6 1.7 6.8L12 17.3 5.7 21l1.7-6.8L2 9.6 9.1 9 12 2.5Z'/%3E%3Cpath fill='%23fff' transform='translate(27 0)' d='M12 2.5 14.9 9l7.1.6-5.4 4.6 1.7 6.8L12 17.3 5.7 21l1.7-6.8L2 9.6 9.1 9 12 2.5Z'/%3E%3Cpath fill='%23fff' transform='translate(54 0)' d='M12 2.5 14.9 9l7.1.6-5.4 4.6 1.7 6.8L12 17.3 5.7 21l1.7-6.8L2 9.6 9.1 9 12 2.5Z'/%3E%3Cpath fill='%23fff' transform='translate(81 0)' d='M12 2.5 14.9 9l7.1.6-5.4 4.6 1.7 6.8L12 17.3 5.7 21l1.7-6.8L2 9.6 9.1 9 12 2.5Z'/%3E%3Cpath fill='%23fff' transform='translate(108 0)' d='M12 2.5 14.9 9l7.1.6-5.4 4.6 1.7 6.8L12 17.3 5.7 21l1.7-6.8L2 9.6 9.1 9 12 2.5Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 132 24'%3E%3Cpath fill='%23fff' transform='translate(0 0)' d='M12 2.5 14.9 9l7.1.6-5.4 4.6 1.7 6.8L12 17.3 5.7 21l1.7-6.8L2 9.6 9.1 9 12 2.5Z'/%3E%3Cpath fill='%23fff' transform='translate(27 0)' d='M12 2.5 14.9 9l7.1.6-5.4 4.6 1.7 6.8L12 17.3 5.7 21l1.7-6.8L2 9.6 9.1 9 12 2.5Z'/%3E%3Cpath fill='%23fff' transform='translate(54 0)' d='M12 2.5 14.9 9l7.1.6-5.4 4.6 1.7 6.8L12 17.3 5.7 21l1.7-6.8L2 9.6 9.1 9 12 2.5Z'/%3E%3Cpath fill='%23fff' transform='translate(81 0)' d='M12 2.5 14.9 9l7.1.6-5.4 4.6 1.7 6.8L12 17.3 5.7 21l1.7-6.8L2 9.6 9.1 9 12 2.5Z'/%3E%3Cpath fill='%23fff' transform='translate(108 0)' d='M12 2.5 14.9 9l7.1.6-5.4 4.6 1.7 6.8L12 17.3 5.7 21l1.7-6.8L2 9.6 9.1 9 12 2.5Z'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
/* SVG sits in the tree for layout/a11y; fill is invisible — paint is the CSS mask */
.rating-badge__stars-svg {
  display: block;
  width: 88px;
  height: 16px;
  overflow: visible;
  opacity: 0;
  pointer-events: none;
}
.rating-badge__star-fill {
  fill: #fff;
}
@keyframes rating-star-foil {
  from {
    background-position: 100% 50%;
  }
  to {
    background-position: 0% 50%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .rating-badge__stars {
    animation: none;
    background-image: none;
    background-color: #fdb022;
  }
  .rating-badge__wreath-shine-band {
    animation: none;
    opacity: 0;
  }
}
.rating-badge__title {
  font-size: var(--mypr-font-label);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
  /* Hebrew still shapes correctly; wing row alone is forced LTR. */
  unicode-bidi: plaintext;
}
.rating-badge__sub {
  font-size: var(--mypr-font-micro);
  font-weight: 600;
  unicode-bidi: plaintext;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.2;
}

/*
 * CTA trust row — Play | winged stars | App Store (dir=ltr).
 * Wings sit center; store badges close on either side. Button sits tight below.
 */
/*
 * CTA trust row — full-width bottom, centered between copy + art.
 * Play | winged stars | App Store (dir=ltr).
 */
.cta-trust {
  direction: ltr;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 4px 0 0;
}
.cta-trust .rating-badge {
  margin: 0;
  flex: none;
  color: rgba(255, 255, 255, 0.95);
}
.cta-trust .rating-badge__wreath {
  width: 26px;
  height: 58px;
  color: rgba(255, 255, 255, 0.9);
}
.cta-trust .rating-badge__center {
  min-width: 100px;
}
.cta-trust .store-badge {
  /* Equal CTA badges: brand copy must not change the button's frame. */
  flex: 0 0 180px;
  width: 180px;
  min-width: 180px;
  height: 60px;
  min-height: 60px;
  justify-content: center;
  padding: 8px 14px;
  background: #0b1020;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 28px -14px rgba(0, 0, 0, 0.55);
}
.cta-trust .store-badge__logo {
  width: 24px;
  height: 26px;
}
.cta-trust .store-badge__text {
  width: 108px;
  min-width: 0;
}
/* Isolate badge chrome as LTR (logo left); Hebrew sub uses dir=rtl in markup. */
.store-badge {
  direction: ltr;
  unicode-bidi: isolate;
}
.store-badge__sub[dir="rtl"] {
  direction: rtl;
  unicode-bidi: isolate;
  text-align: start;
}
.cta-trust .store-badge:hover {
  background: #141b32;
}
@media (max-width: 820px) {
  .cta-trust .rating-badge {
    display: inline-flex;
  }
}
@media (max-width: 520px) {
  /* Stack under wings; full-width touch targets with a centered logo+copy group (natural text width). */
  .cta-trust {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
  }
  .cta-trust .rating-badge {
    order: -1;
    align-self: center;
  }
  .cta-trust .store-badge {
    width: 100%;
    min-width: 0;
    flex: none;
    height: 56px;
    min-height: 56px;
    justify-content: center;
    gap: 12px;
    padding: 10px 20px;
    border-radius: 14px;
  }
  .cta-trust .store-badge__logo {
    width: 28px;
    height: 30px;
  }
  .cta-trust .store-badge__logo--play {
    width: 28px;
    height: 28px;
  }
  .cta-trust .store-badge__text {
    width: auto;
    flex: none;
    min-width: 0;
    align-items: flex-start;
  }
  .cta-trust .store-badge__sub {
    font-size: 11px;
    letter-spacing: 0;
  }
  .cta-trust .store-badge__main {
    font-size: 17px;
    letter-spacing: -0.02em;
  }
}

/* Showcase / standalone store row — full-width stack on small phones */
@media (max-width: 520px) {
  .store-badges {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
    padding-inline: 0;
  }
  .store-badges .store-badge {
    width: 100%;
    min-width: 0;
    justify-content: center;
    gap: 12px;
    height: 56px;
    min-height: 56px;
    padding: 10px 20px;
    border-radius: 14px;
  }
  .store-badges .store-badge__text {
    width: auto;
    flex: none;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mu-chip,
  .mu-row,
  .mu-cta,
  .mu-pitch,
  .trust-item,
  .mu-story-caret {
    transition: none;
    animation: none;
  }
}


/* === how.css === */
/* ═══════════════════════════════════════════════════════════════════════════
   MYPR landing — How it works: product-faithful animated flow
   Cycle 18s: story → pitch → WhatsApp. Paused until data-inview="1".
   Brand: cyan #1BC4FE · azure #0B7CF0 · navy #0B1020 · WA #25D366
   ═══════════════════════════════════════════════════════════════════════════ */

.how-panel {
  --how-cyan: #1bc4fe;
  --how-azure: #0b7cf0;
  --how-navy: #0b1020;
  --how-wa: #25d366;
  --how-wa-dark: #128c7e;
  --how-cycle: 18s;
  --how-grad: linear-gradient(135deg, var(--how-cyan), var(--how-azure));
  --how-ease: cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
}

/* Before inview: freeze readable end-state (no opacity-0 keyframe freeze).
   On inview, full cycle restarts from 0% so the reveal plays once in sight. */
.how-panel:not([data-inview="1"]) .how-step,
.how-panel:not([data-inview="1"]) .how-step-glow,
.how-panel:not([data-inview="1"]) .how-scene,
.how-panel:not([data-inview="1"]) .how-type-line,
.how-panel:not([data-inview="1"]) .how-cursor,
.how-panel:not([data-inview="1"]) .how-app-cta,
.how-panel:not([data-inview="1"]) .how-cta-shimmer,
.how-panel:not([data-inview="1"]) .how-media,
.how-panel:not([data-inview="1"]) .how-media-check,
.how-panel:not([data-inview="1"]) .how-tip,
.how-panel:not([data-inview="1"]) .how-prog-seg,
.how-panel:not([data-inview="1"]) .how-sparkle,
.how-panel:not([data-inview="1"]) .how-gen,
.how-panel:not([data-inview="1"]) .how-draft-card,
.how-panel:not([data-inview="1"]) .how-draft-h,
.how-panel:not([data-inview="1"]) .how-draft-b,
.how-panel:not([data-inview="1"]) .how-to-card,
.how-panel:not([data-inview="1"]) .how-wa-msg,
.how-panel:not([data-inview="1"]) .how-wa-pill,
.how-panel:not([data-inview="1"]) .how-ticks,
.how-panel:not([data-inview="1"]) .how-track,
.how-panel:not([data-inview="1"]) .how-wa-online-dot,
.how-panel:not([data-inview="1"]) .how-wa-online-ring,
.how-panel:not([data-inview="1"]) .how-wa-typing,
.how-panel:not([data-inview="1"]) .how-photo-lens,
.how-panel:not([data-inview="1"]) .how-photo-mount,
.how-panel:not([data-inview="1"]) .how-photo-shutter,
.how-panel:not([data-inview="1"]) .how-photo-frame,
.how-panel:not([data-inview="1"]) .how-folder-body,
.how-panel:not([data-inview="1"]) .how-ai-ready {
  animation: none !important;
}
.how-panel:not([data-inview="1"]) .how-type-line,
.how-panel:not([data-inview="1"]) .how-media,
.how-panel:not([data-inview="1"]) .how-media-check,
.how-panel:not([data-inview="1"]) .how-tip,
.how-panel:not([data-inview="1"]) .how-to-card,
.how-panel:not([data-inview="1"]) .how-draft-card,
.how-panel:not([data-inview="1"]) .how-draft-b,
.how-panel:not([data-inview="1"]) .how-wa-msg,
.how-panel:not([data-inview="1"]) .how-wa-pill,
.how-panel:not([data-inview="1"]) .how-track,
.how-panel:not([data-inview="1"]) .how-ai-ready {
  opacity: 1 !important;
  transform: none !important;
  max-width: 100% !important;
}
.how-panel:not([data-inview="1"]) .how-cursor,
.how-panel:not([data-inview="1"]) .how-gen,
.how-panel:not([data-inview="1"]) .how-wa-typing {
  display: none !important;
}
.how-panel:not([data-inview="1"]) .how-ticks {
  color: #53bdeb !important;
}

/* ── Step cards ─────────────────────────────────────────────────────────── */
.how-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2.2vw, 22px);
  position: relative;
  z-index: 1;
}
.how-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 255, 0.95) 100%);
  border-radius: 26px;
  padding: 18px 16px 16px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 18px 40px -28px rgba(11, 16, 32, 0.28),
    0 8px 20px -16px rgba(11, 124, 240, 0.12);
  overflow: hidden;
  isolation: isolate;
  animation: how-step-idle var(--how-cycle) var(--how-ease) infinite;
}
.how-step-1 {
  animation-name: how-step-1;
}
.how-step-2 {
  animation-name: how-step-2;
}
.how-step-3 {
  animation-name: how-step-3;
}
.how-step-4 {
  animation-name: how-step-3;
}

.how-step-glow {
  position: absolute;
  inset: 0;
  border-radius: 26px;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(110% 70% at 50% -10%, rgba(27, 196, 254, 0.22), transparent 58%),
    radial-gradient(80% 50% at 100% 100%, rgba(11, 124, 240, 0.08), transparent 50%);
  opacity: 0;
  animation: how-glow-idle var(--how-cycle) ease-in-out infinite;
}
.how-step-1 .how-step-glow {
  animation-name: how-glow-1;
}
.how-step-2 .how-step-glow {
  animation-name: how-glow-2;
}
.how-step-3 .how-step-glow {
  animation-name: how-glow-3;
}
.how-step-4 .how-step-glow {
  animation-name: how-glow-3;
}

.how-step-copy {
  position: relative;
  z-index: 1;
}
.how-step-copy h3 {
  font-size: var(--mypr-font-fluid-lead);
  font-weight: 800;
  margin: 0 0 5px;
  color: var(--ink, #0b1020);
  letter-spacing: -0.01em;
}
.how-step-copy p {
  margin: 0;
  color: var(--muted, #59647b);
  font-size: var(--mypr-font-label);
  line-height: 1.52;
}
.how-step-title-wa {
  display: flex;
  align-items: center;
  gap: 8px;
}
.how-step-title-wa span {
  min-width: 0;
}

/* ── Scene ──────────────────────────────────────────────────────────────── */
.how-scene {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin-top: 2px;
  border-radius: 22px;
  overflow: hidden;
  animation: how-scene-idle var(--how-cycle) var(--how-ease) infinite;
}

.how-product-shot {
  width: 100%;
  min-width: 0;
  margin: 0;
}

.how-product-shot .mini-iphone {
  width: min(228px, 100%);
  filter: drop-shadow(0 18px 30px rgba(15, 23, 42, 0.16));
}

.how-product-shot .mini-iphone__stage,
.how-product-shot .mini-iphone__content--squeezed {
  pointer-events: none;
}
.unified-whatsapp-mock {
  --how-cyan: #1bc4fe;
  --how-wa: #25d366;
  --how-cycle: 18s;
  --how-ease: cubic-bezier(0.22, 1, 0.36, 1);
}
.how-step-1 .how-scene {
  animation-name: how-scene-1;
}
.how-step-2 .how-scene {
  animation-name: how-scene-2;
}
.how-step-3 .how-scene {
  animation-name: how-scene-3;
}
.how-step-4 .how-scene {
  animation-name: how-scene-3;
}

.how-conversation-phone {
  display: flex;
  flex-direction: column;
}
.how-conversation-thread {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 22px 14px;
  background:
    radial-gradient(circle at 20% 0%, rgba(27, 196, 254, 0.12), transparent 46%),
    #edf3f9;
}
.how-conversation-bubble {
  display: block;
  width: 76%;
  height: 52px;
  border-radius: 16px 16px 16px 5px;
  background: #fff;
  box-shadow: 0 8px 20px -16px rgba(11, 16, 32, 0.45);
}
.how-conversation-bubble-out {
  align-self: flex-end;
  border-radius: 16px 16px 5px 16px;
  background: linear-gradient(135deg, var(--how-cyan), var(--azure));
}
.how-conversation-bubble-short {
  width: 54%;
}
.how-conversation-composer {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 10px 12px 14px;
  background: #fff;
}
.how-conversation-composer span {
  flex: 1;
  height: 34px;
  border-radius: 18px;
  background: var(--ground);
  border: 1px solid var(--line);
}
.how-conversation-composer b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: var(--azure);
}

/* ── Phone chassis ──────────────────────────────────────────────────────── */
.how-phone {
  position: relative;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  min-height: 300px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 20px 40px -18px rgba(11, 16, 32, 0.38),
    0 6px 16px -10px rgba(11, 124, 240, 0.14);
  font-family: inherit;
}
.how-phone-light {
  background: linear-gradient(180deg, #fcfcfe 0%, #f2f6fc 100%);
}
/*
 * All three How phones share one card-bottom CTA baseline on wide layouts.
 * Stakeholder annotation (he-download-button-alignment): the green/blue
 * primary actions must sit on the same horizontal line across the three cards.
 */
@media (min-width: 821px) {
  /* Shared subgrid rows keep every device on one baseline even when localized
     step copy wraps to a different number of lines. */
  .how-step {
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
    row-gap: 12px;
    min-height: 100%;
  }
  .how-scene {
    display: flex;
    align-items: stretch;
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
  }
  .how-product-shot {
    flex: 0 0 100%;
  }
  .how-step-1 .how-phone-light,
  .how-step-2 .how-phone-light,
  .how-step-3 .how-phone-light {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
  }
  .how-phone-light .how-phone-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
  }
  .how-phone-light .how-app-cta {
    margin-top: auto;
    flex: none;
  }
  /* Soft keyboards are decorative — keep them from pushing CTAs off the shared baseline. */
  .how-phone-light .how-kb {
    flex: none;
  }
}
.how-phone-wa {
  background: #0b141a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 20px 40px -16px rgba(11, 16, 32, 0.55),
    0 0 0 1px rgba(37, 211, 102, 0.14);
}
/* Dynamic Island pill — vector so it stays crisp on HiDPI */
.how-phone-notch {
  position: absolute;
  top: 6px;
  left: 50%;
  z-index: 4;
  width: 42px;
  height: 10px;
  transform: translateX(-50%);
  pointer-events: none;
  color: rgba(11, 16, 32, 0.18);
}
.how-phone-notch svg {
  display: block;
  width: 100%;
  height: 100%;
}
.how-phone-wa .how-phone-notch {
  display: none;
}

.how-phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 2px;
  font-size: var(--mypr-font-micro);
  font-weight: 700;
  color: rgba(11, 16, 32, 0.55);
}
.how-wa-status {
  color: rgba(255, 255, 255, 0.55);
}
/* Status glyphs: shared SVG in statusIcons.tsx */
.how-phone-status .mypr-status-icons {
  opacity: 0.55;
}
.how-wa-status .mypr-status-icons {
  opacity: 0.55;
}
.mypr-status-icons {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: inherit;
}
.mypr-status-signal {
  width: 14px;
  height: 9px;
  display: block;
}
.mypr-status-wifi {
  width: 12px;
  height: 9px;
  display: block;
}
.mypr-status-battery {
  width: 17px;
  height: 10px;
  display: block;
}

.how-phone-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 10px;
}
.how-nav-back {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: var(--how-azure);
  background: rgba(11, 124, 240, 0.1);
  flex: none;
}
.how-ico-back {
  width: 14px;
  height: 14px;
  display: block;
}
[dir="ltr"] .how-ico-back {
  transform: scaleX(-1);
}
.how-phone-brand {
  font-size: var(--mypr-font-art-lg);
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--how-azure);
  text-transform: uppercase;
  background: rgba(11, 124, 240, 0.1);
  padding: 3px 7px;
  border-radius: 6px;
  flex: none;
}
.how-phone-nav-t {
  font-size: var(--mypr-font-caption);
  font-weight: 800;
  color: var(--how-navy);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.how-step-pill {
  flex: none;
  font-size: var(--mypr-font-art-lg);
  font-weight: 800;
  color: var(--how-azure);
  background: rgba(11, 124, 240, 0.1);
  padding: 3px 7px;
  border-radius: 999px;
  white-space: nowrap;
}
.how-phone-body {
  padding: 0 11px 12px;
}

/* ── Step 1: story ──────────────────────────────────────────────────────── */
.how-prog {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
}
.how-prog-seg {
  flex: 1;
  height: 3px;
  border-radius: 999px;
  background: rgba(11, 124, 240, 0.12);
  transform-origin: inline-start center;
}
.how-step-1 .how-prog-1 {
  background: var(--how-grad);
  box-shadow: 0 0 8px rgba(27, 196, 254, 0.35);
  animation: how-prog-1 var(--how-cycle) ease-in-out infinite;
}
.how-step-1 .how-prog-2 {
  animation: how-prog-2 var(--how-cycle) ease-in-out infinite;
}
.how-step-1 .how-prog-3 {
  animation: how-prog-3 var(--how-cycle) ease-in-out infinite;
}

.how-field {
  margin-bottom: 8px;
}
.how-field-lab {
  display: block;
  font-size: var(--mypr-font-micro);
  font-weight: 700;
  color: var(--muted, #59647b);
  margin-bottom: 5px;
}
.how-field-box {
  position: relative;
  background: #fff;
  border: 1px solid rgba(11, 124, 240, 0.12);
  border-radius: 14px;
  padding: 10px 11px;
  min-height: 76px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 6px 16px -10px rgba(11, 16, 32, 0.1);
}
.how-field-hint {
  display: block;
  margin-top: 5px;
  font-size: var(--mypr-font-art-xl);
  font-weight: 600;
  color: rgba(89, 100, 123, 0.75);
}
.how-type-line {
  margin-bottom: 5px;
  overflow: hidden;
  white-space: nowrap;
  font-size: var(--mypr-font-caption);
  line-height: 1.35;
  font-weight: 600;
  color: #0b1020;
  max-width: 100%;
  opacity: 1;
}
.how-tl2 {
  color: #3a4458;
  font-weight: 500;
  font-size: var(--mypr-font-micro);
}
.how-tl3 {
  color: #4a5568;
  font-weight: 500;
  font-size: var(--mypr-font-micro);
}
.how-step-1 .how-tl1 {
  animation: how-type-1 var(--how-cycle) ease-in-out infinite;
}
.how-step-1 .how-tl2 {
  animation: how-type-2 var(--how-cycle) ease-in-out infinite;
}
.how-step-1 .how-tl3 {
  animation: how-type-3 var(--how-cycle) ease-in-out infinite;
}
.how-cursor {
  position: absolute;
  width: 1.5px;
  height: 13px;
  border-radius: 1px;
  background: var(--how-azure);
  top: 12px;
  inset-inline-start: 12px;
  opacity: 0;
  animation: how-cursor var(--how-cycle) steps(1) infinite;
}

/* Tip card — mirrors StoryStep accent tip */
.how-tip {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 9px;
  border-radius: 12px;
  background: rgba(11, 124, 240, 0.07);
  border: 1px solid rgba(11, 124, 240, 0.12);
  margin-bottom: 8px;
  animation: how-tip var(--how-cycle) var(--how-ease) infinite;
}
.how-tip-av {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--how-azure);
  box-shadow: 0 2px 6px -2px rgba(11, 124, 240, 0.3);
  position: relative;
  overflow: visible;
}
.how-tip-ic {
  width: 14px;
  height: 14px;
  display: block;
  overflow: visible;
}
/* Light tip — bubble soft-breathe + bulb glow + floating light orbs */
.how-tip-bub {
  transform-box: fill-box;
  transform-origin: center;
  animation: how-tip-bub 2.6s ease-in-out infinite;
}
.how-tip-bulb,
.how-tip-base {
  transform-box: fill-box;
  transform-origin: center;
  animation: how-tip-glow 2.6s ease-in-out infinite;
}
.how-tip-orb {
  transform-box: fill-box;
  transform-origin: center;
  animation: how-tip-orb 2.6s ease-in-out infinite;
}
.how-tip-orb-a {
  animation-delay: 0s;
}
.how-tip-orb-b {
  animation-delay: 0.28s;
}
.how-tip-orb-c {
  animation-delay: 0.55s;
}
.how-tip-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  font-size: var(--mypr-font-art-xl);
  line-height: 1.35;
  color: var(--muted, #59647b);
  font-weight: 500;
}
.how-tip-copy b {
  font-size: var(--mypr-font-micro);
  font-weight: 800;
  color: #0a5bbe;
}

.how-media-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}
.how-media {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px -8px rgba(11, 16, 32, 0.14);
  opacity: 0;
  transform: translateY(6px) scale(0.96);
  animation: how-media-idle var(--how-cycle) var(--how-ease) infinite;
}
.how-media-photo {
  border: 1px solid rgba(11, 124, 240, 0.12);
  background: linear-gradient(135deg, rgba(11, 124, 240, 0.08), rgba(255, 255, 255, 0.95));
  animation-name: how-media-1;
}
.how-media-doc {
  border: 1px solid rgba(253, 176, 34, 0.18);
  background: linear-gradient(135deg, rgba(253, 176, 34, 0.1), rgba(255, 255, 255, 0.95));
  animation-name: how-media-2;
}
.how-media .how-chip-svg {
  width: 16px;
  height: 16px;
  flex: none;
  display: block;
}
.how-media-photo .how-chip-svg {
  color: #0b7cf0;
}
.how-media-doc .how-chip-svg {
  color: #e8820a;
}
.how-media-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  flex: 1;
}
.how-media-name {
  font-size: var(--mypr-font-micro);
  font-weight: 700;
  color: var(--how-navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.how-media-tag {
  font-size: var(--mypr-font-art-lg);
  font-weight: 700;
  color: var(--muted, #59647b);
}
.how-media-check {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex: none;
  background: var(--how-grad);
  box-shadow: 0 0 0 2px rgba(11, 124, 240, 0.15);
  position: relative;
  opacity: 0;
}
.how-media-check::after {
  content: "";
  position: absolute;
  inset: 3px 2.5px 4px 3.5px;
  border: 1.5px solid #fff;
  border-top: 0;
  border-inline-start: 0;
  transform: rotate(45deg);
}
.how-step-1 .how-media-1 .how-media-check {
  animation: how-check-1 var(--how-cycle) ease-in-out infinite;
}
.how-step-1 .how-media-2 .how-media-check {
  animation: how-check-2 var(--how-cycle) ease-in-out infinite;
}
.how-step-1 .how-photo-lens {
  transform-origin: 7.2px 8.1px;
  animation: how-photo-lens var(--how-cycle) ease-in-out infinite;
}
.how-step-1 .how-photo-mount {
  animation: how-photo-mount var(--how-cycle) ease-in-out infinite;
}
.how-step-1 .how-photo-shutter {
  animation: how-photo-shutter var(--how-cycle) ease-in-out infinite;
}
.how-step-1 .how-photo-frame {
  animation: how-photo-frame var(--how-cycle) ease-in-out infinite;
}
.how-step-1 .how-folder-body {
  transform-origin: 10px 12px;
  animation: how-folder-bob var(--how-cycle) ease-in-out infinite;
}

.how-app-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  /* One primary-action spec across the story and WhatsApp mockups. */
  height: 44px;
  min-height: 44px;
  line-height: 1;
  border-radius: 11px;
  overflow: hidden;
  background: var(--how-grad);
  color: #fff;
  font-size: var(--mypr-font-caption);
  font-weight: 800;
  box-shadow: 0 8px 18px -10px rgba(8, 115, 238, 0.7);
}
.how-cta-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 65%
  );
  background-size: 200% 100%;
  animation: how-cta-shimmer var(--how-cycle) linear infinite;
  pointer-events: none;
}
.how-step-1 .how-app-cta {
  animation: how-app-cta var(--how-cycle) ease-in-out infinite;
}
.how-app-cta-ai {
  margin-top: 8px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 8px 18px -10px rgba(37, 211, 102, 0.55);
  animation: how-app-cta-ai var(--how-cycle) ease-in-out infinite;
}
.how-wa-logo-cta {
  width: 14px;
  height: 14px;
  flex: none;
  filter: brightness(0) invert(1);
}

/* ── Step 2: AI pitch ───────────────────────────────────────────────────── */
.how-phone-ai {
  position: relative;
  overflow: hidden;
}
.how-sparkle-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.how-sparkle-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  overflow: visible;
}
.how-sparkle {
  position: absolute;
  width: 14px;
  height: 14px;
  opacity: 0;
  filter: drop-shadow(0 0 4px rgba(27, 196, 254, 0.65));
  transform: scale(0.4) rotate(0deg);
  animation: how-sparkle-idle var(--how-cycle) ease-in-out infinite;
}
.how-sp-1 {
  top: 14%;
  inset-inline-start: 6%;
  width: 11px;
  height: 11px;
  animation-name: how-sp-1;
}
.how-sp-2 {
  top: 22%;
  inset-inline-end: 8%;
  width: 14px;
  height: 14px;
  animation-name: how-sp-2;
}
.how-sp-3 {
  top: 70%;
  inset-inline-start: 8%;
  width: 10px;
  height: 10px;
  animation-name: how-sp-3;
}
.how-sp-4 {
  top: 78%;
  inset-inline-end: 10%;
  width: 12px;
  height: 12px;
  animation-name: how-sp-4;
}
.how-sp-title {
  position: relative;
  inset: auto;
  width: 12px;
  height: 12px;
  flex: none;
  margin-inline-start: 4px;
  opacity: 0.85;
  transform: scale(1) rotate(8deg);
  animation-name: how-sp-title;
}
.how-ai-title {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.how-ai-title-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Brief generating bar before draft reveals */
.how-gen {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  animation: how-gen var(--how-cycle) ease-in-out infinite;
}
.how-gen-bar {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(11, 124, 240, 0.12),
    var(--how-cyan),
    var(--how-azure),
    rgba(11, 124, 240, 0.12)
  );
  background-size: 200% 100%;
  animation: how-gen-bar 1.1s linear infinite;
}
.how-gen-lab {
  font-size: var(--mypr-font-micro);
  font-weight: 800;
  color: var(--how-azure);
  flex: none;
}

.how-to-row {
  margin-bottom: 8px;
}
.how-to-lab {
  display: block;
  font-size: var(--mypr-font-art-xl);
  font-weight: 700;
  color: var(--muted, #59647b);
  margin-bottom: 4px;
}
.how-to-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(11, 124, 240, 0.1);
  box-shadow: 0 6px 14px -10px rgba(11, 16, 32, 0.12);
  animation: how-to-card var(--how-cycle) var(--how-ease) infinite;
}
.how-to-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  font-size: var(--mypr-font-caption);
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #e84b8a, #c0266a);
  box-shadow: 0 0 0 2px rgba(232, 75, 138, 0.2);
}
.how-to-id {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.how-to-name {
  font-size: var(--mypr-font-caption);
  font-weight: 800;
  color: var(--how-navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.how-to-meta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: var(--mypr-font-art-xl);
  font-weight: 600;
  color: var(--muted, #59647b);
}
.how-outlet-logo-light {
  filter: none;
  opacity: 1;
  height: 11px;
  max-width: 48px;
}
.how-to-beat {
  font-size: var(--mypr-font-art-xl);
  font-weight: 600;
  color: rgba(89, 100, 123, 0.8);
}
.how-draft-card {
  background: #fff;
  border: 1px solid rgba(11, 124, 240, 0.08);
  border-radius: 14px;
  padding: 10px 11px 11px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 10px 22px -14px rgba(11, 16, 32, 0.16);
  animation: how-draft var(--how-cycle) var(--how-ease) infinite;
}
.how-draft-lab {
  font-size: var(--mypr-font-art-lg);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(89, 100, 123, 0.7);
  margin-bottom: 3px;
}
.how-draft-h {
  font-size: var(--mypr-font-caption);
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 8px;
  background-image: linear-gradient(
    105deg,
    #0b1020 0%,
    #0b1020 38%,
    #1bc4fe 46%,
    #ffffff 50%,
    #0b7cf0 54%,
    #0b1020 62%,
    #0b1020 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: how-foil 3.2s linear infinite;
}
.how-draft-b {
  font-size: var(--mypr-font-micro);
  font-weight: 500;
  color: #1a2233;
  line-height: 1.45;
  margin-bottom: 10px;
  animation: how-draft-b var(--how-cycle) ease-in-out infinite;
}
.how-draft-foot {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}
.how-angle-chip {
  align-self: flex-start;
  font-size: var(--mypr-font-art-xl);
  font-weight: 800;
  color: var(--how-azure);
  background: rgba(11, 124, 240, 0.1);
  padding: 3px 8px;
  border-radius: 999px;
}
.how-ai-ready {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: var(--mypr-font-micro);
  font-weight: 800;
  color: #0fa968;
  animation: how-ai-ready var(--how-cycle) ease-in-out infinite;
}
.how-ai-ready::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #12b76a;
  box-shadow: 0 0 0 3px rgba(18, 183, 106, 0.2);
}

/* ── Step 3: WhatsApp ───────────────────────────────────────────────────── */
.how-wa-header {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 8px 8px;
  background: linear-gradient(180deg, #1f2c34, #1a252c);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}
.how-wa-back {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: rgba(233, 237, 239, 0.75);
  flex: none;
}
.how-wa-back .how-ico-back {
  width: 14px;
  height: 14px;
}
[dir="ltr"] .how-wa-back .how-ico-back {
  transform: none;
}
[dir="rtl"] .how-wa-back .how-ico-back {
  transform: scaleX(-1);
}
.how-wa-av-wrap {
  position: relative;
  flex: none;
  width: 30px;
  height: 30px;
}
.how-wa-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: var(--mypr-font-caption);
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #e84b8a, #c0266a);
}
.how-wa-online-ring {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1.5px solid var(--how-wa);
  opacity: 0;
  animation: how-wa-online-ring var(--how-cycle) ease-in-out infinite;
}
.how-wa-id {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.how-wa-name {
  font-size: var(--mypr-font-caption);
  font-weight: 700;
  color: #e9edef;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.how-wa-meta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--mypr-font-art-xl);
  font-weight: 600;
  color: rgba(233, 237, 239, 0.55);
}
.how-wa-online-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--how-wa);
  animation: how-wa-online var(--how-cycle) ease-in-out infinite;
}
.how-wa-online-lab {
  font-size: var(--mypr-font-art-xl);
  font-weight: 600;
  color: rgba(233, 237, 239, 0.55);
}
.how-wa-meta-dot {
  opacity: 0.4;
}
.how-wa-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(233, 237, 239, 0.7);
  flex: none;
  padding-inline-end: 2px;
}
.how-ico-act {
  width: 16px;
  height: 16px;
  display: block;
}
.how-wa-logo {
  width: 16px;
  height: 16px;
  display: block;
  flex: none;
}
.how-wa-logo-via {
  width: 12px;
  height: 12px;
}
.how-wa-logo-title {
  width: 18px;
  height: 18px;
  flex: none;
}
.how-outlet-logo {
  height: 12px;
  width: auto;
  max-width: 52px;
  object-fit: contain;
  object-position: start center;
  display: inline-block;
  vertical-align: middle;
  filter: brightness(1.15) contrast(1.05);
  opacity: 0.95;
}

.how-wa-thread {
  position: relative;
  padding: 8px 8px 6px;
  min-height: 168px;
  background-color: #0b141a;
  background-image:
    radial-gradient(ellipse at 18% 0%, rgba(37, 211, 102, 0.1), transparent 50%),
    radial-gradient(ellipse at 90% 100%, rgba(11, 124, 240, 0.06), transparent 45%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='.028'%3E%3Ccircle cx='6' cy='8' r='1.2'/%3E%3Ccircle cx='28' cy='22' r='1'/%3E%3Ccircle cx='48' cy='10' r='1.1'/%3E%3Ccircle cx='18' cy='40' r='.9'/%3E%3Ccircle cx='42' cy='48' r='1.2'/%3E%3Cpath d='M10 30c2-4 6-3 7 1M35 35c3-5 8-2 6 3' stroke='%23ffffff' stroke-opacity='.03' fill='none' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E");
}
.how-wa-day {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.how-wa-day span {
  font-size: var(--mypr-font-art-xl);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(233, 237, 239, 0.55);
  background: rgba(17, 27, 33, 0.85);
  padding: 3px 10px;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Wrapper only — bubble chrome comes from the shared MessageBubble UI. */
.how-wa-msg {
  max-width: 92%;
  margin-bottom: 7px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
/* Physical WA sides: out right, in left — independent of page RTL */
.how-wa-out {
  margin-left: auto;
  margin-right: 0;
  align-items: flex-end;
  /* Keep the sent pitch readable throughout the loop; only the reply changes state. */
  opacity: 1;
  transform: none;
  animation: none;
}
.how-wa-in {
  margin-right: auto;
  margin-left: 0;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  animation: how-wa-in var(--how-cycle) var(--how-ease) infinite;
}
.how-wa-via {
  display: none !important; /* removed MYPR WhatsApp label */
  align-items: center;
  gap: 4px;
  font-size: var(--mypr-font-art-lg);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--how-wa, #25d366);
  margin-bottom: 0;
  text-transform: uppercase;
}
.how-ticks {
  display: inline-flex;
  color: rgba(233, 237, 239, 0.45);
  width: 14px;
  height: 10px;
  animation: how-ticks var(--how-cycle) ease-in-out infinite;
}
.how-ticks svg {
  width: 14px;
  height: 10px;
  display: block;
}

.how-wa-status-row {
  display: flex;
  gap: 5px;
  justify-content: flex-end;
  margin-bottom: 7px;
  flex-wrap: wrap;
  direction: ltr;
}
.how-wa-pill {
  font-size: var(--mypr-font-art-xl);
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.9);
}
.how-wa-pill-del {
  color: rgba(233, 237, 239, 0.75);
  background: rgba(255, 255, 255, 0.08);
  animation: how-wa-pill-del var(--how-cycle) ease-in-out infinite;
}
.how-wa-pill-read {
  color: #53bdeb;
  background: rgba(83, 189, 235, 0.14);
  animation: how-wa-pill-read var(--how-cycle) ease-in-out infinite;
}

/* Typing indicator before reply */
.how-wa-typing {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(4px);
  animation: how-wa-typing var(--how-cycle) ease-in-out infinite;
}
.how-wa-typing-bubble {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #1f2c34;
  padding: 8px 10px;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.how-wa-typing-bubble i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(233, 237, 239, 0.45);
  animation: how-type-dot 1s ease-in-out infinite;
}
.how-wa-typing-bubble i:nth-child(2) {
  animation-delay: 0.15s;
}
.how-wa-typing-bubble i:nth-child(3) {
  animation-delay: 0.3s;
}
.how-wa-typing-lab {
  font-size: var(--mypr-font-art-xl);
  font-weight: 600;
  color: rgba(233, 237, 239, 0.4);
}

.how-wa-composer {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px 8px;
  background: #1f2c34;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.how-wa-comp-plus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(233, 237, 239, 0.7);
  font-size: var(--mypr-font-body);
  font-weight: 500;
  flex: none;
  line-height: 1;
}
.how-wa-comp-field {
  flex: 1;
  height: 28px;
  border-radius: 16px;
  background: #2a3942;
  color: rgba(233, 237, 239, 0.4);
  font-size: var(--mypr-font-micro);
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 0 12px;
}
.how-wa-comp-send {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--how-wa);
  color: #fff;
  flex: none;
  box-shadow: 0 2px 8px -2px rgba(37, 211, 102, 0.5);
}
.how-ico-send {
  width: 13px;
  height: 13px;
  display: block;
}

.how-track-bar {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  padding: 8px 8px 10px;
  background: linear-gradient(180deg, #111b21, #0b141a);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.how-track {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--mypr-font-art-xl);
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(4px) scale(0.94);
}
.how-track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}
.how-track-open {
  color: #3dd68c;
  background: rgba(61, 214, 140, 0.16);
  animation: how-track-open var(--how-cycle) var(--how-ease) infinite;
}
.how-track-reply {
  color: var(--how-cyan);
  background: rgba(27, 196, 254, 0.16);
  animation: how-track-reply var(--how-cycle) var(--how-ease) infinite;
}
.how-track-next {
  color: #fdb022;
  background: rgba(253, 176, 34, 0.16);
  animation: how-track-next var(--how-cycle) var(--how-ease) infinite;
}

/* ═══════════════════════════════════════════════════════════════════════════
   KEYFRAMES — 18s
   Step 1: 0–28% · Step 2: 32–58% · Step 3: 62–96% · reset
   ═══════════════════════════════════════════════════════════════════════════ */

@keyframes how-step-1 {
  0%,
  28% {
    transform: translateY(-7px);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.95) inset,
      0 30px 52px -22px rgba(11, 124, 240, 0.45),
      0 14px 30px -14px rgba(27, 196, 254, 0.3);
    background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
  }
  32%,
  100% {
    transform: none;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.9) inset,
      0 18px 40px -28px rgba(11, 16, 32, 0.22),
      0 8px 20px -16px rgba(11, 124, 240, 0.1);
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(247, 250, 255, 0.95) 100%
    );
  }
}
@keyframes how-step-2 {
  0%,
  30% {
    transform: none;
  }
  32%,
  58% {
    transform: translateY(-7px);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.95) inset,
      0 30px 52px -22px rgba(11, 124, 240, 0.42),
      0 14px 30px -14px rgba(27, 196, 254, 0.28);
    background: linear-gradient(180deg, #ffffff 0%, #f3f9ff 100%);
  }
  62%,
  100% {
    transform: none;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.9) inset,
      0 18px 40px -28px rgba(11, 16, 32, 0.22),
      0 8px 20px -16px rgba(11, 124, 240, 0.1);
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(247, 250, 255, 0.95) 100%
    );
  }
}
@keyframes how-step-3 {
  0%,
  60% {
    transform: none;
  }
  62%,
  96% {
    transform: translateY(-7px);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.95) inset,
      0 30px 52px -20px rgba(37, 211, 102, 0.4),
      0 14px 30px -12px rgba(18, 140, 126, 0.24);
    background: linear-gradient(180deg, #ffffff 0%, #f0fbf5 100%);
  }
  98%,
  100% {
    transform: none;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.9) inset,
      0 18px 40px -28px rgba(11, 16, 32, 0.22),
      0 8px 20px -16px rgba(11, 124, 240, 0.1);
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(247, 250, 255, 0.95) 100%
    );
  }
}
@keyframes how-step-idle {
  0%,
  100% {
    transform: none;
  }
}

@keyframes how-glow-1 {
  0%,
  28% {
    opacity: 1;
  }
  32%,
  100% {
    opacity: 0;
  }
}
@keyframes how-glow-2 {
  0%,
  30% {
    opacity: 0;
  }
  32%,
  58% {
    opacity: 1;
  }
  62%,
  100% {
    opacity: 0;
  }
}
@keyframes how-glow-3 {
  0%,
  60% {
    opacity: 0;
  }
  62%,
  96% {
    opacity: 1;
    background:
      radial-gradient(110% 70% at 50% -10%, rgba(37, 211, 102, 0.26), transparent 58%),
      radial-gradient(80% 50% at 100% 100%, rgba(18, 140, 126, 0.12), transparent 50%);
  }
  98%,
  100% {
    opacity: 0;
  }
}
@keyframes how-glow-idle {
  0%,
  100% {
    opacity: 0;
  }
}

@keyframes how-scene-1 {
  0%,
  28% {
    transform: translateY(0) scale(1);
    filter: saturate(1);
  }
  32%,
  100% {
    transform: translateY(2px) scale(0.99);
    filter: saturate(0.94);
  }
}
@keyframes how-scene-2 {
  0%,
  30% {
    transform: translateY(2px) scale(0.99);
    filter: saturate(0.94);
  }
  32%,
  58% {
    transform: translateY(0) scale(1);
    filter: saturate(1);
  }
  62%,
  100% {
    transform: translateY(2px) scale(0.99);
    filter: saturate(0.94);
  }
}
@keyframes how-scene-3 {
  0%,
  60% {
    transform: translateY(2px) scale(0.99);
    filter: saturate(0.94);
  }
  62%,
  96% {
    transform: translateY(0) scale(1);
    filter: saturate(1);
  }
  98%,
  100% {
    transform: translateY(2px) scale(0.99);
    filter: saturate(0.94);
  }
}
@keyframes how-scene-idle {
  0%,
  100% {
    transform: none;
  }
}

/* Story typing */
@keyframes how-type-1 {
  0%,
  1% {
    opacity: 1;
    max-width: 0;
  }
  5%,
  100% {
    opacity: 1;
    max-width: 100%;
  }
}
@keyframes how-type-2 {
  0%,
  6% {
    opacity: 1;
    max-width: 0;
  }
  11%,
  100% {
    opacity: 1;
    max-width: 100%;
  }
}
@keyframes how-type-3 {
  0%,
  12% {
    opacity: 1;
    max-width: 0;
  }
  17%,
  100% {
    opacity: 1;
    max-width: 100%;
  }
}
@keyframes how-cursor {
  0%,
  2% {
    opacity: 0;
    top: 12px;
  }
  3%,
  4% {
    opacity: 1;
  }
  5%,
  6% {
    opacity: 0;
  }
  7%,
  8% {
    opacity: 1;
  }
  9%,
  10% {
    opacity: 0;
  }
  11%,
  18% {
    opacity: 1;
    top: 28px;
  }
  19%,
  26% {
    opacity: 1;
    top: 44px;
  }
  27%,
  100% {
    opacity: 0;
  }
}
@keyframes how-tip {
  0%,
  8% {
    opacity: 0;
    transform: translateY(6px);
  }
  14%,
  28% {
    opacity: 1;
    transform: none;
  }
  32%,
  100% {
    opacity: 0.9;
    transform: none;
  }
}
@keyframes how-tip-bub {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes how-tip-glow {
  0%,
  100% {
    opacity: 0.78;
  }
  45%,
  55% {
    opacity: 1;
  }
}
@keyframes how-tip-orb {
  0%,
  100% {
    opacity: 0.2;
    transform: translateY(0) scale(0.85);
  }
  40% {
    opacity: 1;
    transform: translateY(-1.4px) scale(1.08);
  }
  70% {
    opacity: 0.55;
    transform: translateY(-0.6px) scale(1);
  }
}
@keyframes how-media-1 {
  0%,
  10% {
    opacity: 0;
    transform: translateY(8px) scale(0.94);
  }
  16%,
  28% {
    opacity: 1;
    transform: none;
  }
  32%,
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes how-media-2 {
  0%,
  14% {
    opacity: 0;
    transform: translateY(8px) scale(0.94);
  }
  20%,
  28% {
    opacity: 1;
    transform: none;
  }
  32%,
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes how-media-idle {
  0%,
  100% {
    opacity: 1;
  }
}
@keyframes how-check-1 {
  0%,
  16% {
    opacity: 0;
    transform: scale(0.5);
  }
  20%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes how-check-2 {
  0%,
  20% {
    opacity: 0;
    transform: scale(0.5);
  }
  24%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes how-prog-1 {
  0%,
  28% {
    opacity: 1;
    transform: scaleX(1);
  }
  32%,
  100% {
    opacity: 1;
  }
}
@keyframes how-prog-2 {
  0%,
  22% {
    background: rgba(11, 124, 240, 0.12);
    transform: scaleX(0.2);
  }
  26%,
  28% {
    background: var(--how-grad);
    transform: scaleX(1);
    opacity: 0.55;
  }
  32%,
  100% {
    background: rgba(11, 124, 240, 0.12);
    transform: scaleX(1);
    opacity: 1;
  }
}
@keyframes how-prog-3 {
  0%,
  28% {
    background: rgba(11, 124, 240, 0.12);
  }
  100% {
    background: rgba(11, 124, 240, 0.12);
  }
}
@keyframes how-photo-lens {
  0%,
  12% {
    transform: scale(1);
    opacity: 0.85;
  }
  16% {
    transform: scale(0.5);
    opacity: 0.35;
  }
  20% {
    transform: scale(1.25);
    opacity: 1;
  }
  26%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes how-photo-mount {
  0%,
  14% {
    opacity: 0.3;
    transform: translateY(2px);
  }
  20%,
  28% {
    opacity: 1;
    transform: none;
  }
  33%,
  100% {
    opacity: 0.9;
  }
}
@keyframes how-photo-shutter {
  0%,
  13% {
    opacity: 0;
    transform: scaleX(0.2);
  }
  16%,
  20% {
    opacity: 1;
    transform: scaleX(1);
  }
  24%,
  100% {
    opacity: 0;
    transform: scaleX(0.2);
  }
}
@keyframes how-photo-frame {
  0%,
  12% {
    stroke-opacity: 0.5;
  }
  16%,
  24% {
    stroke-opacity: 1;
  }
  28%,
  100% {
    stroke-opacity: 0.75;
  }
}
@keyframes how-folder-bob {
  0%,
  16% {
    transform: translateY(2px) scale(0.96);
  }
  20%,
  28% {
    transform: none;
  }
  33%,
  100% {
    transform: none;
  }
}
@keyframes how-app-cta {
  0%,
  18% {
    transform: translateY(1px);
    filter: brightness(0.96);
  }
  22%,
  28% {
    transform: none;
    filter: brightness(1.05);
    box-shadow: 0 12px 24px -8px rgba(8, 115, 238, 0.8);
  }
  32%,
  100% {
    transform: none;
    filter: none;
  }
}
@keyframes how-app-cta-ai {
  0%,
  48% {
    transform: none;
  }
  52%,
  58% {
    transform: scale(1.03);
    box-shadow: 0 12px 24px -8px rgba(37, 211, 102, 0.7);
  }
  62%,
  100% {
    transform: none;
  }
}
@keyframes how-cta-shimmer {
  0%,
  15% {
    background-position: 120% 0;
  }
  28% {
    background-position: -120% 0;
  }
  32%,
  48% {
    background-position: 120% 0;
  }
  58% {
    background-position: -120% 0;
  }
  62%,
  100% {
    background-position: 120% 0;
  }
}

/* AI */
@keyframes how-gen {
  0%,
  30% {
    opacity: 0;
    height: 0;
    margin-bottom: 0;
  }
  32%,
  38% {
    opacity: 1;
    height: 18px;
    margin-bottom: 8px;
  }
  42%,
  100% {
    opacity: 0;
    height: 0;
    margin-bottom: 0;
  }
}
@keyframes how-gen-bar {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}
@keyframes how-to-card {
  0%,
  34% {
    opacity: 0.7;
    transform: translateY(4px);
  }
  40%,
  58% {
    opacity: 1;
    transform: none;
  }
  62%,
  100% {
    opacity: 1;
  }
}
@keyframes how-draft {
  0%,
  36% {
    opacity: 0.55;
    transform: translateY(6px);
  }
  42%,
  58% {
    opacity: 1;
    transform: none;
  }
  62%,
  100% {
    opacity: 1;
  }
}
@keyframes how-draft-b {
  0%,
  40% {
    opacity: 0.5;
  }
  46%,
  100% {
    opacity: 1;
  }
}
@keyframes how-foil {
  0% {
    background-position: 120% 0;
  }
  100% {
    background-position: -120% 0;
  }
}
@keyframes how-ai-ready {
  0%,
  48% {
    opacity: 0;
    transform: translateY(3px);
  }
  52%,
  58% {
    opacity: 1;
    transform: none;
  }
  62%,
  100% {
    opacity: 1;
  }
}
@keyframes how-sparkle-idle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.35) rotate(0);
  }
}
@keyframes how-sp-1 {
  0%,
  32% {
    opacity: 0;
    transform: scale(0.3) rotate(-20deg);
  }
  36% {
    opacity: 1;
    transform: scale(1.15) rotate(8deg);
  }
  48%,
  58% {
    opacity: 0.85;
    transform: scale(1) rotate(12deg);
  }
  62%,
  100% {
    opacity: 0;
    transform: scale(0.3) rotate(40deg);
  }
}
@keyframes how-sp-2 {
  0%,
  34% {
    opacity: 0;
    transform: scale(0.25) rotate(15deg);
  }
  38% {
    opacity: 1;
    transform: scale(1.25) rotate(-10deg);
  }
  50%,
  58% {
    opacity: 0.75;
    transform: scale(1.05) rotate(-4deg);
  }
  62%,
  100% {
    opacity: 0;
    transform: scale(0.25) rotate(-30deg);
  }
}
@keyframes how-sp-3 {
  0%,
  38% {
    opacity: 0;
    transform: scale(0.2);
  }
  42% {
    opacity: 0.9;
    transform: scale(1.1) rotate(20deg);
  }
  52%,
  58% {
    opacity: 0.7;
    transform: scale(0.95) rotate(-12deg);
  }
  62%,
  100% {
    opacity: 0;
  }
}
@keyframes how-sp-4 {
  0%,
  36% {
    opacity: 0;
    transform: scale(0.3) rotate(30deg);
  }
  40% {
    opacity: 1;
    transform: scale(1.2) rotate(-15deg);
  }
  52%,
  58% {
    opacity: 0.8;
    transform: scale(1.05) rotate(-8deg);
  }
  62%,
  100% {
    opacity: 0;
  }
}
@keyframes how-sp-title {
  0%,
  30% {
    opacity: 0.7;
    transform: scale(1) rotate(6deg);
  }
  36% {
    opacity: 1;
    transform: scale(1.3) rotate(-10deg);
  }
  48%,
  58% {
    opacity: 1;
    transform: scale(1.05) rotate(8deg);
  }
  62%,
  100% {
    opacity: 0.75;
    transform: scale(1) rotate(6deg);
  }
}

/* WhatsApp sequence */
@keyframes how-ticks {
  0%,
  68% {
    color: rgba(233, 237, 239, 0.4);
  }
  72%,
  78% {
    color: rgba(233, 237, 239, 0.75);
  }
  82%,
  100% {
    color: #53bdeb;
  }
}
@keyframes how-wa-pill-del {
  0%,
  68% {
    opacity: 0;
    transform: scale(0.9);
  }
  72%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes how-wa-pill-read {
  0%,
  76% {
    opacity: 0;
    transform: scale(0.9);
  }
  80%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes how-wa-typing {
  0%,
  78% {
    opacity: 0;
    transform: translateY(4px);
  }
  80%,
  86% {
    opacity: 1;
    transform: none;
  }
  88%,
  100% {
    opacity: 0;
    transform: translateY(-2px);
  }
}
@keyframes how-type-dot {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-3px);
    opacity: 1;
  }
}
@keyframes how-wa-in {
  0%,
  86% {
    opacity: 0;
    transform: translateY(10px) scale(0.94);
  }
  90%,
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes how-track-open {
  0%,
  72% {
    opacity: 0;
    transform: translateY(4px) scale(0.94);
  }
  76%,
  100% {
    opacity: 1;
    transform: none;
    box-shadow: 0 0 0 1px rgba(61, 214, 140, 0.25);
  }
}
@keyframes how-track-reply {
  0%,
  86% {
    opacity: 0;
    transform: translateY(4px) scale(0.94);
  }
  90%,
  100% {
    opacity: 1;
    transform: none;
    box-shadow: 0 0 0 1px rgba(27, 196, 254, 0.25);
  }
}
@keyframes how-track-next {
  0%,
  92% {
    opacity: 0;
    transform: translateY(4px) scale(0.94);
  }
  95%,
  100% {
    opacity: 1;
    transform: none;
    box-shadow: 0 0 0 1px rgba(253, 176, 34, 0.25);
  }
}
@keyframes how-wa-online {
  0%,
  62% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  68%,
  76% {
    box-shadow: 0 0 0 5px rgba(37, 211, 102, 0);
  }
  82%,
  96% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
}
@keyframes how-wa-online-ring {
  0%,
  62% {
    opacity: 0;
    transform: scale(0.9);
  }
  68%,
  76% {
    opacity: 1;
    transform: scale(1.05);
  }
  82%,
  96% {
    opacity: 0.6;
    transform: scale(1);
  }
  98%,
  100% {
    opacity: 0;
  }
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 820px) {
  .how-flow {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .how-step-copy p {
    font-size: var(--mypr-font-body-sm);
  }
  .how-phone {
    min-height: 280px;
  }
}

/* ── Reduced motion ─────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .how-step,
  .how-step-glow,
  .how-scene,
  .how-type-line,
  .how-cursor,
  .how-app-cta,
  .how-cta-shimmer,
  .how-media,
  .how-tip,
  .how-tip-bub,
  .how-tip-bulb,
  .how-tip-base,
  .how-tip-orb,
  .how-prog-seg,
  .how-sparkle,
  .how-gen,
  .how-draft-card,
  .how-draft-h,
  .how-draft-b,
  .how-to-card,
  .how-wa-msg,
  .how-wa-pill,
  .how-ticks,
  .how-track,
  .how-wa-online-dot,
  .how-wa-online-ring,
  .how-wa-typing,
  .how-photo-lens,
  .how-photo-mount,
  .how-photo-shutter,
  .how-photo-frame,
  .how-folder-body,
  .how-ai-ready,
  .how-media-check {
    animation: none !important;
  }
  .how-step {
    transform: none;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.95) inset,
      0 22px 44px -24px rgba(11, 124, 240, 0.28),
      0 10px 24px -16px rgba(27, 196, 254, 0.16);
  }
  .how-step-3 {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.95) inset,
      0 22px 44px -24px rgba(37, 211, 102, 0.28),
      0 10px 24px -16px rgba(18, 140, 126, 0.14);
  }
  .how-step-glow {
    opacity: 0.3;
  }
  .how-scene {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .how-type-line,
  .how-app-cta,
  .how-media,
  .how-tip,
  .how-to-card,
  .how-draft-card,
  .how-draft-b,
  .how-wa-msg,
  .how-wa-pill,
  .how-track,
  .how-ai-ready,
  .how-media-check {
    opacity: 1;
    transform: none;
    max-width: 100%;
  }
  .how-wa-typing {
    display: none;
  }
  .how-gen {
    display: none;
  }
  .how-sparkle {
    opacity: 0.5;
    transform: scale(1) rotate(12deg);
  }
  .how-cursor {
    display: none;
  }
  .how-ticks {
    color: #53bdeb;
  }
  .how-draft-h {
    background: none;
    color: var(--how-navy);
    -webkit-text-fill-color: var(--how-navy);
  }
}

/* === features.css === */
/* ═══════════════════════════════════════════════════════════════════════════
   MYPR landing — Features as animated product flow
   Cycle 15s: stage 1 → 2 → 3 → loop. Pure CSS.
   Product vignettes (pitch morph · journalist match · WA track) — not icon cards.
   ═══════════════════════════════════════════════════════════════════════════ */

.feat-flow {
  --ff-cyan: #1bc4fe;
  --ff-azure: #0b7cf0;
  --ff-navy: #0b1020;
  --ff-wa: #25d366;
  --ff-violet: #7a5af8;
  --ff-amber: #e8820a;
  --ff-cycle: 15s;
  --ff-grad: linear-gradient(135deg, var(--ff-cyan), var(--ff-azure));
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
}

.ff-rail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr minmax(28px, 48px) 1fr minmax(28px, 48px) 1fr;
  align-items: stretch;
  gap: 0;
  position: relative;
  z-index: 1;
}

/* ── Nodes ──────────────────────────────────────────────────────────────── */
.ff-node {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 255, 0.96) 100%);
  border-radius: 26px;
  padding: 18px 16px 20px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 18px 40px -28px rgba(11, 16, 32, 0.28),
    0 8px 20px -16px rgba(11, 124, 240, 0.12);
  overflow: hidden;
  isolation: isolate;
  animation: ff-node-idle var(--ff-cycle) ease-in-out infinite;
  min-width: 0;
}
.ff-node-1 {
  animation-name: ff-node-1;
}
.ff-node-2 {
  animation-name: ff-node-2;
}
.ff-node-3 {
  animation-name: ff-node-3;
}

.ff-node-glow {
  position: absolute;
  inset: 0;
  border-radius: 26px;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(110% 70% at 50% -8%, rgba(27, 196, 254, 0.2), transparent 58%),
    radial-gradient(80% 50% at 100% 100%, rgba(11, 124, 240, 0.08), transparent 50%);
  opacity: 0;
  animation: ff-glow-idle var(--ff-cycle) ease-in-out infinite;
}
.ff-node-1 .ff-node-glow {
  animation-name: ff-glow-1;
}
.ff-node-2 .ff-node-glow {
  animation-name: ff-glow-2;
}
.ff-node-3 .ff-node-glow {
  animation-name: ff-glow-3;
}

.ff-copy {
  position: relative;
  z-index: 1;
  margin-top: auto;
}
.ff-copy h3 {
  font-size: var(--mypr-font-fluid-lead);
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--ink, #0b1020);
  letter-spacing: -0.01em;
}
.ff-copy p {
  margin: 0;
  color: var(--muted, #59647b);
  font-size: var(--mypr-font-label);
  line-height: 1.52;
}

/* ── Connectors ─────────────────────────────────────────────────────────── */
.ff-conn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  list-style: none;
  pointer-events: none;
  z-index: 2;
}
.ff-conn-line {
  position: absolute;
  inset-inline: 4px;
  top: 50%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(11, 124, 240, 0.12),
    rgba(27, 196, 254, 0.45),
    rgba(11, 124, 240, 0.12)
  );
  border-radius: 999px;
  transform: translateY(-50%);
}
/* In RTL the visual flow still goes along inline axis */
[dir="rtl"] .ff-conn-line {
  background: linear-gradient(
    270deg,
    rgba(11, 124, 240, 0.12),
    rgba(27, 196, 254, 0.45),
    rgba(11, 124, 240, 0.12)
  );
}
.ff-conn-glow {
  position: absolute;
  width: 42%;
  height: 6px;
  top: 50%;
  inset-inline-start: 8%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--ff-cyan), var(--ff-azure), transparent);
  filter: blur(3px);
  opacity: 0;
  transform: translateY(-50%);
  animation: ff-conn-sweep var(--ff-cycle) ease-in-out infinite;
}
.ff-conn-1 .ff-conn-glow {
  animation-name: ff-conn-1;
}
.ff-conn-2 .ff-conn-glow {
  animation-name: ff-conn-2;
}
.ff-conn-dot {
  position: relative;
  z-index: 1;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ff-grad);
  box-shadow:
    0 0 0 4px rgba(27, 196, 254, 0.18),
    0 0 14px rgba(27, 196, 254, 0.45);
  animation: ff-conn-dot var(--ff-cycle) ease-in-out infinite;
}
.ff-conn-1 .ff-conn-dot {
  animation-name: ff-conn-dot-1;
}
.ff-conn-2 .ff-conn-dot {
  animation-name: ff-conn-dot-2;
}

/* ── Shared chips ───────────────────────────────────────────────────────── */
.ff-viz {
  position: relative;
  z-index: 1;
  min-height: 168px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ff-node-2 .ff-viz {
  min-height: 0;
  height: auto;
}
.ff-chip {
  display: inline-flex;
  align-items: center;
  font-size: var(--mypr-font-art-xl);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--ff-azure);
  background: rgba(11, 124, 240, 0.1);
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.ff-chip-on {
  color: #fff;
  background: var(--ff-grad);
  box-shadow: 0 4px 12px -4px rgba(8, 115, 238, 0.5);
}
.ff-chip-violet {
  color: #6d4de8;
  background: rgba(122, 90, 248, 0.12);
}
.ff-chip-mint {
  color: #0fa968;
  background: rgba(15, 169, 104, 0.12);
  margin-bottom: 0;
  margin-inline-start: auto;
}

/* ── Stage 1: raw notes → pitch ─────────────────────────────────────────── */
.ff-stage {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ff-raw {
  background: rgba(255, 248, 235, 0.9);
  border: 1px dashed rgba(232, 130, 10, 0.35);
  border-radius: 14px;
  padding: 10px 11px 11px;
  transform-origin: 50% 0;
  animation: ff-raw var(--ff-cycle) ease-in-out infinite;
}
.ff-raw-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}
.ff-raw-li {
  font-size: var(--mypr-font-micro);
  font-weight: 600;
  color: rgba(11, 16, 32, 0.72);
  padding-inline-start: 10px;
  position: relative;
  opacity: 0.9;
}
.ff-raw-li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 7px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ff-amber);
}
.ff-raw-li-1 {
  animation: ff-raw-li-1 var(--ff-cycle) ease-in-out infinite;
}
.ff-raw-li-2 {
  animation: ff-raw-li-2 var(--ff-cycle) ease-in-out infinite;
}
.ff-raw-li-3 {
  animation: ff-raw-li-3 var(--ff-cycle) ease-in-out infinite;
}

.ff-morph {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 18px;
  position: relative;
}
.ff-morph-beam {
  flex: 1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(232, 130, 10, 0.35), var(--ff-cyan), var(--ff-azure));
  position: relative;
  overflow: hidden;
}
.ff-morph-beam::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  animation: ff-morph-beam var(--ff-cycle) ease-in-out infinite;
  opacity: 0.85;
}
.ff-pitch {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(11, 124, 240, 0.1);
  border-radius: 14px;
  padding: 10px 11px 12px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 10px 22px -14px rgba(11, 16, 32, 0.16);
  animation: ff-pitch var(--ff-cycle) ease-in-out infinite;
}
.ff-pitch-to {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--mypr-font-micro);
  font-weight: 700;
  color: var(--muted, #59647b);
  margin-bottom: 6px;
}
.ff-outlet-logo {
  display: block;
  width: auto;
  height: 13px;
  max-width: 56px;
  object-fit: contain;
  object-position: center;
  filter: none;
  flex: none;
}
.ff-pitch-h {
  margin: 0 0 6px;
  font-size: var(--mypr-font-caption);
  font-weight: 800;
  line-height: 1.35;
  /* Foil shimmer — same family as hero MYPR TIMES */
  background-image: linear-gradient(
    105deg,
    #0b1020 0%,
    #0b1020 38%,
    #1bc4fe 46%,
    #ffffff 50%,
    #0b7cf0 54%,
    #0b1020 62%,
    #0b1020 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: ff-foil 3.4s linear infinite;
}
.ff-pitch-b {
  margin: 0;
  font-size: var(--mypr-font-micro);
  font-weight: 500;
  color: rgba(11, 16, 32, 0.7);
  line-height: 1.45;
}

/* ── Stage 2: journalist match ──────────────────────────────────────────── */
.ff-match-card {
  background: linear-gradient(180deg, #f4f8ff 0%, #fbfdff 100%);
  border: 1px solid rgba(122, 90, 248, 0.12);
  border-radius: 16px;
  padding: 11px 10px 12px;
  box-shadow: 0 12px 28px -20px rgba(122, 90, 248, 0.28);
}
.ff-jlist {
  display: grid;
  gap: 7px;
}
.ff-jrow {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 9px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 124, 240, 0.08);
  box-shadow: 0 4px 12px -10px rgba(11, 16, 32, 0.14);
  position: relative;
  animation: ff-jrow-idle var(--ff-cycle) ease-in-out infinite;
}
.ff-jrow-1 {
  animation-name: ff-jrow-1;
}
.ff-jrow-2 {
  animation-name: ff-jrow-2;
}
.ff-jrow-3 {
  animation-name: ff-jrow-3;
}
.ff-jrow.is-hi {
  border-color: rgba(11, 124, 240, 0.28);
  background: linear-gradient(135deg, rgba(27, 196, 254, 0.1), rgba(255, 255, 255, 0.98));
  box-shadow:
    0 0 0 1px rgba(11, 124, 240, 0.12),
    0 10px 22px -12px rgba(11, 124, 240, 0.28);
}
.ff-jav {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  font-size: var(--mypr-font-caption);
  font-weight: 800;
  color: #fff;
}
.ff-jav-a {
  background: linear-gradient(135deg, #e84b8a, #c0266a);
}
.ff-jav-b {
  background: linear-gradient(135deg, #3dd68c, #0fa968);
}
.ff-jav-c {
  background: linear-gradient(135deg, #9b8afb, #7a5af8);
}
.ff-jid {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.ff-jname {
  font-size: var(--mypr-font-caption);
  font-weight: 800;
  color: var(--ff-navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ff-jmeta {
  font-size: var(--mypr-font-art-xl);
  font-weight: 600;
  color: var(--muted, #59647b);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ff-jpick {
  position: absolute;
  top: -7px;
  inset-inline-end: 10px;
  font-size: var(--mypr-font-art-lg);
  font-weight: 900;
  color: #fff;
  background: var(--ff-grad);
  padding: 2px 7px;
  border-radius: 999px;
  box-shadow: 0 4px 10px -4px rgba(8, 115, 238, 0.55);
  animation: ff-jpick var(--ff-cycle) ease-in-out infinite;
}

/* ── Stage 3: the same WhatsApp mock used by How it works ──────────────── */
.ff-viz-track {
  display: flex;
}
.ff-viz-track .unified-whatsapp-mock {
  width: 100%;
  flex: 1;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   KEYFRAMES — 15s
   Stage 1: 0–28% · Stage 2: 32–60% · Stage 3: 64–94% · reset
   ═══════════════════════════════════════════════════════════════════════════ */

@keyframes ff-node-1 {
  0%,
  28% {
    transform: translateY(-5px);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.95) inset,
      0 28px 50px -24px rgba(11, 124, 240, 0.4),
      0 12px 28px -16px rgba(27, 196, 254, 0.26);
    background: linear-gradient(180deg, #ffffff 0%, #f3f9ff 100%);
  }
  32%,
  100% {
    transform: none;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.9) inset,
      0 18px 40px -28px rgba(11, 16, 32, 0.22),
      0 8px 20px -16px rgba(11, 124, 240, 0.1);
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(247, 250, 255, 0.96) 100%
    );
  }
}
@keyframes ff-node-2 {
  0%,
  30% {
    transform: none;
  }
  32%,
  60% {
    transform: translateY(-5px);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.95) inset,
      0 28px 50px -24px rgba(122, 90, 248, 0.36),
      0 12px 28px -16px rgba(11, 124, 240, 0.22);
    background: linear-gradient(180deg, #ffffff 0%, #f6f4ff 100%);
  }
  64%,
  100% {
    transform: none;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.9) inset,
      0 18px 40px -28px rgba(11, 16, 32, 0.22),
      0 8px 20px -16px rgba(11, 124, 240, 0.1);
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(247, 250, 255, 0.96) 100%
    );
  }
}
@keyframes ff-node-3 {
  0%,
  62% {
    transform: none;
  }
  64%,
  94% {
    transform: translateY(-5px);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.95) inset,
      0 28px 50px -22px rgba(37, 211, 102, 0.36),
      0 12px 28px -14px rgba(18, 140, 126, 0.2);
    background: linear-gradient(180deg, #ffffff 0%, #f2fbf6 100%);
  }
  97%,
  100% {
    transform: none;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.9) inset,
      0 18px 40px -28px rgba(11, 16, 32, 0.22),
      0 8px 20px -16px rgba(11, 124, 240, 0.1);
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(247, 250, 255, 0.96) 100%
    );
  }
}
@keyframes ff-node-idle {
  0%,
  100% {
    transform: none;
  }
}

@keyframes ff-glow-1 {
  0%,
  28% {
    opacity: 1;
  }
  32%,
  100% {
    opacity: 0;
  }
}
@keyframes ff-glow-2 {
  0%,
  30% {
    opacity: 0;
  }
  32%,
  60% {
    opacity: 1;
  }
  64%,
  100% {
    opacity: 0;
  }
}
@keyframes ff-glow-3 {
  0%,
  62% {
    opacity: 0;
  }
  64%,
  94% {
    opacity: 1;
    background:
      radial-gradient(110% 70% at 50% -8%, rgba(37, 211, 102, 0.22), transparent 58%),
      radial-gradient(80% 50% at 100% 100%, rgba(18, 140, 126, 0.1), transparent 50%);
  }
  97%,
  100% {
    opacity: 0;
  }
}
@keyframes ff-glow-idle {
  0%,
  100% {
    opacity: 0;
  }
}

/* Conn sweeps at handoff moments */
@keyframes ff-conn-1 {
  0%,
  24% {
    opacity: 0;
    inset-inline-start: 8%;
  }
  26%,
  30% {
    opacity: 1;
    inset-inline-start: 45%;
  }
  34%,
  100% {
    opacity: 0;
    inset-inline-start: 70%;
  }
}
@keyframes ff-conn-2 {
  0%,
  56% {
    opacity: 0;
    inset-inline-start: 8%;
  }
  58%,
  62% {
    opacity: 1;
    inset-inline-start: 45%;
  }
  66%,
  100% {
    opacity: 0;
    inset-inline-start: 70%;
  }
}
@keyframes ff-conn-dot-1 {
  0%,
  24% {
    transform: scale(0.85);
    opacity: 0.55;
  }
  26%,
  30% {
    transform: scale(1.25);
    opacity: 1;
  }
  34%,
  100% {
    transform: scale(0.9);
    opacity: 0.55;
  }
}
@keyframes ff-conn-dot-2 {
  0%,
  56% {
    transform: scale(0.85);
    opacity: 0.55;
  }
  58%,
  62% {
    transform: scale(1.25);
    opacity: 1;
  }
  66%,
  100% {
    transform: scale(0.9);
    opacity: 0.55;
  }
}
@keyframes ff-conn-sweep {
  0%,
  100% {
    opacity: 0;
  }
}

/* Stage 1 motion */
@keyframes ff-raw {
  0%,
  18% {
    opacity: 1;
    transform: scale(1);
  }
  24%,
  28% {
    opacity: 0.55;
    transform: scale(0.97);
  }
  32%,
  100% {
    opacity: 0.85;
    transform: scale(1);
  }
}
@keyframes ff-raw-li-1 {
  0%,
  2% {
    opacity: 0.4;
    transform: translateX(4px);
  }
  6%,
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes ff-raw-li-2 {
  0%,
  6% {
    opacity: 0.35;
    transform: translateX(4px);
  }
  10%,
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes ff-raw-li-3 {
  0%,
  10% {
    opacity: 0.3;
    transform: translateX(4px);
  }
  14%,
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes ff-morph-beam {
  0%,
  12% {
    transform: translateX(-100%);
  }
  18%,
  26% {
    transform: translateX(100%);
  }
  28%,
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}
@keyframes ff-pitch {
  0%,
  14% {
    opacity: 0.75;
    transform: translateY(4px);
  }
  20%,
  28% {
    opacity: 1;
    transform: none;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.9) inset,
      0 14px 28px -12px rgba(11, 124, 240, 0.28);
  }
  32%,
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes ff-foil {
  0% {
    background-position: 120% 0;
  }
  100% {
    background-position: -120% 0;
  }
}

/* Stage 2 rows cascade in */
@keyframes ff-jrow-1 {
  0%,
  32% {
    opacity: 0.7;
    transform: translateY(3px);
  }
  36%,
  60% {
    opacity: 1;
    transform: none;
  }
  64%,
  100% {
    opacity: 0.85;
  }
}
@keyframes ff-jrow-2 {
  0%,
  36% {
    opacity: 0.55;
    transform: translateY(3px);
  }
  40%,
  60% {
    opacity: 1;
    transform: none;
  }
  64%,
  100% {
    opacity: 0.75;
  }
}
@keyframes ff-jrow-3 {
  0%,
  40% {
    opacity: 0.45;
    transform: translateY(3px);
  }
  44%,
  60% {
    opacity: 1;
    transform: none;
  }
  64%,
  100% {
    opacity: 0.7;
  }
}
@keyframes ff-jrow-idle {
  0%,
  100% {
    opacity: 1;
  }
}
@keyframes ff-jpick {
  0%,
  38% {
    opacity: 0;
    transform: translateY(4px) scale(0.9);
  }
  42%,
  60% {
    opacity: 1;
    transform: none;
  }
  64%,
  100% {
    opacity: 0.85;
  }
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .ff-rail {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .ff-conn {
    height: 36px;
    min-height: 36px;
  }
  .ff-conn-line {
    inset-inline: 50%;
    width: 2px;
    height: calc(100% - 8px);
    top: 4px;
    bottom: 4px;
    inset-inline-start: 50%;
    transform: translateX(-50%);
    background: linear-gradient(
      180deg,
      rgba(11, 124, 240, 0.12),
      rgba(27, 196, 254, 0.5),
      rgba(11, 124, 240, 0.12)
    );
  }
  [dir="rtl"] .ff-conn-line {
    background: linear-gradient(
      180deg,
      rgba(11, 124, 240, 0.12),
      rgba(27, 196, 254, 0.5),
      rgba(11, 124, 240, 0.12)
    );
  }
  .ff-conn-glow {
    width: 6px;
    height: 42%;
    inset-inline-start: 50%;
    top: 10%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, transparent, var(--ff-cyan), var(--ff-azure), transparent);
  }
  .ff-copy p {
    font-size: var(--mypr-font-body-sm);
  }
}

/* ── Reduced motion ─────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .ff-node,
  .ff-node-glow,
  .ff-conn-glow,
  .ff-conn-dot,
  .ff-raw,
  .ff-raw-li,
  .ff-morph-beam,
  .ff-pitch,
  .ff-pitch-h,
  .ff-jrow,
  .ff-jpick {
    animation: none !important;
  }
  .ff-node {
    transform: none;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.95) inset,
      0 22px 44px -24px rgba(11, 124, 240, 0.26),
      0 10px 24px -16px rgba(27, 196, 254, 0.14);
  }
  .ff-node-3 {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.95) inset,
      0 22px 44px -24px rgba(37, 211, 102, 0.26),
      0 10px 24px -16px rgba(18, 140, 126, 0.12);
  }
  .ff-node-glow {
    opacity: 0.3;
  }
  .ff-conn-dot {
    opacity: 1;
    transform: none;
  }
  .ff-raw,
  .ff-pitch,
  .ff-jrow {
    opacity: 1;
    transform: none;
  }
  .ff-jpick {
    opacity: 1;
  }
  .ff-pitch-h {
    background: none;
    color: var(--ff-navy);
    -webkit-text-fill-color: var(--ff-navy);
  }
}


/* === showcase-chips.css === */
/* Showcase floating chips — custom icons + micro-motion */

.chip {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 11px 15px 11px 11px;
  font-size: var(--mypr-font-label);
  font-weight: 800;
  color: var(--ink);
  box-shadow:
    0 14px 32px -16px rgba(11, 16, 32, 0.22),
    0 2px 6px -2px rgba(11, 16, 32, 0.08);
  animation: bob 5.5s ease-in-out infinite;
}
.showcase-chips {
  display: contents;
}
.chip-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  list-style: none;
}
.chip-summary::-webkit-details-marker {
  display: none;
}
.chip-label {
  white-space: nowrap;
}
.chip-detail {
  display: block;
  width: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  color: var(--muted);
  font-size: var(--mypr-font-caption);
  font-weight: 600;
  line-height: 1.45;
  transition:
    width 0.28s ease,
    max-height 0.28s ease,
    opacity 0.18s ease;
}
.chip:hover .chip-detail,
.chip:focus-within .chip-detail,
.chip[open] .chip-detail {
  width: min(230px, 34vw);
  max-height: 5em;
  margin-top: 3px;
  opacity: 1;
}
.chip-summary:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}
.chip-ic {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 6px 12px -6px rgba(11, 16, 32, 0.35);
  position: relative;
  overflow: hidden;
}
.chip-ic::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.28), transparent 42%);
  pointer-events: none;
  border-radius: inherit;
}
.chip-ic svg.sc-ico,
.chip-ic svg {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
  overflow: visible;
}
.ic-mint {
  background: linear-gradient(145deg, #3dd68c, #0fa968 55%, #0c8f58);
}
.ic-blue {
  background: linear-gradient(145deg, #1bc4fe, #0b7cf0 55%, #0864c8);
}
.ic-cyan {
  background: linear-gradient(145deg, #5de0ff, #1bc4fe 40%, #0b7cf0);
}

.chip-a {
  top: 10%;
  inset-inline-start: 0;
  animation-delay: -0.6s;
}
.chip-b {
  bottom: 14%;
  inset-inline-start: 0;
  animation-delay: -2.4s;
}
.chip-c {
  top: 14%;
  inset-inline-end: 0;
  animation-delay: -1.4s;
}

@keyframes bob {
  50% {
    transform: translateY(-9px);
  }
}

/* ── Story: lines type in, sparkle twinkles ─────────────────────────────── */
.sc-story-line {
  stroke-dasharray: 12;
  stroke-dashoffset: 12;
  animation: sc-line-draw 3.2s ease-in-out infinite;
}
.sc-story-line-1 {
  animation-delay: 0s;
}
.sc-story-line-2 {
  animation-delay: 0.18s;
}
.sc-story-line-3 {
  animation-delay: 0.36s;
}
.sc-story-spark {
  transform-origin: 18.2px 7.35px;
  animation: sc-sparkle 3.2s ease-in-out infinite;
}
.sc-story-dot {
  transform-origin: 18.2px 5.1px;
  animation: sc-spark-dot 3.2s ease-in-out infinite;
}
.sc-story-card {
  animation: sc-card-breathe 3.2s ease-in-out infinite;
}

@keyframes sc-line-draw {
  0%,
  8% {
    stroke-dashoffset: 12;
    opacity: 0.25;
  }
  22%,
  72% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  88%,
  100% {
    stroke-dashoffset: 12;
    opacity: 0.25;
  }
}
@keyframes sc-sparkle {
  0%,
  18% {
    opacity: 0;
    transform: scale(0.35) rotate(-20deg);
  }
  28% {
    opacity: 1;
    transform: scale(1.15) rotate(8deg);
  }
  40% {
    opacity: 0.9;
    transform: scale(0.92) rotate(-4deg);
  }
  55%,
  70% {
    opacity: 1;
    transform: scale(1) rotate(10deg);
  }
  82%,
  100% {
    opacity: 0;
    transform: scale(0.4) rotate(30deg);
  }
}
@keyframes sc-spark-dot {
  0%,
  20% {
    opacity: 0;
    transform: scale(0.4);
  }
  30%,
  55% {
    opacity: 0.45;
    transform: scale(1);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(0.4);
  }
}
@keyframes sc-card-breathe {
  0%,
  100% {
    stroke-opacity: 0.85;
  }
  40% {
    stroke-opacity: 1;
  }
}

/* ── Pitch: check draws, ring pulses ────────────────────────────────────── */
.sc-pitch-check {
  stroke-dasharray: 12;
  stroke-dashoffset: 12;
  animation: sc-check-draw 2.8s ease-in-out infinite;
}
.sc-pitch-ring {
  transform-origin: 16.4px 16.6px;
  animation: sc-ring-pulse 2.8s ease-in-out infinite;
}
.sc-pitch-sheet {
  animation: sc-sheet-lift 2.8s ease-in-out infinite;
}
.sc-pitch-line,
.sc-pitch-line-2 {
  animation: sc-pitch-lines 2.8s ease-in-out infinite;
}
.sc-pitch-line-2 {
  animation-delay: 0.08s;
}

@keyframes sc-check-draw {
  0%,
  12% {
    stroke-dashoffset: 12;
    opacity: 0.2;
  }
  28%,
  68% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  84%,
  100% {
    stroke-dashoffset: 12;
    opacity: 0.2;
  }
}
@keyframes sc-ring-pulse {
  0%,
  10% {
    transform: scale(0.88);
    opacity: 0.55;
  }
  30%,
  55% {
    transform: scale(1);
    opacity: 1;
  }
  72% {
    transform: scale(1.08);
    opacity: 0.85;
  }
  88%,
  100% {
    transform: scale(0.9);
    opacity: 0.55;
  }
}
@keyframes sc-sheet-lift {
  0%,
  100% {
    transform: translateY(0);
  }
  35% {
    transform: translateY(-0.4px);
  }
}
@keyframes sc-pitch-lines {
  0%,
  15% {
    opacity: 0.25;
  }
  30%,
  70% {
    opacity: 0.75;
  }
  90%,
  100% {
    opacity: 0.25;
  }
}

/* ── Track: reply bubble pops, pulse breathes, tick draws ───────────────── */
.sc-track-bubble-b {
  transform-origin: 16px 15px;
  animation: sc-bubble-pop 3s ease-in-out infinite;
}
.sc-track-bubble-a {
  animation: sc-bubble-idle 3s ease-in-out infinite;
}
.sc-track-pulse {
  transform-origin: 18.6px 6.2px;
  animation: sc-pulse-ring 3s ease-out infinite;
}
.sc-track-pulse-core {
  transform-origin: 18.6px 6.2px;
  animation: sc-pulse-core 3s ease-in-out infinite;
}
.sc-track-tick {
  stroke-dasharray: 10;
  stroke-dashoffset: 10;
  animation: sc-tick-draw 3s ease-in-out infinite;
}

@keyframes sc-bubble-pop {
  0%,
  18% {
    opacity: 0.35;
    transform: scale(0.82) translateY(2px);
  }
  32%,
  70% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  88%,
  100% {
    opacity: 0.4;
    transform: scale(0.88) translateY(1px);
  }
}
@keyframes sc-bubble-idle {
  0%,
  100% {
    opacity: 0.9;
  }
  40% {
    opacity: 1;
  }
}
@keyframes sc-pulse-ring {
  0%,
  20% {
    transform: scale(0.55);
    opacity: 0.5;
  }
  45% {
    transform: scale(1.55);
    opacity: 0;
  }
  100% {
    transform: scale(0.55);
    opacity: 0;
  }
}
@keyframes sc-pulse-core {
  0%,
  20% {
    transform: scale(0.85);
    opacity: 0.7;
  }
  40% {
    transform: scale(1.15);
    opacity: 1;
  }
  60%,
  100% {
    transform: scale(0.9);
    opacity: 0.75;
  }
}
@keyframes sc-tick-draw {
  0%,
  28% {
    stroke-dashoffset: 10;
    opacity: 0;
  }
  42%,
  72% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  88%,
  100% {
    stroke-dashoffset: 10;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .chip {
    animation: none;
  }
  .sc-story-line,
  .sc-story-spark,
  .sc-story-dot,
  .sc-story-card,
  .sc-pitch-check,
  .sc-pitch-ring,
  .sc-pitch-sheet,
  .sc-pitch-line,
  .sc-pitch-line-2,
  .sc-track-bubble-b,
  .sc-track-bubble-a,
  .sc-track-pulse,
  .sc-track-pulse-core,
  .sc-track-tick {
    animation: none !important;
  }
  .sc-story-line,
  .sc-pitch-check,
  .sc-track-tick {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  .sc-story-spark,
  .sc-track-bubble-b {
    opacity: 1;
    transform: none;
  }
  .sc-pitch-ring {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 900px) {
  .showcase-chips {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
  }
  .chip {
    position: relative;
    inset: auto;
    display: flex;
    width: 100%;
    padding: 11px;
    animation: none;
  }
  .chip-detail,
  .chip:hover .chip-detail,
  .chip:focus-within .chip-detail,
  .chip[open] .chip-detail {
    width: auto;
    max-height: none;
    margin-top: 3px;
    opacity: 1;
  }
}


/* Real typewriter reveal for AI draft (step 2) — solid ink, no fade */
.how-step-2 .how-draft-h,
.how-step-2 .how-draft-b {
  overflow: hidden;
  white-space: nowrap;
  max-width: 0;
  opacity: 1;
  color: #0b1020;
}
.how-step-2 .how-draft-b {
  color: #1a2233;
}
.how-panel[data-inview="1"] .how-step-2 .how-draft-h {
  animation: how-draft-type-h var(--how-cycle) steps(28, end) infinite;
}
.how-panel[data-inview="1"] .how-step-2 .how-draft-b {
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  animation: how-draft-type-b var(--how-cycle) ease-in-out infinite;
}
.how-panel:not([data-inview="1"]) .how-step-2 .how-draft-h,
.how-panel:not([data-inview="1"]) .how-step-2 .how-draft-b {
  max-width: 100% !important;
  opacity: 1 !important;
  -webkit-line-clamp: unset;
}
@keyframes how-draft-type-h {
  0%,
  18% {
    max-width: 0;
    opacity: 1;
  }
  22%,
  100% {
    max-width: 100%;
    opacity: 1;
  }
}
@keyframes how-draft-type-b {
  0%,
  24% {
    max-height: 0;
    opacity: 1;
  }
  28%,
  100% {
    max-height: 6.5em;
    opacity: 1;
  }
}
/* Outgoing WhatsApp pitch types out — solid white text */
.how-panel[data-inview="1"] .how-wa-out .how-wa-type-text {
  display: block;
  overflow: hidden;
  max-height: 0;
  opacity: 1;
  color: #e9edef;
  animation: how-wa-out-type var(--how-cycle) ease-in-out infinite;
}
.how-panel:not([data-inview="1"]) .how-wa-out .how-wa-type-text {
  max-height: none !important;
  opacity: 1 !important;
  color: #e9edef;
}
.how-wa-out .how-wa-type-text {
  color: #e9edef;
  opacity: 1;
}
@keyframes how-wa-out-type {
  0%,
  6% {
    max-height: 0;
    opacity: 1;
  }
  8%,
  12% {
    max-height: 0.9em;
    opacity: 1;
  }
  14%,
  18% {
    max-height: 2.1em;
    opacity: 1;
  }
  20%,
  100% {
    max-height: 6.5em;
    opacity: 1;
  }
}
/* Showcase pitch story typewriter — solid */
.mu-pitch-screen .mu-story-line {
  overflow: hidden;
  white-space: nowrap;
  max-width: 0;
  opacity: 1;
  color: #0b1020;
  animation: mu-story-type 7s steps(26, end) infinite;
}
.mu-pitch-screen .mu-story-line-1 {
  animation-delay: 0s;
}
.mu-pitch-screen .mu-story-line-2 {
  animation-delay: 0.55s;
}
.mu-pitch-screen .mu-story-line-3 {
  animation-delay: 1.1s;
}
@keyframes mu-story-type {
  0% {
    max-width: 0;
    opacity: 1;
  }
  12%,
  100% {
    max-width: 100%;
    opacity: 1;
  }
}
/* Soft keyboard mock — slides up while typing on all 3 how phones */
.how-kb {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
  padding: 4px 3px 6px;
  background: linear-gradient(180deg, #d1d5db 0%, #b8bec8 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  transform: translateY(105%);
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 -4px 16px rgba(11, 16, 32, 0.12);
}
.how-kb-dark {
  background: linear-gradient(180deg, #2a3440 0%, #1c242c 100%);
  border-top-color: rgba(255, 255, 255, 0.06);
}
.how-kb-row {
  display: flex;
  gap: 3px;
  margin-bottom: 3px;
  justify-content: center;
}
.how-kb-key {
  flex: 1;
  min-width: 0;
  height: 22px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
  font-size: 9px;
  font-weight: 600;
  color: #0b1020;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transform-origin: 50% 100%;
  transition:
    transform 0.06s ease,
    filter 0.06s ease,
    background 0.06s ease,
    box-shadow 0.06s ease;
}
.how-kb-key.is-pressed {
  transform: translateY(1.6px) scale(0.88);
  filter: brightness(0.9);
  background: #e4e8ef;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.08);
}
.how-kb-dark .how-kb-key.is-pressed {
  filter: brightness(1.3);
  background: #526074;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
}
.how-kb-key-accent.is-pressed {
  filter: brightness(1.08);
  background: linear-gradient(180deg, #4ab8f0, #0968d0);
}
.how-kb-dark .how-kb-key-accent.is-pressed {
  background: linear-gradient(180deg, #2eba50, #18963c);
}
/* Open only while the human typewriter is running (class from JS) */
.how-kb.is-open {
  transform: translateY(0);
  opacity: 1;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.2s ease;
}
.how-kb:not(.is-open) {
  transition:
    transform 0.32s ease,
    opacity 0.2s ease;
}
/* Live typewriter text — solid, no max-width CSS fake */
.how-type-live {
  max-width: none !important;
  max-height: none !important;
  opacity: 1 !important;
  overflow: visible;
  white-space: pre-wrap;
  animation: none !important;
  color: inherit;
}
.how-field-box .how-type-live {
  color: #0b1020;
  min-height: 1.2em;
}
.how-draft-b.how-type-live {
  color: #0b1020;
  min-height: 2.4em;
}
.how-wa-type-text.how-type-live {
  color: #e9edef !important;
  display: inline;
  white-space: pre-wrap;
}
.how-cursor-live {
  display: inline-block;
  width: 1.5px;
  height: 13px;
  margin-inline-start: 1px;
  background: var(--how-azure, #0b7cf0);
  animation: how-cursor-blink 1s steps(1) infinite;
  vertical-align: text-bottom;
}
@keyframes how-cursor-blink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .how-kb-key.is-pressed {
    transform: none;
  }
  .how-cursor-live {
    animation: none;
    opacity: 1;
  }
}
.how-kb-dark .how-kb-key {
  background: #3a4553;
  color: #e9edef;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}
.how-kb-key-wide {
  flex: 1.45;
}
.how-kb-key-spc {
  flex: 4.2;
}
.how-kb-key-accent {
  background: linear-gradient(180deg, #5ac8fa, #0b7cf0);
  color: #fff;
  box-shadow: 0 1px 0 rgba(8, 80, 180, 0.35);
}
.how-kb-dark .how-kb-key-accent {
  background: linear-gradient(180deg, #34c759, #1faa45);
}
.how-phone {
  position: relative;
}

.how-panel:not([data-inview="1"]) .how-kb {
  display: none;
}
@keyframes how-kb-story {
  0%,
  2% {
    transform: translateY(105%);
    opacity: 0;
  }
  4%,
  22% {
    transform: translateY(0);
    opacity: 1;
  }
  26%,
  100% {
    transform: translateY(105%);
    opacity: 0;
  }
}
@keyframes how-kb-ai {
  0%,
  16% {
    transform: translateY(105%);
    opacity: 0;
  }
  18%,
  38% {
    transform: translateY(0);
    opacity: 1;
  }
  42%,
  100% {
    transform: translateY(105%);
    opacity: 0;
  }
}
@keyframes how-kb-wa {
  0%,
  4% {
    transform: translateY(105%);
    opacity: 0;
  }
  6%,
  20% {
    transform: translateY(0);
    opacity: 1;
  }
  24%,
  100% {
    transform: translateY(105%);
    opacity: 0;
  }
}
/* When keyboard is up, tuck composer / CTA */
.how-panel[data-inview="1"] .how-step-1 .how-app-cta {
  transition: opacity 0.2s;
}
/* Feature-flow match auto-scroll + full-height stretch */
.ff-viz-match {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 220px;
  flex: 1;
}
.ff-match-card {
  overflow: hidden;
  flex: 0 0 auto;
  height: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.ff-jlist-viewport {
  flex: none;
  height: 168px;
  min-height: 168px;
  max-height: 168px;
  overflow: hidden;
  mask-image: linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.ff-jlist-track {
  display: flex;
  flex-direction: column;
  gap: 7px;
  animation: ff-jlist-scroll 28s linear infinite;
  will-change: transform;
}
@keyframes ff-jlist-scroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
/* Larger outlet logos in match / how / feature mocks */
.mu-match-outlet-logo {
  height: 18px;
  width: auto;
  max-width: 78px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}
.mu-row-meta-logos {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.mu-match-chev {
  width: 14px;
  height: 14px;
  opacity: 0.35;
  flex: none;
}
.ff-outlet-logo {
  display: block;
  width: auto;
  height: 16px;
  max-width: 72px;
  object-fit: contain;
  object-position: center;
  filter: none;
  flex: none;
}
.how-outlet-logo {
  height: 15px;
  width: auto;
  max-width: 64px;
  object-fit: contain;
  object-position: start center;
  display: inline-block;
  vertical-align: middle;
  filter: brightness(1.15) contrast(1.05);
  opacity: 1;
}
.how-outlet-logo-light {
  filter: none;
  opacity: 1;
  height: 14px;
  max-width: 60px;
}
/* Equal-height feature nodes — match card fills viz */
.ff-node {
  height: 100%;
}
.ff-rail {
  align-items: stretch;
}
.ff-node-2 {
  display: flex;
  flex-direction: column;
}
.ff-node-2 .ff-viz-match {
  flex: 0 0 auto;
  height: auto;
  min-height: 0;
}
.ff-node-2 .ff-match-card {
  flex: 0 0 auto;
  height: auto;
  min-height: 0;
}
.ff-node-2 .ff-jlist-viewport {
  flex: none;
  height: 168px;
  min-height: 168px;
  max-height: 168px;
}
/* One-shot confetti when reply lands — dense full-section burst */
.how-confetti-layer {
  pointer-events: none;
  position: absolute;
  inset: -40px -24px -20px;
  overflow: visible;
  z-index: 40;
}
.how-panel {
  position: relative;
  overflow: visible;
}
.how-confetti {
  position: absolute;
  width: 10px;
  height: 14px;
  border-radius: 2px;
  opacity: 0;
  will-change: transform, opacity;
}
.how-confetti.is-ribbon {
  border-radius: 1px;
}
.how-confetti.is-dot {
  border-radius: 50%;
}
.how-confetti.is-strip {
  width: 4px !important;
  border-radius: 1px;
}
.how-panel[data-confetti="1"] .how-confetti {
  animation: how-confetti-burst 2.8s cubic-bezier(0.12, 0.78, 0.18, 1) 1 forwards;
  animation-delay: var(--d, 0s);
}
@keyframes how-confetti-burst {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(0) scale(0.2);
  }
  6% {
    opacity: 1;
    transform: translate3d(calc(var(--dx) * 0.35), calc(var(--dy) * 0.4), 0)
      rotate(calc(var(--rot) * 0.4)) scale(1.15);
  }
  18% {
    opacity: 1;
    transform: translate3d(var(--dx), var(--dy), 0) rotate(var(--rot)) scale(1);
  }
  55% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(calc(var(--dx) * 1.45), calc(var(--dy) + 160px), 0)
      rotate(calc(var(--rot) * 3.2)) scale(0.55);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ff-jlist-track {
    animation: none;
  }
  .how-kb {
    display: none !important;
  }
  .how-panel[data-inview="1"] .how-step-2 .how-draft-h,
  .how-panel[data-inview="1"] .how-step-2 .how-draft-b,
  .how-panel[data-inview="1"] .how-wa-out .how-wa-type-text,
  .mu-pitch-screen .mu-story-line {
    max-width: 100% !important;
    opacity: 1 !important;
    animation: none !important;
  }
  .how-panel[data-confetti="1"] .how-confetti {
    animation: none;
    opacity: 0;
  }
}


/* Reach paper — hero sheet language (larger, brighter, above the media wall) */
.reach-paper {
  --rp-display: Georgia, "Times New Roman", "Frank Ruhl Libre", "Noto Serif Hebrew", serif;
  --rp-body: "Literata", "Source Serif 4", "Noto Serif Hebrew", Georgia, "Times New Roman", serif;
  --rp-meta: system-ui, -apple-system, "Segoe UI", "Literata", sans-serif;
  position: relative;
  z-index: 4;
  width: min(360px, calc(100vw - 48px));
  margin: 0;
  pointer-events: auto;
  overflow: visible;
  transform: rotate(-3.5deg) translateY(10px);
  opacity: 0.94;
  filter:
    drop-shadow(0 18px 28px rgba(6, 10, 22, 0.45))
    drop-shadow(0 4px 12px rgba(255, 252, 245, 0.35));
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.55s ease;
  isolation: isolate;
}
.reach-paper[data-inview="1"] {
  opacity: 1;
  transform: rotate(-3.5deg) translateY(0);
  animation: reach-paper-float 5.5s ease-in-out 0.7s infinite;
}
.reach-paper-svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 360px;
  overflow: visible;
}
.reach-paper-nameplate {
  font-family: var(--rp-display);
  font-style: normal;
}
.reach-paper-meta {
  font-family: var(--rp-meta);
}
.reach-paper-fo {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 4px 6px 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
  font-family: var(--rp-body);
  color: #0b1020;
  text-align: start;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.reach-copy .reach-paper-kicker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-bottom: 12px;
  flex: none;
  font-family: var(--rp-meta);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #6b1a12;
  min-height: 1.35em;
}
.reach-paper-kicker-label {
  flex: none;
  padding: 3px 8px 2px;
  border-radius: 4px;
  background: #ff4d2e;
  color: #fff;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
  box-shadow: 0 4px 10px -4px rgba(255, 77, 46, 0.55);
}
.reach-paper-kicker-rule {
  flex: none;
  width: 14px;
  height: 1px;
  background: #6b1a12;
  opacity: 0.45;
}
.reach-copy .reach-paper-h {
  margin: 0 0 10px;
  flex: none;
  font-family: var(--rp-display);
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: #0b1020;
  min-height: 2.3em;
  text-wrap: balance;
}
.reach-paper[data-lang="he"] .reach-paper-h {
  font-family: "Frank Ruhl Libre", "FrankRuehl", "David Libre", "Noto Serif Hebrew", Georgia, serif;
  font-weight: 900;
  letter-spacing: -0.005em;
}
.reach-paper-deck-rule {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  flex: none;
}
.reach-paper-deck-rule > span {
  flex: 1;
  height: 1px;
  background: #0b1020;
  opacity: 0.22;
}
.reach-paper-deck-rule > i {
  flex: none;
  width: 5px;
  height: 5px;
  border: 1px solid #0b1020;
  transform: rotate(45deg);
  opacity: 0.4;
}
.reach-paper-accent {
  margin: 0 0 12px;
  flex: none;
}
.reach-paper-accent-bar {
  display: block;
  width: 100px;
  height: 3px;
  border-radius: 1.5px;
  background: #0b7cf0;
  transform-origin: inline-start center;
  animation: reach-paper-accent 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.reach-copy .reach-paper-p {
  margin: 0;
  font-family: var(--rp-body);
  font-size: clamp(13px, 1.15vw, 14.5px);
  line-height: 1.55;
  color: #1a2236;
  flex: 1 1 auto;
  min-height: 0;
  /* Cap so long HE body scrolls inside the sheet */
  max-height: min(168px, 32vh);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(11, 16, 32, 0.35) rgba(11, 16, 32, 0.06);
  text-align: start;
  font-variation-settings: "opsz" 14;
  pointer-events: auto;
  touch-action: pan-y;
}
.reach-copy .reach-paper-p::-webkit-scrollbar {
  width: 4px;
}
.reach-copy .reach-paper-p::-webkit-scrollbar-thumb {
  background: rgba(11, 16, 32, 0.28);
  border-radius: 999px;
}
.reach-paper-p.is-set {
  animation: reach-paper-ink 0.35s ease both;
}
.reach-paper-type {
  white-space: pre-wrap;
}
.reach-paper-cursor {
  display: inline-block;
  width: 1.6px;
  height: 0.95em;
  margin-inline-start: 1px;
  vertical-align: text-bottom;
  background: #0b7cf0;
  animation: reach-paper-cursor 1s steps(1) infinite;
}
.reach-paper-skeleton {
  transition: opacity 0.35s ease;
}
.reach-paper[data-done="1"] .rp-confetti {
  animation: reach-paper-confetti 1.8s cubic-bezier(0.12, 0.78, 0.18, 1) 1 forwards;
  animation-delay: var(--d, 0s);
  transform-box: fill-box;
  transform-origin: center;
}
.rp-confetti {
  opacity: 0;
}
/*
 * Desktop: lede and newspaper sit in adjacent columns above the media wall.
 * Mobile stacks the newspaper under the lede.
 * Body scroll lives on `.reach-paper-p` inside the broadsheet.
 */
.reach-copy {
  max-height: none;
  overflow: visible;
  /* Breathing room from the reading-start edge (right in HE / left in EN). */
  padding-inline-start: clamp(20px, 3.5vw, 48px);
  padding-inline-end: clamp(12px, 2vw, 28px);
  box-sizing: border-box;
}
/* Short white lede ABOVE the broadsheet (outside the paper). */
.reach-copy-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: none;
  max-width: 40ch;
  order: 0;
  /* Keep the headline/body off the viewport edge in RTL. */
  padding-inline-start: clamp(8px, 1.5vw, 20px);
}
.reach-copy-text .kick {
  margin-bottom: 10px;
  color: var(--cyan, #1bc4fe);
}
.reach-copy-text h2 {
  color: #fff;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 12px;
  text-wrap: balance;
  letter-spacing: -0.02em;
}
.reach-copy-text p {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.6;
  margin: 0;
  max-width: 42ch;
}
/* Paper sits between lede and CTA */
.reach-copy > .reach-paper {
  flex: none;
  margin: 0;
  justify-self: center;
}
/* CTA button OUTSIDE the paper, below it — never sticky over the sheet */
.reach-copy > .btn-lg {
  align-self: flex-start;
  flex: none;
  order: 2;
  position: static;
  margin-top: 4px;
  z-index: 2;
}
@keyframes reach-paper-cursor {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}
@keyframes reach-paper-float {
  0%,
  100% {
    transform: rotate(-3.5deg) translateY(0);
  }
  50% {
    transform: rotate(-3.2deg) translateY(-8px);
  }
}
@keyframes reach-paper-accent {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}
@keyframes reach-paper-ink {
  from {
    opacity: 0.55;
  }
  to {
    opacity: 1;
  }
}
@keyframes reach-paper-confetti {
  0% {
    opacity: 0;
    transform: translate(0, 0) rotate(0) scale(0.2);
  }
  12% {
    opacity: 1;
    transform: translate(calc(var(--dx) * 0.4), calc(var(--dy) * 0.45))
      rotate(calc(var(--rot) * 0.4)) scale(1.1);
  }
  55% {
    opacity: 1;
    transform: translate(var(--dx), var(--dy)) rotate(var(--rot)) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(calc(var(--dx) * 1.35), calc(var(--dy) + 90px))
      rotate(calc(var(--rot) * 2.4)) scale(0.6);
  }
}
@media (prefers-reduced-motion: reduce) {
  .reach-paper-cursor {
    animation: none;
    opacity: 1;
  }
  .reach-paper,
  .reach-paper[data-inview="1"] {
    transform: none;
    animation: none;
    opacity: 1;
    filter: drop-shadow(0 18px 32px rgba(6, 10, 22, 0.4));
  }
  .reach-paper-accent-bar {
    animation: none;
  }
  .reach-paper[data-done="1"] .rp-confetti {
    animation: none;
    opacity: 0;
  }
}
@media (max-width: 640px) {
  .reach-copy {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .reach-paper,
  .reach-paper[data-inview="1"] {
    width: min(420px, calc(100vw - 32px));
    max-width: min(420px, calc(100vw - 32px));
    margin-inline: auto;
    transform: none;
    animation: none;
  }
  .reach-paper-svg {
    max-width: 100%;
  }
  .reach-copy {
    padding-inline: 0;
  }
  .reach-copy-text {
    padding-inline-start: 0;
  }
  .reach-copy .btn-lg {
    align-self: center;
  }
  .reach-copy-text {
    max-width: none;
    align-items: center;
    text-align: center;
  }
}

/* Media wall — animated journalist grid backdrop (no user scroll chrome).
   Compound selector beats .reach-art { pointer-events: none; overflow: hidden }. */
.reach-art.media-wall {
  pointer-events: none;
  overflow: hidden;
  outline: none;
}
.media-wall-scroll {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  display: block;
  pointer-events: none;
  will-change: transform;
  animation: media-wall-drift 32s ease-in-out infinite alternate;
}
.media-wall .glow {
  position: absolute;
  z-index: 1;
  inset: 18% 28%;
  pointer-events: none;
}
.media-wall-scroll > :last-child,
.media-wall-scroll .reach-illus {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
@keyframes media-wall-drift {
  from {
    transform: translate3d(0, 0, 0) scale(1.02);
  }
  to {
    transform: translate3d(-7%, -5%, 0) scale(1.06);
  }
}
@media (prefers-reduced-motion: reduce) {
  .media-wall-scroll {
    animation: none;
    inset: 0;
    width: 100%;
    height: 100%;
  }
}
