  /* ============ Pixie night — deliberate single-theme (the product site is
     dark-only by decision). Moonlight + ember on deep space. ============ */
  :root {
    --bg: #05070f;
    --ink: #f4f7ff;
    --dim: #98a2c3;
    --faint: rgba(152, 162, 195, 0.16);
    --moon: #bfe4ff;
    --moon-soft: rgba(191, 228, 255, 0.55);
    --ember: #e9c98c;
    --card-h: 100svh;
    --spring: cubic-bezier(.22, .9, .26, 1);
    --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
            "Segoe UI Variable Display", "Segoe UI", Inter, ui-sans-serif, sans-serif;
    /* Glass material recipe — used by every mockup surface */
    --glass-bg: linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.028));
    --glass-line: inset 0 1px 0 rgba(255,255,255,.12), inset 0 0 0 1px rgba(191,228,255,.07);
    --glass-drop: 0 24px 48px -16px rgba(0,0,0,.72);
  }
  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { background: var(--bg); -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
  body {
    background: var(--bg); color: var(--ink); font-family: var(--sans);
    -webkit-font-smoothing: antialiased; overflow: hidden; height: 100svh;
  }

  /* ================= Stage (desktop chrome) ================= */
  .stage { height: 100svh; display: grid; grid-template-columns: 1fr; }
  .rail { display: none; }
  .phone { position: relative; height: 100svh; width: 100%; }

  @media (min-width: 900px) {
    .stage { display: block; padding: 0; background: var(--bg); }
    .rail { display: none; }
    .phone { width: 100%; height: 100svh; border-radius: 0; border: none; box-shadow: none; background: var(--bg); justify-self: auto; }
    .phone::after { display: none; }
  }

  /* ================= The feed: snap cards ================= */
  .feed {
    height: 100%; overflow-y: auto; scroll-snap-type: y mandatory;
    scrollbar-width: none; overscroll-behavior-y: contain;
  }
  .feed::-webkit-scrollbar { display: none; }

  .card {
    height: var(--card-h); scroll-snap-align: start; scroll-snap-stop: always;
    position: relative; overflow: hidden;
    display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
    padding: 0 1.7rem calc(3.4rem + env(safe-area-inset-bottom));
    text-align: center;
  }

  .card .art { position: absolute; inset: 0 0 34%; display: grid; place-items: center; }
  /* Phones: tall vignettes were riding up under the top-bar scrim — start the
     art zone below its solid region. The copy block is bottom-anchored and
     positioned independently, so text does not move. */
  @media (max-width: 899px) {
    .card .art { inset: calc(72px + env(safe-area-inset-top)) 0 34%; }
  }
  .card .copy { position: relative; z-index: 5; max-width: 21.5rem; }

  .eyebrow {
    font-size: .68rem; font-weight: 620; letter-spacing: .30em;
    text-transform: uppercase; color: var(--moon-soft); margin: 0 0 .85rem;
  }
  .card h1, .card h2 {
    margin: 0; font-size: clamp(1.85rem, 8.6vw, 2.35rem);
    font-weight: 620; letter-spacing: -0.022em; line-height: 1.06; text-wrap: balance;
  }
  .card .sub {
    margin: .95rem 0 0; color: var(--dim); font-size: 1.0rem;
    font-weight: 420; line-height: 1.55; text-wrap: pretty;
  }
  .card .sub b { color: #dfe6fb; font-weight: 560; }

  .copy { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--spring), transform .7s var(--spring); }
  .card.live .copy { opacity: 1; transform: none; }

  /* ============ One-shot settle system ============ */
  .layer { opacity: 0; }
  .card.live .layer {
    animation: settle .85s var(--spring) both;
    animation-delay: var(--d, 0s);
  }
  @keyframes settle {
    from { opacity: 0; transform: translateY(44px) scale(.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }
  /* Rows that ARRIVE: they take no space until their moment, then grow in —
     pushing everything below them down, like a feed filling up live. */
  .grow { opacity: 0; max-height: 0; margin-top: 0; overflow: hidden; }
  .card.live .grow {
    animation: grow-in .7s var(--spring) both;
    animation-delay: var(--d, 0s);
  }
  @keyframes grow-in {
    from { opacity: 0; max-height: 0; margin-top: 0; transform: translateY(10px); }
    55%  { opacity: .7; max-height: var(--mh, 48px); margin-top: var(--mt, 5px); }
    to   { opacity: 1; max-height: var(--mh, 48px); margin-top: var(--mt, 5px); transform: none; }
  }

  /* Progress dots */
  .dots {
    position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
    display: flex; flex-direction: column; gap: 9px; z-index: 30;
  }
  .dots i {
    width: 5px; height: 5px; border-radius: 3px; background: rgba(152,162,195,.35);
    transition: height .35s var(--spring), background .35s;
  }
  .dots i.on { height: 18px; background: var(--moon); }

  /* Opaque-to-clear scrim under the chip and nav: content scrolling past the
     top bar fades out smoothly instead of colliding with the labels. Sits
     above card content (z 5) and below the bar itself (z 30). */
  .topfade {
    position: absolute; top: 0; left: 0; right: 0; z-index: 20; pointer-events: none;
    height: calc(104px + env(safe-area-inset-top));
    background: linear-gradient(to bottom, var(--bg) 0%, var(--bg) 45%, rgba(5,7,15,0) 100%);
  }

  .chip {
    position: absolute; top: calc(26px + env(safe-area-inset-top)); left: 18px; z-index: 30;
    display: flex; align-items: center; gap: .5rem; opacity: .92;
  }
  .chip svg { width: 20px; height: 20px; }
  .chip b { font-size: .88rem; font-weight: 640; letter-spacing: -0.01em; }
  .chip .by { font-size: .68rem; color: rgba(152,162,195,.75); white-space: nowrap; margin-left: -2px; }
  /* Narrow phones: the byline stacks under "Pixie" instead of running inline
     into the nav — branding stays, collision doesn't. */
  @media (max-width: 519px) {
    .chip { flex-wrap: wrap; max-width: 132px; row-gap: 0; }
    .chip .by { flex-basis: 100%; margin: -3px 0 0 28px; font-size: .6rem; }
  }

  .hint {
    position: absolute; bottom: calc(1.1rem + env(safe-area-inset-bottom)); left: 50%;
    transform: translateX(-50%); z-index: 6;
    color: rgba(152,162,195,.6); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: .35rem;
  }
  .hint::before {
    content: ""; width: 1px; height: 26px;
    background: linear-gradient(to top, transparent, rgba(191,228,255,.7));
    animation: rise-hint 1.8s ease-in-out infinite;
  }
  @keyframes rise-hint { 0% { transform: translateY(8px); opacity: 0; } 35% { opacity: 1; } 100% { transform: translateY(-8px); opacity: 0; } }

  .starfield { position: absolute; inset: 0; pointer-events: none; }

  /* ============ Desktop: the same ethos, full-viewport ============ */
  @media (min-width: 900px) {
    .topfade { height: 116px; }
    .chip { top: 28px; left: 36px; }
    .chip svg { width: 24px; height: 24px; }
    .chip b { font-size: 1rem; }
    .chip .by { font-size: .75rem; }
    .nav { top: 32px; right: 40px; gap: 24px; }
    .nav button { font-size: .88rem; }
    .dots { right: 28px; }
    .card { padding-left: 8vw; padding-right: 8vw; }
    /* Split sections: copy one side, the same illustration the other. */
    .card:not(.center) {
      display: grid; grid-template-columns: 1.05fr 1fr;
      align-items: center; column-gap: 4vw;
      text-align: left; justify-items: start;
      padding-bottom: 0;
    }
    .card:not(.center) .art {
      position: static; inset: auto; order: 2; justify-self: center; align-self: center;
      display: flex; justify-content: center;
    }
    .card:not(.center):nth-child(even) .art { order: 0; }
    .card:not(.center) .art > * { scale: 1.28; }
    .card:not(.center) .copy { max-width: 36rem; }
    .card h1, .card h2 { font-size: clamp(2.3rem, 3.5vw, 3.3rem); line-height: 1.04; }
    .card .sub { font-size: 1.12rem; max-width: 31rem; }
    .card.center { justify-content: center; padding-bottom: 0; }
    .card.center .copy { max-width: 40rem; }
    /* the sub's 31rem cap is narrower than the 40rem copy column — without
       auto margins its box hugs left and "centered" text sits off-axis */
    .card.center .sub { margin-inline: auto; }
    .card.center .art { inset: 0 0 44%; }
    .essay { max-width: 46rem; margin: 0 auto; padding-top: 110px; }
    .gridwrap { padding-top: 96px; }

    /* -- Continuous scroll: no snapping under a mouse wheel. Sections are
       bands that reveal as they enter the viewport — the same one-shot
       choreographies, driven by a smooth scroll instead of discreet blocks. */
    .feed { scroll-snap-type: none; }
    .card { scroll-snap-align: none; scroll-snap-stop: normal; height: auto; min-height: 84vh; padding-top: 6vh; padding-bottom: 6vh; }
    .card.center { min-height: 100vh; }

    /* -- Features: the width pays for itself — a catalog of illustrated
       panels, three across, each playing its choreography as it scrolls in. */
    /* Bento: a 6-unit grid. Cards span 2 (third), 3 (half), or 6 (band); rows
       are composed in DOM order so every band sums to 6 — a seamless rectangle. */
    .page[data-page="features"] .feed { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 20px; padding: 110px 4vw 90px; }
    .page[data-page="features"] .card,
    .page[data-page="features"] .card:not(.center) {
      grid-column: span 2;
      display: flex; flex-direction: column; justify-content: flex-end; gap: 6px;
      min-height: 540px; height: auto; padding: 26px 26px 24px; border-radius: 26px;
      background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
      box-shadow: inset 0 1px 0 rgba(255,255,255,.08), inset 0 0 0 1px rgba(191,228,255,.05);
      text-align: left; overflow: hidden;
    }
    .page[data-page="features"] .card .art { position: static; inset: auto; order: -1; flex: 1; display: grid; place-items: center; padding: 6px 0 16px; }
    .page[data-page="features"] .card .art > * { scale: 1; }
    .page[data-page="features"] .card h2 { font-size: 1.42rem; line-height: 1.12; }
    .page[data-page="features"] .card .sub { font-size: .92rem; max-width: none; }
    .page[data-page="features"] .card .copy { max-width: none; }
    .page[data-page="features"] .card.span { grid-column: 1 / -1; min-height: 340px; justify-content: center; align-items: center; text-align: center; }
    /* The opener's art must span the band, or the percentage-sized social
       graph shrink-wraps against itself and collapses. */
    .page[data-page="features"] .card.span .art { align-self: stretch; flex: none; }
    .page[data-page="features"] .card.span:has(.art) { min-height: 640px; }
    .page[data-page="features"] .card.span .copy { max-width: 620px; }
    .page[data-page="features"] .card.span h2 { font-size: 2rem; }
    /* Bento shapes. w3 = half-width tile; tall = extra height for the tall
       screens (Personal Feed's scrolling feed, Summon's long thread,
       Puppeteer's two panes). The opener and closing ask are bands outside
       the bento. */
    .page[data-page="features"] .card.w3 { grid-column: span 3; }
    .page[data-page="features"] .card.tall { min-height: 720px; }
    .phone:has(.page[data-page="features"].active) .dots { display: none; }
  }
  @media (min-width: 900px) and (max-width: 1399px) {
    /* Two-across: every tile respans to a half, and the DOM order pairs rows
       seamlessly — [RH BigBrain] [Feed Summon] [Puppeteer Social] [GroupThink
       Huddle] [Nudge InstaFetch] [Remember Spark]; the closing ask goes full
       width. */
    .page[data-page="features"] .card,
    .page[data-page="features"] .card.w3 { grid-column: span 3; }
    .page[data-page="features"] .card.span { grid-column: 1 / -1; }
  }

  /* ============ Pages + nav ============ */
  .page { display: none; position: absolute; inset: 0; }
  .page.active { display: block; }
  .nav {
    position: absolute; top: calc(28px + env(safe-area-inset-top)); right: 16px; z-index: 30;
    display: flex; gap: 14px;
  }
  .nav button {
    all: unset; cursor: pointer; font-size: .72rem; font-weight: 560;
    letter-spacing: .02em; color: rgba(152,162,195,.75); transition: color .3s;
    -webkit-tap-highlight-color: transparent;
  }
  .nav button.on { color: var(--moon); }

  /* ---- Features opener: the chandelier field. A dense, fully connected
     constellation of glowing droplets that spills past an oval fade — the
     picture continues beyond view. Messages are pulses: soft orbs of light
     travelling the strands, dozens overlapping on a closed 16s loop, over a
     slow phase-shifted twinkle. Generated — see the tables in git history. ---- */
  .sgraph { width: min(680px, 94%); height: auto; }
  .sgraph .edges line { stroke: rgba(191,228,255,.11); stroke-width: 1; }
  .sgraph .po {
    fill: url(#sg-pulseg); opacity: 0;
    animation-duration: 16s; animation-timing-function: linear; animation-iteration-count: infinite;
  }
  .sgraph .glow { fill: url(#sg-glow); animation: sg-twinkle 11s ease-in-out infinite; }
  .sgraph .core { fill: #eef6ff; animation: sg-breathe 9s ease-in-out infinite; }
  @keyframes sg-breathe { 0%, 100% { opacity: .95; } 50% { opacity: .5; } }
  @keyframes sg-twinkle { 0%, 100% { opacity: .42; } 50% { opacity: .2; } }
  @keyframes pp000 { 0%,89.0% { opacity:0; transform:translate(455.0px,5.9px); } 89.8% { opacity:.85; } 92.6% { opacity:.85; } 93.4%,100% { opacity:0; transform:translate(472.7px,45.3px); } }
  @keyframes pp001 { 0%,74.4% { opacity:0; transform:translate(572.4px,364.5px); } 75.4% { opacity:.85; } 78.7% { opacity:.85; } 79.7%,100% { opacity:0; transform:translate(600px,330px); } }
  @keyframes pp002 { 0%,83.9% { opacity:0; transform:translate(295.2px,189.5px); } 84.6% { opacity:.85; } 87.3% { opacity:.85; } 88.0%,100% { opacity:0; transform:translate(350px,210px); } }
  @keyframes pp003 { 0%,58.8% { opacity:0; transform:translate(293.5px,378.0px); } 59.8% { opacity:.85; } 63.1% { opacity:.85; } 64.1%,100% { opacity:0; transform:translate(387.5px,359.2px); } }
  @keyframes pp004 { 0%,61.4% { opacity:0; transform:translate(731.4px,52.4px); } 62.2% { opacity:.85; } 65.0% { opacity:.85; } 65.8%,100% { opacity:0; transform:translate(739.5px,-13.9px); } }
  @keyframes pp005 { 0%,61.2% { opacity:0; transform:translate(397.7px,13.2px); } 61.9% { opacity:.85; } 64.2% { opacity:.85; } 64.9%,100% { opacity:0; transform:translate(455.0px,5.9px); } }
  @keyframes pp006 { 0%,84.6% { opacity:0; transform:translate(192.2px,60.2px); } 85.6% { opacity:.85; } 89.1% { opacity:.85; } 90.1%,100% { opacity:0; transform:translate(80px,120px); } }
  @keyframes pp007 { 0%,74.3% { opacity:0; transform:translate(711.3px,313.9px); } 75.0% { opacity:.85; } 77.5% { opacity:.85; } 78.2%,100% { opacity:0; transform:translate(700.1px,373.5px); } }
  @keyframes pp008 { 0%,7.8% { opacity:0; transform:translate(503.7px,73.4px); } 8.6% { opacity:.85; } 11.2% { opacity:.85; } 12.0%,100% { opacity:0; transform:translate(470px,95px); } }
  @keyframes pp009 { 0%,45.8% { opacity:0; transform:translate(503.7px,73.4px); } 46.4% { opacity:.85; } 48.5% { opacity:.85; } 49.1%,100% { opacity:0; transform:translate(522.6px,136.4px); } }
  @keyframes pp010 { 0%,3.3% { opacity:0; transform:translate(503.0px,330.8px); } 4.1% { opacity:.85; } 6.9% { opacity:.85; } 7.7%,100% { opacity:0; transform:translate(520px,280px); } }
  @keyframes pp011 { 0%,94.0% { opacity:0; transform:translate(111.3px,148.7px); } 95.0% { opacity:.85; } 98.3% { opacity:.85; } 99.3%,100% { opacity:0; transform:translate(80px,120px); } }
  @keyframes pp012 { 0%,64.8% { opacity:0; transform:translate(572.4px,364.5px); } 65.8% { opacity:.85; } 69.2% { opacity:.85; } 70.2%,100% { opacity:0; transform:translate(611.3px,421.4px); } }
  @keyframes pp013 { 0%,64.8% { opacity:0; transform:translate(529.6px,382.1px); } 65.7% { opacity:.85; } 68.8% { opacity:.85; } 69.7%,100% { opacity:0; transform:translate(572.4px,364.5px); } }
  @keyframes pp014 { 0%,27.3% { opacity:0; transform:translate(516.3px,-17.0px); } 28.2% { opacity:.85; } 31.3% { opacity:.85; } 32.2%,100% { opacity:0; transform:translate(610.7px,-9.8px); } }
  @keyframes pp015 { 0%,79.3% { opacity:0; transform:translate(412.6px,225.8px); } 80.1% { opacity:.85; } 83.0% { opacity:.85; } 83.8%,100% { opacity:0; transform:translate(445.9px,203.8px); } }
  @keyframes pp016 { 0%,89.7% { opacity:0; transform:translate(711.3px,313.9px); } 90.6% { opacity:.85; } 94.0% { opacity:.85; } 94.9%,100% { opacity:0; transform:translate(700.1px,373.5px); } }
  @keyframes pp017 { 0%,13.3% { opacity:0; transform:translate(440.0px,133.5px); } 14.1% { opacity:.85; } 17.0% { opacity:.85; } 17.8%,100% { opacity:0; transform:translate(383.9px,156.5px); } }
  @keyframes pp018 { 0%,18.9% { opacity:0; transform:translate(316.0px,420.6px); } 19.7% { opacity:.85; } 22.5% { opacity:.85; } 23.3%,100% { opacity:0; transform:translate(387.5px,359.2px); } }
  @keyframes pp019 { 0%,35.4% { opacity:0; transform:translate(611.3px,421.4px); } 36.2% { opacity:.85; } 39.0% { opacity:.85; } 39.8%,100% { opacity:0; transform:translate(529.6px,382.1px); } }
  @keyframes pp020 { 0%,37.7% { opacity:0; transform:translate(140px,290px); } 38.6% { opacity:.85; } 41.8% { opacity:.85; } 42.7%,100% { opacity:0; transform:translate(164.2px,390.3px); } }
  @keyframes pp021 { 0%,65.0% { opacity:0; transform:translate(192.2px,60.2px); } 65.6% { opacity:.85; } 67.8% { opacity:.85; } 68.4%,100% { opacity:0; transform:translate(80px,120px); } }
  @keyframes pp022 { 0%,86.6% { opacity:0; transform:translate(187.2px,329.9px); } 87.5% { opacity:.85; } 90.7% { opacity:.85; } 91.6%,100% { opacity:0; transform:translate(293.5px,378.0px); } }
  @keyframes pp023 { 0%,44.5% { opacity:0; transform:translate(652.8px,420.6px); } 45.1% { opacity:.85; } 47.4% { opacity:.85; } 48.0%,100% { opacity:0; transform:translate(666.7px,342.5px); } }
  @keyframes pp024 { 0%,88.0% { opacity:0; transform:translate(417.2px,90.8px); } 89.0% { opacity:.85; } 92.3% { opacity:.85; } 93.3%,100% { opacity:0; transform:translate(472.7px,45.3px); } }
  @keyframes pp025 { 0%,18.0% { opacity:0; transform:translate(676.4px,72.8px); } 18.8% { opacity:.85; } 21.8% { opacity:.85; } 22.6%,100% { opacity:0; transform:translate(610.7px,-9.8px); } }
  @keyframes pp026 { 0%,73.3% { opacity:0; transform:translate(75.7px,384.7px); } 73.9% { opacity:.85; } 76.0% { opacity:.85; } 76.6%,100% { opacity:0; transform:translate(-3.8px,317.8px); } }
  @keyframes pp027 { 0%,1.1% { opacity:0; transform:translate(316.9px,142.9px); } 1.8% { opacity:.85; } 4.3% { opacity:.85; } 5.0%,100% { opacity:0; transform:translate(295.2px,189.5px); } }
  @keyframes pp028 { 0%,46.9% { opacity:0; transform:translate(111.3px,148.7px); } 47.7% { opacity:.85; } 50.4% { opacity:.85; } 51.2%,100% { opacity:0; transform:translate(110.3px,79.5px); } }
  @keyframes pp029 { 0%,58.6% { opacity:0; transform:translate(80px,120px); } 59.5% { opacity:.85; } 62.6% { opacity:.85; } 63.5%,100% { opacity:0; transform:translate(192.2px,60.2px); } }
  @keyframes pp030 { 0%,2.2% { opacity:0; transform:translate(676.4px,72.8px); } 3.0% { opacity:.85; } 6.1% { opacity:.85; } 6.9%,100% { opacity:0; transform:translate(644.2px,134.5px); } }
  @keyframes pp031 { 0%,50.6% { opacity:0; transform:translate(676.4px,72.8px); } 51.5% { opacity:.85; } 54.9% { opacity:.85; } 55.8%,100% { opacity:0; transform:translate(644.2px,134.5px); } }
  @keyframes pp032 { 0%,49.8% { opacity:0; transform:translate(180.8px,275.5px); } 50.7% { opacity:.85; } 54.1% { opacity:.85; } 55.0%,100% { opacity:0; transform:translate(187.2px,329.9px); } }
  @keyframes pp033 { 0%,69.6% { opacity:0; transform:translate(110.3px,79.5px); } 70.5% { opacity:.85; } 73.8% { opacity:.85; } 74.7%,100% { opacity:0; transform:translate(80px,120px); } }
  @keyframes pp034 { 0%,29.6% { opacity:0; transform:translate(295.2px,189.5px); } 30.6% { opacity:.85; } 33.9% { opacity:.85; } 34.9%,100% { opacity:0; transform:translate(322.9px,246.9px); } }
  @keyframes pp035 { 0%,18.3% { opacity:0; transform:translate(445.9px,203.8px); } 18.9% { opacity:.85; } 21.1% { opacity:.85; } 21.7%,100% { opacity:0; transform:translate(498.7px,188.7px); } }
  @keyframes pp036 { 0%,8.3% { opacity:0; transform:translate(110.3px,79.5px); } 9.0% { opacity:.85; } 11.7% { opacity:.85; } 12.4%,100% { opacity:0; transform:translate(192.2px,60.2px); } }
  @keyframes pp037 { 0%,39.6% { opacity:0; transform:translate(417.2px,90.8px); } 40.5% { opacity:.85; } 43.7% { opacity:.85; } 44.6%,100% { opacity:0; transform:translate(472.7px,45.3px); } }
  @keyframes pp038 { 0%,59.0% { opacity:0; transform:translate(-59.6px,50.7px); } 59.9% { opacity:.85; } 63.1% { opacity:.85; } 64.0%,100% { opacity:0; transform:translate(80px,120px); } }
  @keyframes pp039 { 0%,64.1% { opacity:0; transform:translate(383.9px,156.5px); } 65.1% { opacity:.85; } 68.4% { opacity:.85; } 69.4%,100% { opacity:0; transform:translate(350px,210px); } }
  @keyframes pp040 { 0%,47.5% { opacity:0; transform:translate(522.6px,136.4px); } 48.4% { opacity:.85; } 51.5% { opacity:.85; } 52.4%,100% { opacity:0; transform:translate(582.7px,96.0px); } }
  @keyframes pp041 { 0%,78.3% { opacity:0; transform:translate(529.6px,382.1px); } 79.2% { opacity:.85; } 82.4% { opacity:.85; } 83.3%,100% { opacity:0; transform:translate(611.3px,421.4px); } }
  @keyframes pp042 { 0%,3.5% { opacity:0; transform:translate(451.5px,426.8px); } 4.3% { opacity:.85; } 7.2% { opacity:.85; } 8.0%,100% { opacity:0; transform:translate(500.8px,412.1px); } }
  @keyframes pp043 { 0%,45.2% { opacity:0; transform:translate(221.5px,278.9px); } 45.8% { opacity:.85; } 48.2% { opacity:.85; } 48.8%,100% { opacity:0; transform:translate(187.2px,329.9px); } }
  @keyframes pp044 { 0%,79.0% { opacity:0; transform:translate(522.6px,136.4px); } 80.0% { opacity:.85; } 83.5% { opacity:.85; } 84.5%,100% { opacity:0; transform:translate(620px,170px); } }
  @keyframes pp045 { 0%,12.6% { opacity:0; transform:translate(350px,210px); } 13.5% { opacity:.85; } 16.5% { opacity:.85; } 17.4%,100% { opacity:0; transform:translate(383.9px,156.5px); } }
  @keyframes pp046 { 0%,30.7% { opacity:0; transform:translate(350px,210px); } 31.5% { opacity:.85; } 34.2% { opacity:.85; } 35.0%,100% { opacity:0; transform:translate(386.1px,267.7px); } }
  @keyframes pp047 { 0%,19.7% { opacity:0; transform:translate(187.2px,329.9px); } 20.4% { opacity:.85; } 23.1% { opacity:.85; } 23.8%,100% { opacity:0; transform:translate(221.5px,278.9px); } }
  @keyframes pp048 { 0%,17.0% { opacity:0; transform:translate(140px,290px); } 17.8% { opacity:.85; } 20.4% { opacity:.85; } 21.2%,100% { opacity:0; transform:translate(134.4px,238.6px); } }
  @keyframes pp049 { 0%,18.3% { opacity:0; transform:translate(666.7px,342.5px); } 18.9% { opacity:.85; } 21.3% { opacity:.85; } 21.9%,100% { opacity:0; transform:translate(623.5px,258.1px); } }
  @keyframes pp050 { 0%,30.4% { opacity:0; transform:translate(221.5px,278.9px); } 31.0% { opacity:.85; } 33.2% { opacity:.85; } 33.8%,100% { opacity:0; transform:translate(187.2px,329.9px); } }
  @keyframes pp051 { 0%,17.9% { opacity:0; transform:translate(666.7px,342.5px); } 18.7% { opacity:.85; } 21.6% { opacity:.85; } 22.4%,100% { opacity:0; transform:translate(652.8px,420.6px); } }
  @keyframes pp052 { 0%,24.3% { opacity:0; transform:translate(455.0px,5.9px); } 25.3% { opacity:.85; } 28.6% { opacity:.85; } 29.6%,100% { opacity:0; transform:translate(397.7px,13.2px); } }
  @keyframes pp053 { 0%,38.1% { opacity:0; transform:translate(600px,330px); } 39.1% { opacity:.85; } 42.4% { opacity:.85; } 43.4%,100% { opacity:0; transform:translate(572.4px,364.5px); } }
  @keyframes pp054 { 0%,72.1% { opacity:0; transform:translate(293.5px,378.0px); } 73.0% { opacity:.85; } 76.2% { opacity:.85; } 77.1%,100% { opacity:0; transform:translate(187.2px,329.9px); } }
  @keyframes pp055 { 0%,17.4% { opacity:0; transform:translate(652.8px,420.6px); } 18.3% { opacity:.85; } 21.5% { opacity:.85; } 22.4%,100% { opacity:0; transform:translate(666.7px,342.5px); } }
  @keyframes pp056 { 0%,1.0% { opacity:0; transform:translate(193.2px,15.4px); } 1.7% { opacity:.85; } 4.3% { opacity:.85; } 5.0%,100% { opacity:0; transform:translate(155.8px,-8.2px); } }
  @keyframes pp057 { 0%,88.8% { opacity:0; transform:translate(180.8px,275.5px); } 89.6% { opacity:.85; } 92.7% { opacity:.85; } 93.5%,100% { opacity:0; transform:translate(140px,290px); } }
  @keyframes pp058 { 0%,38.2% { opacity:0; transform:translate(516.3px,-17.0px); } 38.8% { opacity:.85; } 41.2% { opacity:.85; } 41.8%,100% { opacity:0; transform:translate(455.0px,5.9px); } }
  @keyframes pp059 { 0%,94.0% { opacity:0; transform:translate(386.1px,267.7px); } 94.8% { opacity:.85; } 97.9% { opacity:.85; } 98.7%,100% { opacity:0; transform:translate(350px,210px); } }
  @keyframes pp060 { 0%,92.1% { opacity:0; transform:translate(620px,170px); } 92.7% { opacity:.85; } 94.8% { opacity:.85; } 95.4%,100% { opacity:0; transform:translate(644.2px,134.5px); } }
  @keyframes pp061 { 0%,24.1% { opacity:0; transform:translate(620px,170px); } 24.8% { opacity:.85; } 27.5% { opacity:.85; } 28.2%,100% { opacity:0; transform:translate(582.7px,96.0px); } }
  @keyframes pp062 { 0%,60.9% { opacity:0; transform:translate(140px,290px); } 61.5% { opacity:.85; } 63.5% { opacity:.85; } 64.1%,100% { opacity:0; transform:translate(180.8px,275.5px); } }
  @keyframes pp063 { 0%,85.1% { opacity:0; transform:translate(75.7px,384.7px); } 85.9% { opacity:.85; } 88.8% { opacity:.85; } 89.6%,100% { opacity:0; transform:translate(-3.8px,317.8px); } }
  @keyframes pp064 { 0%,48.9% { opacity:0; transform:translate(180.8px,275.5px); } 49.8% { opacity:.85; } 53.1% { opacity:.85; } 54.0%,100% { opacity:0; transform:translate(221.5px,278.9px); } }
  @keyframes pp065 { 0%,76.1% { opacity:0; transform:translate(350px,210px); } 76.7% { opacity:.85; } 78.9% { opacity:.85; } 79.5%,100% { opacity:0; transform:translate(445.9px,203.8px); } }
  @keyframes pp066 { 0%,88.2% { opacity:0; transform:translate(164.2px,390.3px); } 88.9% { opacity:.85; } 91.6% { opacity:.85; } 92.3%,100% { opacity:0; transform:translate(140px,290px); } }
  @keyframes pp067 { 0%,50.9% { opacity:0; transform:translate(386.1px,267.7px); } 51.7% { opacity:.85; } 54.7% { opacity:.85; } 55.5%,100% { opacity:0; transform:translate(322.9px,246.9px); } }
  @keyframes pp068 { 0%,39.5% { opacity:0; transform:translate(417.2px,90.8px); } 40.3% { opacity:.85; } 43.1% { opacity:.85; } 43.9%,100% { opacity:0; transform:translate(397.7px,13.2px); } }
  @keyframes pp069 { 0%,26.9% { opacity:0; transform:translate(700.1px,373.5px); } 27.7% { opacity:.85; } 30.8% { opacity:.85; } 31.6%,100% { opacity:0; transform:translate(711.3px,313.9px); } }
  @keyframes pp070 { 0%,70.3% { opacity:0; transform:translate(-1.6px,252.1px); } 70.9% { opacity:.85; } 73.0% { opacity:.85; } 73.6%,100% { opacity:0; transform:translate(82.1px,218.5px); } }
  @keyframes pp071 { 0%,59.5% { opacity:0; transform:translate(192.2px,60.2px); } 60.2% { opacity:.85; } 62.9% { opacity:.85; } 63.6%,100% { opacity:0; transform:translate(277.2px,-0.2px); } }
  @keyframes pp072 { 0%,29.6% { opacity:0; transform:translate(739.5px,-13.9px); } 30.3% { opacity:.85; } 33.0% { opacity:.85; } 33.7%,100% { opacity:0; transform:translate(633.2px,37.8px); } }
  @keyframes pp073 { 0%,85.1% { opacity:0; transform:translate(134.4px,238.6px); } 85.9% { opacity:.85; } 88.5% { opacity:.85; } 89.3%,100% { opacity:0; transform:translate(82.1px,218.5px); } }
  @keyframes pp074 { 0%,71.0% { opacity:0; transform:translate(503.0px,330.8px); } 71.6% { opacity:.85; } 73.7% { opacity:.85; } 74.3%,100% { opacity:0; transform:translate(500.8px,412.1px); } }
  @keyframes pp075 { 0%,67.9% { opacity:0; transform:translate(350px,210px); } 68.7% { opacity:.85; } 71.4% { opacity:.85; } 72.2%,100% { opacity:0; transform:translate(445.9px,203.8px); } }
  @keyframes pp076 { 0%,10.8% { opacity:0; transform:translate(192.2px,60.2px); } 11.6% { opacity:.85; } 14.6% { opacity:.85; } 15.4%,100% { opacity:0; transform:translate(277.2px,-0.2px); } }
  @keyframes pp077 { 0%,80.9% { opacity:0; transform:translate(75.7px,384.7px); } 81.6% { opacity:.85; } 84.2% { opacity:.85; } 84.9%,100% { opacity:0; transform:translate(164.2px,390.3px); } }
  @keyframes pp078 { 0%,41.6% { opacity:0; transform:translate(529.6px,382.1px); } 42.4% { opacity:.85; } 45.5% { opacity:.85; } 46.3%,100% { opacity:0; transform:translate(600px,330px); } }
  @keyframes pp079 { 0%,60.1% { opacity:0; transform:translate(164.2px,390.3px); } 61.0% { opacity:.85; } 64.0% { opacity:.85; } 64.9%,100% { opacity:0; transform:translate(75.7px,384.7px); } }
  @keyframes pp080 { 0%,49.9% { opacity:0; transform:translate(582.7px,96.0px); } 50.9% { opacity:.85; } 54.4% { opacity:.85; } 55.4%,100% { opacity:0; transform:translate(644.2px,134.5px); } }
  @keyframes pp081 { 0%,22.4% { opacity:0; transform:translate(-1.6px,252.1px); } 23.0% { opacity:.85; } 25.3% { opacity:.85; } 25.9%,100% { opacity:0; transform:translate(48.7px,168.3px); } }
  @keyframes pp082 { 0%,58.7% { opacity:0; transform:translate(711.3px,313.9px); } 59.4% { opacity:.85; } 62.0% { opacity:.85; } 62.7%,100% { opacity:0; transform:translate(700.1px,373.5px); } }
  @keyframes pp083 { 0%,68.2% { opacity:0; transform:translate(316.0px,420.6px); } 69.1% { opacity:.85; } 72.1% { opacity:.85; } 73.0%,100% { opacity:0; transform:translate(387.5px,359.2px); } }
  @keyframes pp084 { 0%,70.8% { opacity:0; transform:translate(263.6px,223.2px); } 71.4% { opacity:.85; } 73.8% { opacity:.85; } 74.4%,100% { opacity:0; transform:translate(221.5px,278.9px); } }
  @keyframes pp085 { 0%,61.4% { opacity:0; transform:translate(192.2px,60.2px); } 62.1% { opacity:.85; } 64.4% { opacity:.85; } 65.1%,100% { opacity:0; transform:translate(193.2px,15.4px); } }
  @keyframes pp086 { 0%,0.9% { opacity:0; transform:translate(140px,290px); } 1.6% { opacity:.85; } 4.0% { opacity:.85; } 4.7%,100% { opacity:0; transform:translate(134.4px,238.6px); } }
  @keyframes pp087 { 0%,9.6% { opacity:0; transform:translate(470px,95px); } 10.4% { opacity:.85; } 13.2% { opacity:.85; } 14.0%,100% { opacity:0; transform:translate(440.0px,133.5px); } }
  @keyframes pp088 { 0%,85.8% { opacity:0; transform:translate(350px,210px); } 86.4% { opacity:.85; } 88.8% { opacity:.85; } 89.4%,100% { opacity:0; transform:translate(412.6px,225.8px); } }
  @keyframes pp089 { 0%,35.1% { opacity:0; transform:translate(192.2px,60.2px); } 35.9% { opacity:.85; } 38.6% { opacity:.85; } 39.4%,100% { opacity:0; transform:translate(155.8px,-8.2px); } }
  @keyframes pp090 { 0%,46.5% { opacity:0; transform:translate(440.0px,133.5px); } 47.1% { opacity:.85; } 49.4% { opacity:.85; } 50.0%,100% { opacity:0; transform:translate(383.9px,156.5px); } }
  @keyframes pp091 { 0%,42.0% { opacity:0; transform:translate(350px,210px); } 42.9% { opacity:.85; } 46.2% { opacity:.85; } 47.1%,100% { opacity:0; transform:translate(386.1px,267.7px); } }
  @keyframes pp092 { 0%,70.2% { opacity:0; transform:translate(493.0px,230.5px); } 70.9% { opacity:.85; } 73.6% { opacity:.85; } 74.3%,100% { opacity:0; transform:translate(445.9px,203.8px); } }
  @keyframes pp093 { 0%,61.4% { opacity:0; transform:translate(666.7px,342.5px); } 62.4% { opacity:.85; } 65.9% { opacity:.85; } 66.9%,100% { opacity:0; transform:translate(600px,330px); } }
  @keyframes pp094 { 0%,71.3% { opacity:0; transform:translate(48.7px,168.3px); } 72.2% { opacity:.85; } 75.5% { opacity:.85; } 76.4%,100% { opacity:0; transform:translate(82.1px,218.5px); } }
  @keyframes pp095 { 0%,4.3% { opacity:0; transform:translate(350px,210px); } 5.1% { opacity:.85; } 8.1% { opacity:.85; } 8.9%,100% { opacity:0; transform:translate(412.6px,225.8px); } }
  @keyframes pp096 { 0%,4.9% { opacity:0; transform:translate(350px,210px); } 5.7% { opacity:.85; } 8.4% { opacity:.85; } 9.2%,100% { opacity:0; transform:translate(386.1px,267.7px); } }
  @keyframes pp097 { 0%,4.5% { opacity:0; transform:translate(350px,210px); } 5.3% { opacity:.85; } 8.1% { opacity:.85; } 8.9%,100% { opacity:0; transform:translate(322.9px,246.9px); } }
  @keyframes pp098 { 0%,4.6% { opacity:0; transform:translate(350px,210px); } 5.4% { opacity:.85; } 8.3% { opacity:.85; } 9.1%,100% { opacity:0; transform:translate(263.6px,223.2px); } }
  @keyframes pp099 { 0%,5.2% { opacity:0; transform:translate(350px,210px); } 6.0% { opacity:.85; } 8.8% { opacity:.85; } 9.6%,100% { opacity:0; transform:translate(295.2px,189.5px); } }
  @keyframes pp100 { 0%,5.2% { opacity:0; transform:translate(350px,210px); } 5.9% { opacity:.85; } 8.3% { opacity:.85; } 9.0%,100% { opacity:0; transform:translate(316.9px,142.9px); } }
  @keyframes pp101 { 0%,4.5% { opacity:0; transform:translate(350px,210px); } 5.4% { opacity:.85; } 8.5% { opacity:.85; } 9.4%,100% { opacity:0; transform:translate(383.9px,156.5px); } }
  @keyframes pp102 { 0%,4.9% { opacity:0; transform:translate(350px,210px); } 5.7% { opacity:.85; } 8.7% { opacity:.85; } 9.5%,100% { opacity:0; transform:translate(445.9px,203.8px); } }
  @keyframes pp103 { 0%,4.7% { opacity:0; transform:translate(350px,210px); } 5.6% { opacity:.85; } 8.6% { opacity:.85; } 9.5%,100% { opacity:0; transform:translate(440.0px,133.5px); } }
  @keyframes pp104 { 0%,19.0% { opacity:0; transform:translate(316.9px,142.9px); } 19.7% { opacity:.85; } 22.4% { opacity:.85; } 23.1%,100% { opacity:0; transform:translate(350px,210px); } }
  @keyframes pp105 { 0%,28.8% { opacity:0; transform:translate(295.2px,189.5px); } 29.7% { opacity:.85; } 32.7% { opacity:.85; } 33.6%,100% { opacity:0; transform:translate(350px,210px); } }
  @keyframes pp106 { 0%,38.1% { opacity:0; transform:translate(386.1px,267.7px); } 38.8% { opacity:.85; } 41.3% { opacity:.85; } 42.0%,100% { opacity:0; transform:translate(350px,210px); } }
  @keyframes pp107 { 0%,46.6% { opacity:0; transform:translate(383.9px,156.5px); } 47.5% { opacity:.85; } 50.7% { opacity:.85; } 51.6%,100% { opacity:0; transform:translate(350px,210px); } }
  @keyframes pp108 { 0%,55.4% { opacity:0; transform:translate(322.9px,246.9px); } 56.1% { opacity:.85; } 58.5% { opacity:.85; } 59.2%,100% { opacity:0; transform:translate(350px,210px); } }
  @keyframes pp109 { 0%,65.9% { opacity:0; transform:translate(445.9px,203.8px); } 66.7% { opacity:.85; } 69.7% { opacity:.85; } 70.5%,100% { opacity:0; transform:translate(350px,210px); } }
  @keyframes pp110 { 0%,73.5% { opacity:0; transform:translate(440.0px,133.5px); } 74.2% { opacity:.85; } 76.5% { opacity:.85; } 77.2%,100% { opacity:0; transform:translate(350px,210px); } }
  @keyframes pp111 { 0%,83.5% { opacity:0; transform:translate(412.6px,225.8px); } 84.1% { opacity:.85; } 86.4% { opacity:.85; } 87.0%,100% { opacity:0; transform:translate(350px,210px); } }
  @keyframes pp112 { 0%,12% { opacity:0; transform:translate(210px,140px); } 12.8% { opacity:.85; } 15.9% { opacity:.85; } 16.7%,100% { opacity:0; transform:translate(263.6px,223.2px); } }
  @keyframes pp113 { 0%,12% { opacity:0; transform:translate(210px,140px); } 12.8% { opacity:.85; } 15.8% { opacity:.85; } 16.6%,100% { opacity:0; transform:translate(295.2px,189.5px); } }
  @keyframes pp114 { 0%,12% { opacity:0; transform:translate(210px,140px); } 12.9% { opacity:.85; } 16.0% { opacity:.85; } 16.9%,100% { opacity:0; transform:translate(192.2px,60.2px); } }
  @keyframes pp115 { 0%,12% { opacity:0; transform:translate(210px,140px); } 12.9% { opacity:.85; } 15.9% { opacity:.85; } 16.8%,100% { opacity:0; transform:translate(111.3px,148.7px); } }
  @keyframes pp116 { 0%,30% { opacity:0; transform:translate(140px,290px); } 30.8% { opacity:.85; } 33.5% { opacity:.85; } 34.3%,100% { opacity:0; transform:translate(92.5px,301.3px); } }
  @keyframes pp117 { 0%,30% { opacity:0; transform:translate(140px,290px); } 30.8% { opacity:.85; } 33.5% { opacity:.85; } 34.3%,100% { opacity:0; transform:translate(134.4px,238.6px); } }
  @keyframes pp118 { 0%,30% { opacity:0; transform:translate(140px,290px); } 30.7% { opacity:.85; } 33.3% { opacity:.85; } 34.0%,100% { opacity:0; transform:translate(164.2px,390.3px); } }
  @keyframes pp119 { 0%,30% { opacity:0; transform:translate(140px,290px); } 30.8% { opacity:.85; } 33.8% { opacity:.85; } 34.6%,100% { opacity:0; transform:translate(180.8px,275.5px); } }
  @keyframes pp120 { 0%,30% { opacity:0; transform:translate(140px,290px); } 30.7% { opacity:.85; } 33.3% { opacity:.85; } 34.0%,100% { opacity:0; transform:translate(187.2px,329.9px); } }
  @keyframes pp121 { 0%,46% { opacity:0; transform:translate(80px,120px); } 46.7% { opacity:.85; } 49.2% { opacity:.85; } 49.9%,100% { opacity:0; transform:translate(192.2px,60.2px); } }
  @keyframes pp122 { 0%,46% { opacity:0; transform:translate(80px,120px); } 46.8% { opacity:.85; } 49.6% { opacity:.85; } 50.4%,100% { opacity:0; transform:translate(-59.6px,50.7px); } }
  @keyframes pp123 { 0%,46% { opacity:0; transform:translate(80px,120px); } 46.9% { opacity:.85; } 50.1% { opacity:.85; } 51.0%,100% { opacity:0; transform:translate(82.1px,218.5px); } }
  @keyframes pp124 { 0%,46% { opacity:0; transform:translate(80px,120px); } 46.9% { opacity:.85; } 50.0% { opacity:.85; } 50.9%,100% { opacity:0; transform:translate(110.3px,79.5px); } }
  @keyframes pp125 { 0%,46% { opacity:0; transform:translate(80px,120px); } 46.7% { opacity:.85; } 49.4% { opacity:.85; } 50.1%,100% { opacity:0; transform:translate(111.3px,148.7px); } }
  @keyframes pp126 { 0%,46% { opacity:0; transform:translate(80px,120px); } 46.7% { opacity:.85; } 49.2% { opacity:.85; } 49.9%,100% { opacity:0; transform:translate(48.7px,168.3px); } }
  @keyframes pp127 { 0%,62% { opacity:0; transform:translate(520px,280px); } 62.7% { opacity:.85; } 65.3% { opacity:.85; } 66.0%,100% { opacity:0; transform:translate(600px,330px); } }
  @keyframes pp128 { 0%,62% { opacity:0; transform:translate(520px,280px); } 62.8% { opacity:.85; } 65.4% { opacity:.85; } 66.2%,100% { opacity:0; transform:translate(493.0px,230.5px); } }
  @keyframes pp129 { 0%,62% { opacity:0; transform:translate(520px,280px); } 62.7% { opacity:.85; } 65.1% { opacity:.85; } 65.8%,100% { opacity:0; transform:translate(503.0px,330.8px); } }
  @keyframes pp130 { 0%,62% { opacity:0; transform:translate(520px,280px); } 62.9% { opacity:.85; } 66.1% { opacity:.85; } 67.0%,100% { opacity:0; transform:translate(498.7px,188.7px); } }
  @keyframes pp131 { 0%,78% { opacity:0; transform:translate(470px,95px); } 78.8% { opacity:.85; } 81.6% { opacity:.85; } 82.4%,100% { opacity:0; transform:translate(503.7px,73.4px); } }
  @keyframes pp132 { 0%,78% { opacity:0; transform:translate(470px,95px); } 78.8% { opacity:.85; } 81.8% { opacity:.85; } 82.6%,100% { opacity:0; transform:translate(417.2px,90.8px); } }
  @keyframes pp133 { 0%,78% { opacity:0; transform:translate(470px,95px); } 78.8% { opacity:.85; } 81.4% { opacity:.85; } 82.2%,100% { opacity:0; transform:translate(440.0px,133.5px); } }
  @keyframes pp134 { 0%,78% { opacity:0; transform:translate(470px,95px); } 78.8% { opacity:.85; } 81.8% { opacity:.85; } 82.6%,100% { opacity:0; transform:translate(522.6px,136.4px); } }
  @keyframes pp135 { 0%,78% { opacity:0; transform:translate(470px,95px); } 78.8% { opacity:.85; } 81.5% { opacity:.85; } 82.3%,100% { opacity:0; transform:translate(472.7px,45.3px); } }
  @keyframes pp136 { 0%,90% { opacity:0; transform:translate(600px,330px); } 90.8% { opacity:.85; } 93.4% { opacity:.85; } 94.2%,100% { opacity:0; transform:translate(520px,280px); } }
  @keyframes pp137 { 0%,90% { opacity:0; transform:translate(600px,330px); } 90.7% { opacity:.85; } 93.2% { opacity:.85; } 93.9%,100% { opacity:0; transform:translate(623.5px,258.1px); } }
  @keyframes pp138 { 0%,90% { opacity:0; transform:translate(600px,330px); } 90.8% { opacity:.85; } 93.4% { opacity:.85; } 94.2%,100% { opacity:0; transform:translate(666.7px,342.5px); } }
  @keyframes pp139 { 0%,90% { opacity:0; transform:translate(600px,330px); } 90.7% { opacity:.85; } 93.1% { opacity:.85; } 93.8%,100% { opacity:0; transform:translate(529.6px,382.1px); } }
  @keyframes pp140 { 0%,90% { opacity:0; transform:translate(600px,330px); } 90.8% { opacity:.85; } 93.9% { opacity:.85; } 94.7%,100% { opacity:0; transform:translate(572.4px,364.5px); } }

  /* ============ Features: illustrated snap cards ============ */
  .f-tags { display: inline-flex; gap: 5px; margin-left: 8px; vertical-align: 1px; }
  .f-tags i {
    font-style: normal; font-size: .5rem; font-weight: 640; letter-spacing: .1em;
    padding: 2px 6px; border-radius: 999px;
  }
  .f-tags .tg-p { color: rgba(233,201,140,.9); box-shadow: inset 0 0 0 1px rgba(233,201,140,.4); }
  .f-tags .tg-h { color: rgba(191,228,255,.9); box-shadow: inset 0 0 0 1px rgba(191,228,255,.4); }
  .fx { display: flex; flex-direction: column; align-items: center; gap: 11px; width: 258px; }
  .fx-chip {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .68rem; font-weight: 560; color: #dfe6fb; padding: 5px 12px; border-radius: 999px;
    background: rgba(255,255,255,.06);
    box-shadow: inset 0 0 0 1px rgba(152,162,195,.22);
  }
  .fx-chip.ember { color: #f0e9d8; box-shadow: inset 0 0 0 1px rgba(233,201,140,.35); background: rgba(233,201,140,.08); }
  .fx-arrow { width: 14px; height: 14px; opacity: .55; }
  .fx-arrow path { stroke: #98a2c3; stroke-width: 2.2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
  .fx .thread, .fx .recall { width: 100%; }
  /* Chat headers sit LEFT everywhere: when a thread/recall is itself the fx
     column, .fx's align-items:center would shrink-wrap and center the heads. */
  .thread.fx, .recall.fx { align-items: stretch; }
  /* Rings */
  .ringpath { stroke-dasharray: var(--f) 100; stroke-dashoffset: var(--f); fill: none; stroke-linecap: round; }
  .card.live .ringpath { animation: ringdraw 1.1s var(--spring) forwards; animation-delay: var(--d, 0s); }
  @keyframes ringdraw { to { stroke-dashoffset: 0; } }
  .ringtrack { fill: none; stroke: rgba(152,162,195,.16); }
  /* Devices */
  .devrow { display: flex; align-items: center; gap: 12px; }
  .dev { border-radius: 13px; position: relative; overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12), inset 0 0 0 1px rgba(152,162,195,.2), 0 14px 28px -14px rgba(0,0,0,.7); }
  .dev.phone { width: 56px; height: 86px; }
  .dev.pad { width: 76px; height: 96px; }
  .dev .scr { position: absolute; inset: 5px; border-radius: 9px; background: #0a0e1c; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 4px; }
  .dev.off .scr { background: #06080f; }
  .dev .batt { font-size: .5rem; font-weight: 640; color: #ff8d8d; }
  .dev .line { width: 80%; height: 4px; border-radius: 2px; background: rgba(191,228,255,.35); }
  .dev .line.s { width: 55%; }
  .dev .ok { font-size: .52rem; font-weight: 600; color: var(--moon); text-align: center; line-height: 1.3; }
  /* Huddle circle */
  .hud { position: relative; width: 168px; height: 150px; }
  .hud svg.links { position: absolute; inset: 0; }
  .hud svg.links circle { fill: none; stroke: rgba(191,228,255,.28); stroke-dasharray: 3 7; }
  .hud .avatar { position: absolute; width: 34px; height: 34px; }
  .hud .avatar svg { width: 18px; height: 18px; }
  /* Mini feed */
  .mini-post { display: flex; align-items: center; gap: 8px; width: 100%;
    border-radius: 14px; padding: 9px 11px;
    background: rgba(255,255,255,.055);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), inset 0 0 0 1px rgba(152,162,195,.16); }
  .mini-post .avatar { width: 22px; height: 22px; font-size: .56rem; flex: none; }
  .mini-post p { margin: 0; flex: 1; font-size: .72rem; color: #dfe6fb; text-align: left; }
  .mini-post p b { color: #fff; font-weight: 620; margin-right: 4px; }
  .mini-post .c-react { width: 16px; height: 16px; }
  /* File card */
  .filecard { display: flex; align-items: center; gap: 9px; border-radius: 16px; padding: 11px 14px;
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12), inset 0 0 0 1px rgba(152,162,195,.2), 0 14px 28px -14px rgba(0,0,0,.7); }
  .filecard svg.doc { width: 20px; height: 20px; }
  .filecard b { font-size: .74rem; color: #eef3ff; font-weight: 600; }
  .filecard .locky { margin-left: 4px; width: 20px; height: 20px; border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #eaf5ff, #a9cdf2 78%);
    display: grid; place-items: center; box-shadow: 0 0 14px rgba(191,228,255,.4); }
  .filecard .locky svg { width: 10px; height: 10px; }
  .who-row { font-size: .62rem; font-weight: 620; color: rgba(152,162,195,.85); align-self: flex-end; padding-right: 4px; }
  .who-row b { color: var(--moon); }
  /* Ring legend — Apple-Health figure/goal, per the site's visual */
  .leg { display: flex; flex-direction: column; gap: 9px; text-align: left; }
  .leg > div { display: flex; align-items: flex-start; gap: 7px; }
  .leg i { width: 8px; height: 8px; border-radius: 4px; flex: none; margin-top: 2px; }
  .leg .lbl { display: block; font-size: .54rem; font-weight: 620; letter-spacing: .16em; text-transform: uppercase; color: #dfe6fb; }
  .leg .val { display: block; font-size: .74rem; font-weight: 640; font-variant-numeric: tabular-nums; line-height: 1.3; }
  .leg .val span { font-weight: 400; color: rgba(152,162,195,.7); }
  .leg .foot { font-size: .5rem; font-weight: 620; letter-spacing: .16em; text-transform: uppercase; color: rgba(152,162,195,.55); margin-top: 2px; }
  .ringcol { display: flex; flex-direction: column; align-items: center; gap: 5px; }
  .ringcol .rname { font-size: .56rem; font-weight: 620; letter-spacing: .2em; text-transform: uppercase; color: var(--moon); }
  .rings-row { display: flex; align-items: center; gap: 18px; }
  .card .fx, .card .thread, .card .recall { position: relative; }
  /* Compact real posts for the feed scroll */
  .fpost { flex: none; border-radius: 16px; overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.028));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.1), inset 0 0 0 1px rgba(191,228,255,.06), 0 14px 28px -16px rgba(0,0,0,.7); }
  .fpost .fp-head { display: flex; align-items: center; gap: 7px; padding: 8px 11px 7px; }
  .fpost .fp-head .avatar { width: 20px; height: 20px; font-size: .5rem; }
  .fpost .fp-head b { font-size: .72rem; font-weight: 630; color: #eef3ff; }
  .fpost .fp-head time { margin-left: auto; font-size: .6rem; color: rgba(152,162,195,.7); }
  .fpost img { display: block; width: 100%; height: clamp(120px, 17svh, 150px); object-fit: cover; }
  .fpost .fp-cap { padding: 8px 11px 10px; font-size: .7rem; color: #cdd5ec; text-align: left; line-height: 1.45; }
  .fpost .fp-cap b { color: #eef3ff; font-weight: 630; margin-right: 4px; }
  .fpost .fp-reacts { display: flex; gap: 5px; padding: 0 11px 9px; margin-top: -3px; }
  .fpost .fp-reacts span { display: inline-flex; align-items: center; gap: 4px; font-size: .6rem; font-weight: 580; color: #dfe6fb;
    padding: 2px 8px; border-radius: 999px; background: rgba(255,255,255,.06); box-shadow: inset 0 0 0 1px rgba(152,162,195,.2);
    font-variant-numeric: tabular-nums; }
  .fpost .fp-reacts svg { width: 9px; height: 9px; }
  /* Summon's privacy signature: the dashed bubble, like the app's tag */
  .p-bub.private { border: 1.4px dashed rgba(223,241,255,.6); }
  .p-head .via { font-style: normal; color: var(--moon); font-weight: 660; }
  /* Scrolling mini feed */
  .scrollfeed { width: 100%; height: clamp(300px, 44svh, 400px); overflow-y: hidden; scrollbar-width: none;
    display: flex; flex-direction: column; gap: 9px; }
  .scrollfeed::-webkit-scrollbar { display: none; }
  .mini-post { flex: none; flex-wrap: wrap; }
  .mini-post .mp-time { font-size: .58rem; color: rgba(152,162,195,.6); margin-left: auto; font-variant-numeric: tabular-nums; }
  .mini-post .mp-reacts { width: 100%; display: flex; gap: 5px; padding: 6px 0 0 30px; }
  .mini-post .mp-reacts span { display: inline-flex; align-items: center; gap: 4px; font-size: .6rem; color: #dfe6fb;
    padding: 2px 7px; border-radius: 999px; background: rgba(255,255,255,.06); box-shadow: inset 0 0 0 1px rgba(152,162,195,.2); }
  .mini-post .mp-reacts svg { width: 9px; height: 9px; }
  /* Spark tapback */
  .spark-wrap { position: relative; align-self: flex-start; max-width: 210px; }
  .tapback { position: absolute; top: -11px; right: -9px; width: 22px; height: 22px; border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #eaf5ff, #a9cdf2 78%);
    box-shadow: inset 0 1px 1px rgba(255,255,255,.6), 0 5px 14px -4px rgba(90,140,220,.6);
    display: grid; place-items: center; }
  .tapback svg { width: 11px; height: 11px; }
  .tapback.t2 { right: 15px; }
  /* Sent-bubble variant: reactions sit top-left, wrapper hugs the right edge. */
  .spark-wrap.right { align-self: flex-end; }
  .spark-wrap.right .tapback { left: -9px; right: auto; }
  .spark-wrap.right .tapback.t2 { left: 15px; right: auto; }
  /* File attachment inside a Pixie bubble */
  .p-attach { margin-top: 6px; }

  /* ============ Philosophy: quiet typographic cards ============ */
  .philo h2 { font-size: clamp(1.7rem, 7.6vw, 2.1rem); }
  .philo .sub { font-size: .95rem; }
  .philo .copy { max-width: 22.5rem; }
  .philo-quote { color: #dfe6fb; font-size: 1.02rem; line-height: 1.6; font-weight: 460; text-wrap: balance; }
  .philo-quote em { font-style: normal; color: var(--moon); }
  .philo .accent { color: var(--ember); font-weight: 560; }
  .cta-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; align-items: center; margin-top: 1.5rem; }
  /* An open email form inside a cta-row takes its own full-width row: centered
     on the card, it can't clip against the card edge or paint over its
     neighbor pill. */
  .cta-row .rap[data-open] { flex-basis: 100%; }
  .cta-row .pill { margin-top: 0; }
  .ghost-pill {
    display: inline-flex; align-items: center; padding: .78rem 1.4rem; border-radius: 999px;
    color: var(--moon); font-weight: 560; font-size: .95rem; letter-spacing: -0.01em; cursor: pointer;
    box-shadow: inset 0 0 0 1px rgba(191,228,255,.4);
    -webkit-tap-highlight-color: transparent;
  }
  /* ============ The thesis: a reading page ============ */
  .essay { padding: calc(64px + env(safe-area-inset-top)) 24px 56px; text-align: left; }
  .back-btn {
    all: unset; cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
    font-size: .78rem; font-weight: 560; color: var(--moon); margin-bottom: 22px;
    -webkit-tap-highlight-color: transparent;
  }
  .essay h1, .essay h2 { margin: .5rem 0 1.6rem; font-size: 1.62rem; font-weight: 620; letter-spacing: -0.022em; line-height: 1.15; text-wrap: balance; }
  .essay p { margin: 0 0 1.15em; font-size: .92rem; line-height: 1.75; color: #b9c2de; }
  .essay p b { color: #eef3ff; font-weight: 570; }
  .essay .pull {
    margin: 1.6em 0; padding-left: 14px; border-left: 2px solid rgba(191,228,255,.45);
    color: #dfe6fb; font-size: 1.02rem; line-height: 1.6; font-weight: 480;
  }
  .essay .end { text-align: center; margin-top: 2rem; }
  /* ============ Tech diagrams ============ */
  .noderow { display: flex; align-items: center; gap: 10px; position: relative; }
  .endnode { width: 34px; height: 34px; border-radius: 50%; flex: none;
    display: grid; place-items: center; font-size: .72rem; font-weight: 640; color: #0d1420; }
  .courier { border-radius: 16px; padding: 10px 13px; text-align: center;
    background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.1), inset 0 0 0 1px rgba(152,162,195,.2); }
  .courier b { display: block; font-size: .64rem; font-weight: 630; color: #eef3ff; letter-spacing: .06em; }
  .courier span { display: block; margin-top: 3px; font-size: .56rem; color: rgba(152,162,195,.75); line-height: 1.5; }
  .cipher-node { font-family: "SF Mono", ui-monospace, Menlo, monospace; font-size: .62rem; color: rgba(191,228,255,.6); letter-spacing: .08em; }
  .envelope {
    width: 26px; height: 19px; border-radius: 5px; position: relative; flex: none;
    background: linear-gradient(180deg, #d7ecff, #a9cdf2);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 4px 12px -3px rgba(90,140,220,.5);
  }
  .envelope::after { content: ""; position: absolute; inset: 3px 3px auto;
    height: 7px; border-radius: 2px; background: rgba(38,74,132,.5); filter: blur(1.5px); }
  .envelope.route { position: absolute; left: 17px; top: 50%; margin-top: -9.5px;
    transform: translateX(-50%); opacity: 0; z-index: 2; }
  .card.live .envelope.route { animation: courier-route 3s var(--spring) both; animation-delay: var(--d, .6s); }
  @keyframes courier-route {
    0%   { opacity: 0; left: 17px; }
    18%  { opacity: 1; left: 17px; }
    45%  { left: 50%; }
    58%  { left: 50%; }
    88%  { opacity: 1; left: calc(100% - 17px); }
    100% { opacity: 1; left: calc(100% - 17px); }
  }
  .strike { position: relative; }
  .strike::after { content: ""; position: absolute; left: -6%; right: -6%; top: 50%;
    height: 2px; border-radius: 1px; background: #ff8d8d; transform: rotate(-16deg);
    box-shadow: 0 0 8px rgba(255,120,120,.5); }
  .seatrow { display: flex; align-items: flex-end; gap: 18px; }
  .seatrow .devlab { font-size: .56rem; color: rgba(152,162,195,.7); text-align: center; margin-top: 6px; }
  .seat-chip { position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    font-size: .5rem; font-weight: 660; letter-spacing: .12em; color: #14100a;
    padding: 2px 8px; border-radius: 999px;
    background: radial-gradient(circle at 35% 30%, #f6e2b8, #e9c98c 75%);
    box-shadow: 0 0 14px rgba(233,201,140,.6); }
  .ghost-pill.sm { margin-top: 1.05rem; }
  a.ghost-pill { text-decoration: none; }
  /* ============ Philosophy constellations ============ */
  .constellation { width: 260px; height: 210px; }
  .fireglow { animation: breathe 6s ease-in-out infinite; transform-origin: center; }
  /* dots that scatter OUT from the gathering point, then rest apart */
  .scat { opacity: 0; }
  .card.live .scat {
    animation: scatter 1.3s var(--spring) forwards;
    animation-delay: var(--d, 0s);
  }
  @keyframes scatter {
    from { opacity: .95; transform: translate(var(--fx), var(--fy)); }
    to   { opacity: .55; transform: translate(0, 0); }
  }
  /* threads Pixie draws back across the distance */
  .threadline { fill: none; stroke-dasharray: 1; stroke-dashoffset: 1; }
  .card.live .threadline { animation: fan-draw .9s var(--spring) forwards; animation-delay: var(--d, 0s); }
  /* the far dot warms as its thread arrives */
  .warmdot { fill: #5a6a8c; opacity: .55; }
  .card.live .warmdot { animation: warm .7s ease-out forwards; animation-delay: var(--d, 0s); }
  @keyframes warm { to { fill: #e9c98c; opacity: 1; } }

  .c1 { background: radial-gradient(140% 90% at 50% 0%, #0d1226 0%, var(--bg) 62%); }
  .c2 { background: radial-gradient(120% 80% at 50% 12%, #0a1524 0%, var(--bg) 64%); }
  .c3 { background: radial-gradient(120% 80% at 50% 12%, #101228 0%, var(--bg) 64%); }
  .c4 { background: radial-gradient(120% 80% at 50% 12%, #131320 0%, var(--bg) 64%); }
  .c5 { background: radial-gradient(120% 80% at 50% 12%, #171407 0%, var(--bg) 68%); }
  .c6 { background: radial-gradient(120% 80% at 50% 12%, #0b0f22 0%, var(--bg) 64%); }
  .c7 { background: radial-gradient(140% 100% at 50% 100%, #0d1226 0%, var(--bg) 66%); }

  /* ============================================================
     Shared mockup atoms — the Apple-mockup material kit
     ============================================================ */
  .glass {
    background: var(--glass-bg);
    box-shadow: var(--glass-line), var(--glass-drop);
    backdrop-filter: blur(18px) saturate(1.25);
    -webkit-backdrop-filter: blur(18px) saturate(1.25);
  }
  .appicon {
    width: 38px; height: 38px; border-radius: 12px; flex: none;
    background: linear-gradient(145deg, #a8d4f5 0%, #6d95d8 55%, #4a63a8 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.45), inset 0 -6px 12px rgba(10,16,40,.35),
      0 6px 14px -4px rgba(0,0,0,.6);
    display: grid; place-items: center;
  }
  .appicon svg { width: 22px; height: 22px; }
  .avatar {
    border-radius: 50%;
    display: grid; place-items: center;
    font-weight: 640; color: #0a1020;
    box-shadow: inset 0 1px 1px rgba(255,255,255,.55), inset 0 -4px 8px rgba(10,16,40,.28),
      0 4px 10px -2px rgba(0,0,0,.55);
  }
  .av-m { background: radial-gradient(circle at 32% 28%, #eaf5ff, #9cc3ec 68%, #6f93c7); }
  .av-s { background: radial-gradient(circle at 32% 28%, #ffeecf, #e0b988 68%, #b28c55); }
  .av-l { background: radial-gradient(circle at 32% 28%, #e9e2ff, #b3a8e6 68%, #7f76b8); }
  .shadow-pool {
    position: absolute; left: 50%; transform: translateX(-50%);
    border-radius: 50%; background: rgba(0,0,0,.55); filter: blur(14px);
  }

  /* ---- 1 · Hero ---- */
  .halo {
    position: absolute; width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(191,228,255,.24), rgba(191,228,255,.05) 46%, transparent 68%);
    filter: blur(26px);
  }
  /* Settle once, then keep breathing — the loop starts exactly where the
     settle ends (opacity .9, scale 1), so the handoff is invisible. */
  .card.live .halo.layer {
    animation-name: halo-settle, halo-breathe;
    animation-duration: 1.4s, 8s;
    animation-timing-function: var(--spring), ease-in-out;
    animation-iteration-count: 1, infinite;
    animation-fill-mode: both, none;
    animation-delay: var(--d, 0s), calc(var(--d, 0s) + 1.4s);
  }
  @keyframes halo-settle {
    from { opacity: 0; transform: scale(.6); }
    60%  { opacity: 1; transform: scale(1.12); }
    to   { opacity: .9; transform: scale(1); }
  }
  @keyframes halo-breathe {
    0%, 100% { opacity: .9; transform: scale(1); }
    50%      { opacity: .62; transform: scale(1.07); }
  }
  .hero-art { position: relative; display: grid; place-items: center; }
  .mark { filter: drop-shadow(0 2px 18px rgba(191,228,255,.45)) drop-shadow(0 12px 40px rgba(120,160,255,.25)); }
  /* Bloom in, then float — v1's hero movement, ported: a slow 7s bob with a
     hint of rotation, starting from the bloom's rest pose. */
  .card.live .mark.layer {
    animation-name: bloom, pixie-float;
    animation-duration: 1.1s, 7s;
    animation-timing-function: var(--spring), ease-in-out;
    animation-iteration-count: 1, infinite;
    animation-fill-mode: both, none;
    animation-delay: var(--d, 0s), calc(var(--d, 0s) + 1.1s);
  }
  @keyframes bloom {
    from { opacity: 0; transform: scale(.72) rotate(-14deg); }
    65%  { opacity: 1; transform: scale(1.06) rotate(2deg); }
    to   { opacity: 1; transform: scale(1) rotate(0); }
  }
  @keyframes pixie-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-14px) rotate(1.5deg); }
  }

  /* ---- 2 · Share: the post as the poster sees it — compact, feed-grammar ---- */
  .post-view { width: 272px; text-align: left; }
  .post {
    border-radius: 20px; padding: 0; display: flex; flex-direction: column;
    height: clamp(330px, 52svh, 425px); overflow-y: hidden;
    scrollbar-width: none;
  }
  .post::-webkit-scrollbar { display: none; }
  .post > * { flex: none; }
  .post .po-head { display: flex; align-items: center; gap: 8px; padding: 9px 12px 8px; }
  .post .po-head .avatar { width: 22px; height: 22px; font-size: .56rem; }
  .post .po-head b { font-size: .76rem; font-weight: 630; color: #eef3ff; }
  .post .po-head time { margin-left: auto; font-size: .64rem; color: rgba(152,162,195,.7); }
  /* Edge-to-edge media, video peeking — carousel grammar. */
  .po-media { display: flex; gap: 2px; }
  .po-media .m-photo { flex: 1; min-width: 0; }
  .po-media .m-photo img { display: block; width: 100%; height: clamp(220px, 32svh, 300px); object-fit: cover; }
  .po-media .m-video { position: relative; width: 58px; flex: none; overflow: hidden; }
  .po-media .m-video img { display: block; width: 100%; height: clamp(96px, 14svh, 128px); object-fit: cover; object-position: 62% 50%; }
  .po-media .m-video .play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 22px; height: 22px; border-radius: 50%;
    background: rgba(10,16,32,.55); backdrop-filter: blur(4px);
    box-shadow: inset 0 0 0 1px rgba(223,241,255,.5);
    display: grid; place-items: center;
  }
  .po-media .m-video .play i {
    width: 0; height: 0; margin-left: 2px;
    border-style: solid; border-width: 4px 0 4px 6.5px;
    border-color: transparent transparent transparent #dff1ff;
  }
  .po-media .m-video .dur {
    position: absolute; right: 3px; bottom: 4px;
    font-size: .54rem; font-weight: 600; color: #eef3ff;
    background: rgba(6,10,22,.65); border-radius: 5px; padding: 1px 4px;
    font-variant-numeric: tabular-nums;
  }
  /* Action row: the Pixie reaction tally, flush left like a feed. */
  .reacts { display: flex; align-items: center; gap: 5px; padding: 7px 12px 0; }
  .reacts span {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: .64rem; font-weight: 580; color: #dfe6fb; padding: 2px 8px; border-radius: 999px;
    background: rgba(255,255,255,.06);
    box-shadow: inset 0 0 0 1px rgba(152,162,195,.2);
    font-variant-numeric: tabular-nums;
  }
  .reacts svg { width: 10px; height: 10px; }
  .reacts .cnt { font-weight: 620; min-width: .58em; }
  .reacts .cnt.pop { display: inline-block; animation: cnt-pop .34s var(--spring); }
  @keyframes cnt-pop { 40% { transform: scale(1.45); } }
  .po-dots { display: flex; justify-content: center; gap: 5px; padding: 8px 0 0; }
  .po-dots i { width: 4px; height: 4px; border-radius: 2px; background: rgba(152,162,195,.35); }
  .po-dots i:first-child { background: var(--moon); }
  .post .po-cap { padding: 6px 12px 0; font-size: .72rem; line-height: 1.4; color: #cdd5ec; }
  .post .po-cap b { color: #eef3ff; font-weight: 630; margin-right: 4px; }
  /* Comments, feed-compact: name + text rows. Each pair is still sealed 1:1. */
  .cmts { display: flex; flex-direction: column; padding: 2px 12px 0; }
  .cmt-row { display: flex; align-items: flex-start; gap: 7px; }
  .cmt-row .avatar { width: 16px; height: 16px; font-size: .44rem; flex: none; margin-top: 1px; }
  .cmt-row p { margin: 0; flex: 1; min-width: 0; font-size: .7rem; line-height: 1.4; color: #cdd5ec; }
  .cmt-row p b { color: #eef3ff; font-weight: 630; margin-right: 4px; }
  .cmt-row.reply { padding-left: 23px; }
  /* Tiny reactions on replies — a glyph badge popping onto the row. */
  .cmts .c-react-line { padding-left: 23px; }
  .cmts .c-react-line.reply { padding-left: 46px; }
  .c-react {
    flex: none; width: 17px; height: 17px; border-radius: 50%; margin-top: 1px;
    display: grid; place-items: center;
    background: rgba(255,255,255,.07);
    box-shadow: inset 0 0 0 1px rgba(152,162,195,.28);
  }
  .c-react svg { width: 9px; height: 9px; }
  .pop-in { opacity: 0; }
  .card.live .pop-in {
    animation: badge-pop .5s var(--spring) both;
    animation-delay: var(--d, 0s);
  }
  @keyframes badge-pop {
    from { opacity: 0; transform: scale(0); }
    70%  { opacity: 1; transform: scale(1.35); }
    to   { opacity: 1; transform: scale(1); }
  }

  /* The 1:1 signature: just the two of you, sealed. */
  .duo {
    flex: none; display: flex; align-items: center; gap: 3px;
    padding: 2px 6px; border-radius: 999px; margin-top: 1px;
    background: rgba(255,255,255,.05);
    box-shadow: inset 0 0 0 1px rgba(152,162,195,.25);
  }
  .duo i { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
  .duo i + i { margin-left: -3px; }
  .duo .d-you { background: radial-gradient(circle at 32% 28%, #d6dfea, #91a2b8 70%); }
  .duo svg { width: 8px; height: 8px; margin-left: 1px; opacity: .8; }
  .post .whisper {
    font-size: .6rem; color: rgba(152,162,195,.6); letter-spacing: .02em;
    text-align: center; padding: 0 12px; margin-bottom: 10px;
  }

  /* ---- 3 · Show up: the nudge lands inside Maya's thread ---- */
  .thread { width: 272px; display: flex; flex-direction: column; gap: 10px; text-align: left; }
  .t-head { display: flex; align-items: center; gap: 8px; padding-bottom: 2px; }
  .t-head .avatar { width: 26px; height: 26px; font-size: .64rem; }
  .t-head b { font-size: .8rem; font-weight: 620; color: #eef3ff; letter-spacing: -0.005em; }
  .av-pixie { background: radial-gradient(circle at 32% 28%, #eaf5ff, #9cc3ec 68%, #6f93c7); }
  .av-pixie svg { width: 15px; height: 15px; }
  .t-head::after {
    content: ""; flex: 1; height: 1px; margin-left: 4px;
    background: linear-gradient(90deg, rgba(152,162,195,.25), transparent);
  }
  /* Humans speak in warm tones — the same lit, dimensional treatment:
     light ember for the user, deep quiet ember for the peer. */
  .user-bubble {
    align-self: flex-end; max-width: 216px;
    background: linear-gradient(180deg, #c2cedd 0%, #91a2b8 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.55), 0 10px 26px -8px rgba(120,140,170,.42);
    color: #ffffff; font-size: .84rem; font-weight: 500; letter-spacing: -0.005em; line-height: 1.45;
    padding: 9px 13px; border-radius: 18px 18px 4px 18px;
    position: relative; z-index: 0; overflow: hidden;
  }
  .user-bubble::before {
    content: ""; position: absolute; inset: 6px; z-index: -1;
    border-radius: 13px 13px 3px 13px;
    background: rgba(46,58,76,.68);
    filter: blur(4px);
  }
  .human-bubble {
    align-self: flex-start; max-width: 210px;
    background: linear-gradient(180deg, #f4dfb2 0%, #ddb877 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.55), 0 10px 26px -8px rgba(200,160,90,.4);
    color: #ffffff; font-size: .84rem; font-weight: 500; letter-spacing: -0.005em; line-height: 1.4;
    padding: 9px 13px; border-radius: 18px 18px 18px 4px;
    position: relative; z-index: 0; overflow: hidden;
  }
  .human-bubble::before {
    content: ""; position: absolute; inset: 6px; z-index: -1;
    border-radius: 13px 13px 13px 3px;
    background: rgba(112,74,18,.6);
    filter: blur(4px);
  }
  .msg-time { align-self: flex-end; padding-right: 4px; font-size: .64rem; color: rgba(152,162,195,.65); font-variant-numeric: tabular-nums; margin-top: -4px; }
  /* Puppeteer: act one plays inside Claude's own GUI — cream, coral asterisk,
     tan prompt block, bordered tool-use row, serif reply. Pixie's dark
     watch-glass world only begins when the message lands in Mom's thread. */
  .claude-win { width: 100%; border-radius: 16px; background: #faf9f5; padding: 12px 13px;
    display: flex; flex-direction: column; gap: 9px; text-align: left;
    box-shadow: 0 14px 34px -14px rgba(0,0,0,.6), inset 0 0 0 1px rgba(61,57,41,.08); }
  .cw-head { display: flex; align-items: center; gap: 6px; }
  .cw-head svg { width: 13px; height: 13px; flex: none; }
  .cw-head b { font-size: .74rem; font-weight: 620; color: #3d3929; letter-spacing: -0.005em; }
  .cw-user { align-self: flex-end; max-width: 210px; background: #f0eee6; border-radius: 12px;
    padding: 8px 11px; font-size: .78rem; font-weight: 480; color: #3d3929; line-height: 1.45; }
  .cw-tool { display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
    font-family: "SF Mono", ui-monospace, Menlo, monospace; font-size: .58rem; color: #6c6a60;
    background: #ffffff; border: 1px solid #e4e0d5; border-radius: 9px; padding: 6px 9px; }
  .cw-tool i { font-style: normal; color: #2f9e73; font-weight: 700; }
  .cw-reply { font-family: "New York", ui-serif, Georgia, serif; font-size: .8rem;
    font-weight: 460; color: #3d3929; line-height: 1.5; padding: 0 2px; }
  /* Pixie bubble: solid moonlight — the Pixie voice, everywhere it speaks. */
  .pixie-tag { align-self: flex-start; max-width: 236px; display: flex; flex-direction: column; gap: 4px; }
  .pixie-tag .p-head { display: flex; align-items: center; gap: 5px; padding-left: 2px; }
  .pixie-tag .p-head svg { width: 11px; height: 11px; }
  .pixie-tag .p-head span { font-size: .64rem; font-weight: 620; color: var(--moon); letter-spacing: .02em; }
  .pixie-tag .p-bub {
    background: linear-gradient(180deg, #d7ecff 0%, #a9cdf2 100%);
    border-radius: 18px 18px 18px 4px;
    padding: 9px 13px;
    position: relative; z-index: 0; overflow: hidden;
    color: #ffffff; font-size: .84rem; font-weight: 500; letter-spacing: -0.005em; line-height: 1.45;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.65), 0 10px 26px -8px rgba(90,140,220,.45);
  }
  .pixie-tag .p-bub::before {
    content: ""; position: absolute; inset: 6px; z-index: -1;
    border-radius: 13px 13px 13px 3px;
    background: rgba(38,74,132,.62);
    filter: blur(4px);
  }
  .pixie-tag .p-time { padding-left: 4px; font-size: .64rem; color: rgba(152,162,195,.65); font-variant-numeric: tabular-nums; }
  /* Peer message group: name on top, solid bubble, time below. */
  .maya-tag { align-self: flex-start; max-width: 216px; display: flex; flex-direction: column; gap: 4px; }
  .maya-tag .m-head { padding-left: 4px; font-size: .64rem; font-weight: 620; color: rgba(233,201,140,.85); letter-spacing: .02em; }
  .maya-tag .m-time { padding-left: 4px; font-size: .64rem; color: rgba(152,162,195,.65); font-variant-numeric: tabular-nums; }
  .composer {
    display: flex; align-items: center; gap: 9px;
    border-radius: 999px; padding: 8px 8px 8px 15px; margin-top: 2px;
  }
  .composer span { flex: 1; font-size: .8rem; color: rgba(152,162,195,.65); }
  .composer .send {
    width: 26px; height: 26px; border-radius: 50%; flex: none;
    background: radial-gradient(circle at 35% 30%, #eaf5ff, #a9cdf2 78%);
    box-shadow: inset 0 1px 1px rgba(255,255,255,.7), 0 4px 12px -3px rgba(90,140,220,.55);
    display: grid; place-items: center;
  }
  .composer .send svg { width: 12px; height: 12px; }
  .composer .send svg path { stroke: #0a1626; stroke-width: 2.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }

  /* ---- 4 · Remember: a chat with Pixie + a source pane ---- */
  .recall { width: 260px; display: flex; flex-direction: column; gap: 10px; position: relative; }
  .recall .msg-time { margin-top: -6px; }
  .p-meta { display: flex; align-items: center; gap: 7px; padding-left: 4px; }
  .p-meta .p-time { padding-left: 0; }
  .src-pill {
    all: unset; cursor: pointer; position: relative; z-index: 0; overflow: hidden;
    font-size: .6rem; font-weight: 620; letter-spacing: .08em; text-transform: uppercase;
    color: #ffffff; padding: 3px 10px; border-radius: 999px;
    background: linear-gradient(180deg, #d7ecff 0%, #a9cdf2 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.65), 0 4px 12px -4px rgba(90,140,220,.55);
  }
  .src-pill::before {
    content: ""; position: absolute; inset: 2.5px; z-index: -1;
    border-radius: 999px;
    background: rgba(38,74,132,.62);
    filter: blur(2px);
  }
  .src-pill:hover { filter: brightness(1.08); }
  .maps-link {
    color: #ffffff; font-weight: 560; cursor: pointer;
    text-decoration: underline; text-decoration-color: rgba(255,255,255,.6);
    text-underline-offset: 3px; text-decoration-thickness: 1px;
  }
  /* The source pane: square, watch-glass ember — it speaks in Sam's voice. */
  .src-pane {
    position: absolute; left: 50%; top: 50%; z-index: 20;
    width: 196px; aspect-ratio: 1;
    transform: translate(-50%,-50%) scale(.9); opacity: 0; pointer-events: none;
    border-radius: 20px; padding: 14px 15px;
    background: linear-gradient(180deg, #f4dfb2 0%, #ddb877 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.55), 0 24px 56px -16px rgba(0,0,0,.8),
      0 0 44px rgba(233,201,140,.25);
    display: flex; flex-direction: column; gap: 8px; text-align: left;
    transition: opacity .28s var(--spring), transform .28s var(--spring);
  }
  .src-pane::before {
    content: ""; position: absolute; inset: 7px; z-index: -1;
    border-radius: 14px;
    background: rgba(112,74,18,.6);
    filter: blur(4px);
  }
  .src-pane { z-index: 20; overflow: hidden; }
  .src-pane.open { opacity: 1; transform: translate(-50%,-50%) scale(1); pointer-events: auto; }
  .src-pane .sp-head { display: flex; align-items: center; gap: 7px; }
  .src-pane .sp-head .avatar { width: 22px; height: 22px; font-size: .58rem; }
  .src-pane .sp-head b { font-size: .76rem; font-weight: 640; color: #ffffff; }
  .src-pane .sp-head time { margin-left: auto; font-size: .64rem; color: rgba(255,244,220,.75); font-variant-numeric: tabular-nums; }
  .src-pane .sp-body { flex: 1; font-size: .82rem; line-height: 1.5; color: #ffffff; font-weight: 500; }
  .src-pane .sp-foot { font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,244,220,.7); font-weight: 620; }

  /* ---- 5 · Make it real: Pixie asks, you approve, the plan chat opens ---- */
  .plan2 { width: 266px; text-align: left; }
  .plan2 { width: 292px; overflow: hidden; touch-action: pan-y; }
  .plan2.done { cursor: grab; }
  .plan2.done:active { cursor: grabbing; }
  .p2-track.dragging { transition: none; }
  .p2-track {
    display: flex; gap: 12px; align-items: stretch;
    transition: transform 1s var(--spring);
  }
  .p2-track > * { flex: 0 0 88%; min-width: 0; min-height: clamp(360px, 52svh, 470px); }
  /* Focus roll: screen 1 on stage first; approval moves the stage — screen 1
     rolls off the left edge (its sliver stays), screen 2 takes focus. */
  .plan2.focus2 .p2-track { transform: translateX(calc(-88% - 12px + 12%)); }
  .p2-ask { display: flex; flex-direction: column; gap: 10px; transition: opacity .6s var(--spring); }
  .plan2.focus2 .p2-ask { opacity: 0; }
  .p2-chat { display: flex; opacity: 0; transition: opacity .7s var(--spring); }
  .plan2.focus2 .p2-chat { opacity: 1; }
  .p2-track.dragging > * { opacity: 1 !important; }
  .p2-chat .p2-pane { flex: 1; display: flex; flex-direction: column; gap: 9px; }
  .ask-actions { display: flex; gap: 8px; padding-left: 4px; align-items: center;
    max-height: 42px; overflow: hidden;
    transition: opacity .35s, max-height .45s var(--spring), margin .45s var(--spring); }
  .ask-actions.gone { opacity: 0; max-height: 0; margin-top: -10px; }
  .btn-approve {
    all: unset; cursor: pointer; position: relative; z-index: 0; overflow: hidden;
    -webkit-tap-highlight-color: transparent; outline: none;
    font-size: .78rem; font-weight: 630; letter-spacing: .01em; color: #fff;
    padding: 7px 18px; border-radius: 999px; min-width: 84px; text-align: center;
    background: linear-gradient(180deg, #d7ecff 0%, #a9cdf2 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.65), 0 8px 20px -6px rgba(90,140,220,.55);
    transition: transform .15s var(--spring);
  }
  .btn-approve::before {
    content: ""; position: absolute; inset: 3px; z-index: -1; border-radius: 999px;
    background: rgba(38,74,132,.62); filter: blur(2.5px);
  }
  .btn-approve.pressed { transform: scale(.92); }
  .btn-pass.dim { opacity: .4; pointer-events: none; }
  .btn-pass {
    all: unset; cursor: pointer; position: relative; z-index: 0; overflow: hidden;
    -webkit-tap-highlight-color: transparent; outline: none;
    font-size: .78rem; font-weight: 630; letter-spacing: .01em; color: #fff;
    padding: 7px 16px; border-radius: 999px;
    background: linear-gradient(180deg, #ffdede 0%, #efa3a3 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.65), 0 8px 20px -6px rgba(220,100,100,.5);
  }
  .btn-pass::before {
    content: ""; position: absolute; inset: 3px; z-index: -1; border-radius: 999px;
    background: rgba(146,42,42,.62); filter: blur(2.5px);
  }
  .p2-confirm { overflow: hidden; max-height: 0; opacity: 0; transform: translateY(10px);
    transition: max-height .55s var(--spring), opacity .5s, transform .55s var(--spring); }
  .p2-confirm.in { max-height: 132px; opacity: 1; transform: none; }
  /* The plan chat: location + time already set, members aboard. */
  .p2-chat { align-self: flex-start; }
  .p2-pane { border-radius: 20px; padding: 12px 13px; display: flex; flex-direction: column; gap: 9px; }
  .p2-head { display: flex; align-items: center; gap: 7px; }
  .p2-head b { font-size: .82rem; font-weight: 640; color: #f0f4ff; }
  .p2-head .p2-avs { margin-left: auto; display: flex; }
  .p2-head .p2-avs .avatar { width: 20px; height: 20px; font-size: .5rem; box-shadow: 0 0 0 2px #10131f; }
  .p2-head .p2-avs .avatar + .avatar { margin-left: -6px; }
  .plan-chip {
    display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
    font-size: .68rem; font-weight: 560; color: #f0e9d8; letter-spacing: .01em;
    padding: 4px 11px; border-radius: 999px;
    background: rgba(233,201,140,.1);
    box-shadow: inset 0 0 0 1px rgba(233,201,140,.35);
    font-variant-numeric: tabular-nums;
  }
  .plan-chip i { width: 6px; height: 6px; border-radius: 3px; background: var(--ember);
    box-shadow: 0 0 8px rgba(233,201,140,.7); }
  .p2-div { height: 1px; background: linear-gradient(90deg, rgba(152,162,195,.2), rgba(152,162,195,.03)); }
  .p2-sys {
    display: flex; align-items: center; justify-content: center; gap: 5px;
    font-size: .62rem; color: rgba(152,162,195,.65); letter-spacing: .01em;
  }
  .p2-sys svg { width: 10px; height: 10px; }
  .p2-time { font-size: .6rem; color: rgba(152,162,195,.65); font-variant-numeric: tabular-nums; }
  .p2-time.right { align-self: flex-end; padding-right: 4px; margin-top: -3px; }
  .p2-time.left { align-self: flex-start; padding-left: 4px; margin-top: -3px; }
  .p2-msg { opacity: 0; transform: translateY(12px);
    transition: opacity .45s var(--spring), transform .45s var(--spring); }
  .p2-msg.in { opacity: 1; transform: none; }
  .p2-you {
    align-self: flex-end; max-width: 86%;
    background: linear-gradient(180deg, #c2cedd 0%, #91a2b8 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.55), 0 8px 20px -8px rgba(120,140,170,.42);
    color: #fff; font-size: .78rem; font-weight: 500; line-height: 1.4;
    padding: 7px 11px; border-radius: 14px 14px 3px 14px;
    position: relative; z-index: 0; overflow: hidden;
  }
  .p2-you::before { content: ""; position: absolute; inset: 4px; z-index: -1;
    border-radius: 10px 10px 2px 10px; background: rgba(46,58,76,.68); filter: blur(3px); }
  .p2-them-wrap { align-self: flex-start; max-width: 86%; display: flex; flex-direction: column; gap: 3px; }
  .p2-them-wrap .who { padding-left: 4px; font-size: .6rem; font-weight: 620; color: rgba(233,201,140,.85); }
  .p2-them {
    background: linear-gradient(180deg, #f4dfb2 0%, #ddb877 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.55), 0 8px 20px -8px rgba(200,160,90,.4);
    color: #fff; font-size: .78rem; font-weight: 500; line-height: 1.4;
    padding: 7px 11px; border-radius: 14px 14px 14px 3px;
    position: relative; z-index: 0; overflow: hidden;
  }
  .p2-them::before { content: ""; position: absolute; inset: 4px; z-index: -1;
    border-radius: 10px 10px 10px 2px; background: rgba(112,74,18,.6); filter: blur(3px); }
  .p2-them { cursor: pointer; }
  .p2-react-slot { align-self: flex-start; padding-left: 4px; max-height: 0; opacity: 0; overflow: hidden;
    transition: max-height .4s var(--spring), opacity .35s, margin .4s var(--spring); }
  .p2-react-slot.in { max-height: 22px; opacity: 1; margin-top: 2px; }

  /* ---- 6 · Stay yours: the message itself seals ---- */
  .sealed-msg { width: 250px; display: flex; flex-direction: column; align-items: center; gap: 14px; position: relative; }
  .sealed-msg .mcard {
    border-radius: 20px; padding: 14px 18px; width: 100%; position: relative; overflow: hidden;
    background: linear-gradient(180deg, #c2cedd 0%, #91a2b8 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.55), 0 14px 32px -10px rgba(120,140,170,.42);
    z-index: 0;
  }
  .sealed-msg .mcard::before {
    content: ""; position: absolute; inset: 7px; z-index: -1;
    border-radius: 14px;
    background: rgba(46,58,76,.68);
    filter: blur(4px);
  }
  .sealed-msg .mtext { font-size: .95rem; color: #ffffff; font-weight: 500; letter-spacing: -0.005em; transition: filter .9s ease, opacity .9s ease; }
  .card.live .sealed-msg .mtext { transition-delay: .9s; filter: blur(7px) saturate(.8); opacity: .55; }
  .lockbadge {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0); opacity: 0;
    width: 40px; height: 40px; border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #eaf5ff, #a9cdf2 75%);
    box-shadow: inset 0 1px 1px rgba(255,255,255,.7), 0 8px 24px -6px rgba(90,140,220,.6), 0 0 34px rgba(191,228,255,.35);
    display: grid; place-items: center;
  }
  .lockbadge svg { width: 17px; height: 17px; }
  .card.live .lockbadge { animation: lock-pop .6s var(--spring) 1.35s forwards; }
  @keyframes lock-pop {
    from { opacity: 0; transform: translate(-50%,-50%) scale(0); }
    70%  { opacity: 1; transform: translate(-50%,-50%) scale(1.15); }
    to   { opacity: 1; transform: translate(-50%,-50%) scale(1); }
  }
  .only { font-size: .72rem; color: rgba(152,162,195,.7); letter-spacing: .08em; }

  /* ---- 7 · Close ---- */
  .pill {
    display: inline-flex; align-items: center; gap: .6rem; margin-top: 1.5rem;
    padding: .78rem 1.5rem; border-radius: 999px;
    background: linear-gradient(180deg, #eef6ff 0%, #b9d7f2 100%);
    color: #0a1020; font-weight: 620; font-size: .95rem; letter-spacing: -0.01em;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 0 44px rgba(191,228,255,.3), 0 14px 30px -10px rgba(90,140,220,.5);
  }
  /* Request-access: the site's expand–contract pill. A placeholder holds the
     slot; only the form's edges travel. */
  .rap { position: relative; display: inline-block; margin-top: 1.5rem; }
  .cta-row .rap, .essay .rap { margin-top: 0; }
  .rap-slot { display: inline-flex; align-items: center; padding: .78rem 1.5rem;
    font-weight: 620; font-size: .95rem; letter-spacing: -0.01em; white-space: nowrap;
    visibility: hidden; }
  .rap-form {
    position: absolute; inset-block: 0; margin: 0; left: 50%; transform: translateX(-50%);
    display: flex; align-items: center; justify-content: center; gap: 0;
    width: var(--rap-w, 100%); border-radius: 999px; overflow: hidden; cursor: pointer;
    background: linear-gradient(180deg, #eef6ff 0%, #b9d7f2 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 0 44px rgba(191,228,255,.3), 0 14px 30px -10px rgba(90,140,220,.5);
    transition: width .5s cubic-bezier(.22,.61,.21,1), background .45s, box-shadow .45s, transform .25s;
    -webkit-tap-highlight-color: transparent;
  }
  .rap:not([data-open]):not([data-done]) .rap-form:hover { transform: translate(-50%, -2px); }
  .rap-label { font-weight: 620; font-size: .95rem; letter-spacing: -0.01em; color: #0a1020; white-space: nowrap; }
  .rap-input { display: none; }
  .rap-go { display: none; }
  .rap[data-open] .rap-form {
    width: min(25rem, calc(100vw - 3rem)); cursor: default; justify-content: flex-start;
    padding: 0 8px 0 20px;
    background: rgba(255,255,255,.06);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.16), 0 14px 30px -10px rgba(0,0,0,.5);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  }
  .rap[data-open] .rap-label { display: none; }
  .rap[data-open] .rap-input {
    display: block; flex: 1; min-width: 0; height: 100%;
    background: none; border: none; outline: none;
    font: inherit; font-size: .92rem; color: #fff;
  }
  .rap[data-open] .rap-input::placeholder { color: rgba(152,162,195,.7); }
  .rap[data-open] .rap-go {
    all: unset; cursor: pointer; display: inline-flex; flex: none; position: relative; z-index: 0; overflow: hidden;
    margin-left: 12px; padding: 9px 19px; border-radius: 999px;
    font-size: .88rem; font-weight: 630; color: #fff;
    background: linear-gradient(180deg, #d7ecff 0%, #a9cdf2 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.65), 0 8px 20px -6px rgba(90,140,220,.55);
    opacity: .55; transition: opacity .3s;
    -webkit-tap-highlight-color: transparent;
  }
  .rap[data-open] .rap-go::before {
    content: ""; position: absolute; inset: 3px; z-index: -1; border-radius: 999px;
    background: rgba(38,74,132,.62); filter: blur(2.5px);
  }
  .rap[data-open][data-valid] .rap-go { opacity: 1; }
  .rap[data-done] .rap-form {
    width: var(--rap-w, 100%); cursor: default;
    background: linear-gradient(180deg, #9bebc4 0%, #4ecf92 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 0 44px rgba(78,207,146,.35);
  }
  .rap[data-done] .rap-label { display: inline; color: #06301c; }
  a.pill { text-decoration: none; color: #0a1020; cursor: pointer; }
  .triad { margin-top: 1.4rem; color: rgba(152,162,195,.6); font-size: .78rem; letter-spacing: .06em; }
  .triad b { color: rgba(191,228,255,.5); font-weight: 500; padding: 0 .5rem; }
  /* Quiet crawlable footer on the closing card: trust pages + the agent surface. */
  .foot { margin-top: 1.1rem; display: flex; flex-wrap: wrap; justify-content: center; gap: .35rem 1.1rem; }
  .foot a { color: rgba(152,162,195,.55); font-size: .68rem; letter-spacing: .04em; text-decoration: none; }
  .foot a:hover { color: var(--moon); }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01s !important; animation-delay: 0s !important; transition-duration: .01s !important; transition-delay: 0s !important; }
    /* The hero's infinite float/breathe would strobe at .01s — cap them. */
    .card.live .mark.layer, .card.live .halo.layer { animation-iteration-count: 1 !important; }
    /* The chandelier's light pulses likewise — show the still constellation. */
    .sgraph .po { display: none !important; }
    .sgraph .glow, .sgraph .core { animation-iteration-count: 1 !important; }
    .copy { opacity: 1; transform: none; }
  }
