  :root {
    --desk: #F6FAF6;          /* off-white with a green cast, like the promo sheets */
    --surface: #FFFFFF;
    --ink: #161D17;
    --muted: #5A6A5D;
    --line: #DAE6DA;
    --screen: #A3CF9B;        /* sage video screen from the promo art */
    --screen-c1: #4E9B57;     /* dark bubble */
    --screen-c2: #6FBF73;     /* mid bubble */
    --screen-c3: #CDE8CB;     /* pale bubble */
    --accent: #34B34A;        /* flat brand green — graphics, panels */
    --accent-dark: #1E7D33;   /* buttons, links, small text on light */
    --accent-pale: #DFF2DD;   /* pale play-button disc */
    --radius: 14px;
    --shadow-float: 0 24px 60px -12px rgba(20, 46, 24, .38), 0 4px 16px rgba(20, 46, 24, .18);
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  @media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; }
  }
  body {
    font-family: "Instrument Sans", system-ui, sans-serif;
    background: var(--desk);
    color: var(--ink);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  ::selection { background: var(--accent); color: #fff; }
  a { color: inherit; }
  :focus-visible { outline: 3px solid var(--accent-dark); outline-offset: 2px; border-radius: 4px; }

  /* ---- scrub-bar scroll progress ---- */
  .scrub {
    position: fixed; top: 0; left: 0; right: 0; height: 4px;
    background: rgba(22, 29, 23, .08); z-index: 300;
  }
  .scrub b {
    display: block; height: 100%; width: 0;
    background: var(--accent);
  }

  .wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

  /* ---- nav ---- */
  header.site {
    position: sticky; top: 0; z-index: 200;
    background: color-mix(in srgb, var(--desk) 96%, #fff);
    border-bottom: 1px solid var(--line);
  }
  .nav {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 0;
  }
  .brand { display: flex; align-items: center; gap: 10px; font-weight: 600; text-decoration: none; font-size: 15px; }
  .brand img { width: 26px; height: 26px; }
  .nav nav { margin-left: auto; display: flex; align-items: center; gap: 22px; font-size: 14px; }
  .nav nav a { text-decoration: none; color: var(--muted); }
  .nav nav a:hover { color: var(--ink); }
  .nav nav a.btn, .nav nav a.btn:hover { color: #fff; }

  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--accent-dark); color: #fff;
    border: none; border-radius: 10px; cursor: pointer;
    padding: 12px 20px; font: 600 15px "Instrument Sans", sans-serif;
    text-decoration: none;
    transition: background .15s ease;
  }
  .btn:hover { background: #176228; }
  .btn .play-glyph { width: 0; height: 0; border-left: 9px solid #fff; border-top: 6px solid transparent; border-bottom: 6px solid transparent; }
  .btn.small { padding: 9px 16px; font-size: 14px; }

  /* ---- timestamps as eyebrows ---- */
  .stamp {
    font: 500 13px "IBM Plex Mono", monospace;
    color: var(--accent-dark); letter-spacing: .04em;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .stamp::before { content: "▶"; font-size: 9px; }

  /* ---- promo ornaments: squiggle wave + rounded corner bracket ---- */
  .wave { display: block; margin-top: 26px; color: var(--accent); }
  .corner-frame { position: relative; }
  .corner-frame::after {
    content: ""; position: absolute; right: -14px; top: 26px; bottom: -14px; left: 26px;
    border: 2.5px solid var(--accent);
    border-left: none; border-top: none;
    border-radius: 0 0 28px 0;
    pointer-events: none;
  }

  /* ---- hero ---- */
  .hero { padding: 72px 0 40px; display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 56px; align-items: center; }
  @media (prefers-reduced-motion: no-preference) {
    @keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
    @keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
    .hero-copy > * { animation: rise .55s cubic-bezier(.2,.7,.3,1) both; }
    .hero-copy > *:nth-child(1) { animation-delay: .05s; }
    .hero-copy > *:nth-child(2) { animation-delay: .12s; }
    .hero-copy > *:nth-child(3) { animation-delay: .2s; }
    .hero-copy > *:nth-child(4) { animation-delay: .28s; }
    .hero-copy > *:nth-child(5) { animation-delay: .36s; }
    .hero-copy > *:nth-child(6) { animation-delay: .44s; }
    /* fade only — the slot must not move, the fixed player tracks it */
    .hero-vis, .pip { animation: fadein .7s ease .3s both; }
  }
  .hero h1 {
    font: 800 clamp(40px, 5.2vw, 62px)/1.02 "Bricolage Grotesque", sans-serif;
    letter-spacing: -0.02em; margin: 18px 0 20px;
  }
  .hero h1 em {
    font-style: normal;
    text-decoration: none;
  }
  .hero p.lede { font-size: 18px; color: var(--muted); max-width: 44ch; }
  .hero .cta-row { display: flex; align-items: center; gap: 18px; margin-top: 30px; flex-wrap: wrap; }
  .hero .meta { font: 400 13px "IBM Plex Mono", monospace; color: var(--muted); }
  kbd {
    font: 500 12px "IBM Plex Mono", monospace;
    background: var(--surface); border: 1px solid var(--line);
    border-bottom-width: 2px; border-radius: 6px; padding: 2px 7px;
  }

  /* ---- fake browser + document ---- */
  .browser {
    background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 40px -18px rgba(16,20,26,.22);
    overflow: hidden;
  }
  .browser .chrome-bar {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 14px; border-bottom: 1px solid var(--line);
    background: #F6F8FB;
  }
  .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--line); }
  .dot.r { background: #F19999; } .dot.y { background: #F0CE8C; } .dot.g { background: #9CD3A8; }
  .chrome-bar .url {
    flex: 1; margin-left: 8px; background: var(--surface);
    border: 1px solid var(--line); border-radius: 7px;
    font: 400 11px "IBM Plex Mono", monospace; color: var(--muted);
    padding: 4px 10px; overflow: hidden; white-space: nowrap;
  }
  .browser .doc { padding: 22px; display: grid; gap: 12px; }
  .doc .ph { height: 10px; border-radius: 5px; background: #E4EDE4; }
  .doc .ph.w60 { width: 60%; } .doc .ph.w85 { width: 85%; } .doc .ph.w40 { width: 40%; } .doc .ph.w75 { width: 75%; }
  .doc .ph.title { height: 18px; width: 50%; background: #D3E2D3; }
  .pip-slot { aspect-ratio: 16 / 9; border-radius: 10px; background: repeating-linear-gradient(45deg, #F0F6F0 0 12px, #E9F2E9 12px 24px); position: relative; }
  .pip-slot .ghost {
    position: absolute; inset: 0; display: none;
    align-items: center; justify-content: center;
    color: var(--muted); font: 400 12px "IBM Plex Mono", monospace;
    border: 1.5px dashed var(--line); border-radius: 10px;
  }
  .pip-slot.empty .ghost { display: flex; }

  /* ---- the floating PiP player (signature) ---- */
  .pip {
    position: fixed; z-index: 150; /* docked: below the sticky header, it scrolls "with the page" */
    background: var(--screen); border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-float);
    transition: top .55s cubic-bezier(.3,.9,.3,1), left .55s cubic-bezier(.3,.9,.3,1),
                width .55s cubic-bezier(.3,.9,.3,1), height .55s cubic-bezier(.3,.9,.3,1),
                box-shadow .3s ease;
    user-select: none; touch-action: none;
  }
  .pip.dragging, .pip.notrans { transition: none; }
  .pip.dragging { cursor: grabbing; }
  .pip.floating { cursor: grab; z-index: 400; } /* floating: on top of everything, like the real thing */
  .pip .screen {
    position: absolute; inset: 0;
    background: var(--screen);
    overflow: hidden;
  }
  .pip .blob {
    position: absolute; aspect-ratio: 1; border-radius: 50%;
    animation: drift 6s ease-in-out infinite alternate;
  }
  .pip .blob.b1 { width: 30%; top: -14%; left: -8%; background: #37703F; opacity: .92; animation-duration: 6.5s; }
  .pip .blob.b2 { width: 17%; top: 10%; left: 40%; background: rgba(255,255,255,.55); animation-name: driftB; animation-duration: 5s; }
  .pip .blob.b3 { width: 26%; top: 50%; left: 74%; background: #5F8F68; animation-duration: 4.5s; }
  .pip .blob.b4 { width: 15%; top: 62%; left: 18%; background: var(--screen-c2); animation-name: driftB; animation-duration: 6s; }
  .pip .blob.b5 { width: 12%; top: 6%; left: 74%; background: var(--screen-c1); animation-duration: 5.5s; }
  .pip .blob.b6 { width: 13%; top: -10%; left: 22%; background: var(--screen-c3); animation-name: driftB; animation-duration: 5s; }
  .pip .blob.b7 { width: 19%; top: 58%; left: 44%; background: #8FC98F; opacity: .85; animation-duration: 6s; }
  .pip .blob.b8 { width: 9%; top: 32%; left: 60%; background: rgba(255,255,255,.4); animation-name: driftB; animation-duration: 4s; }
  @keyframes drift {
    from { transform: translate(-5%, 5%) scale(1); }
    to   { transform: translate(22%, -17%) scale(1.15); }
  }
  @keyframes driftB {
    from { transform: translate(7%, -7%) scale(1.07); }
    to   { transform: translate(-18%, 15%) scale(.9); }
  }
  .pip .hud {
    position: absolute; left: 7px; right: 7px; bottom: 7px;
    padding: 7px 10px; border-radius: 7px;
    background: rgba(18, 30, 20, .82);
    display: flex; align-items: center; gap: 10px;
  }
  .pip .hud .tri { width: 0; height: 0; border-left: 10px solid #fff; border-top: 6px solid transparent; border-bottom: 6px solid transparent; flex: none; }
  .pip .track {
    flex: 1; height: 8px; border-radius: 4px;
    border: 1px solid rgba(255,255,255,.65);
    padding: 1.5px; overflow: hidden;
  }
  .pip .track b { display: block; height: 100%; width: 0; background: var(--accent); border-radius: 2px; }
  .pip .time { font: 400 10px "IBM Plex Mono", monospace; color: rgba(255,255,255,.9); flex: none; }
  .pip .hud .bars { color: #58B7E8; flex: none; } /* the blue signal bars from the promo player bar */
  .pip .hud .pipico { color: rgba(255,255,255,.9); flex: none; }
  .pip .close {
    position: absolute; top: 8px; right: 8px;
    width: 26px; height: 26px; border-radius: 7px;
    border: none; cursor: pointer;
    background: rgba(0,0,0,.45); color: #fff; font-size: 13px; line-height: 1;
    display: none; align-items: center; justify-content: center;
  }
  .pip.floating .close { display: flex; }
  .pip .ontop-tag {
    position: absolute; top: 8px; left: 8px;
    font: 500 9px "IBM Plex Mono", monospace; letter-spacing: .08em;
    color: #fff; background: rgba(0,0,0,.45);
    padding: 4px 7px; border-radius: 6px;
    opacity: 0; transition: opacity .3s ease .3s;
  }
  .pip.floating .ontop-tag { opacity: 1; }

  .try-hint {
    margin-top: 14px; font-size: 14px; color: var(--muted);
    display: flex; align-items: center; gap: 8px;
  }
  .try-hint button {
    background: none; border: none; cursor: pointer;
    color: var(--accent-dark); font: 600 14px "Instrument Sans", sans-serif;
    text-decoration: underline; text-underline-offset: 3px; padding: 0;
  }

  /* ---- sections ---- */
  section { padding: 84px 0; }
  section h2 {
    font: 700 clamp(28px, 3.4vw, 40px)/1.1 "Bricolage Grotesque", sans-serif;
    letter-spacing: -0.015em; margin: 14px 0 10px; max-width: 22ch;
  }
  section > .wrap > p.sub { color: var(--muted); max-width: 52ch; font-size: 17px; }

  /* how it works */
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
  @media (min-width: 901px) {
    /* a descending stair — the cards themselves walk through the sequence */
    .step:nth-child(2) { margin-top: 26px; }
    .step:nth-child(3) { margin-top: 52px; }
  }
  .step {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 26px 24px 28px;
  }
  .step .stamp { color: var(--muted); }
  .step .stamp::before { color: var(--accent); }
  .step h3 { font: 700 20px "Bricolage Grotesque", sans-serif; margin: 14px 0 8px; }
  .step p { color: var(--muted); font-size: 15px; }
  .step .art {
    height: 84px; margin-bottom: 18px; border-radius: 9px;
    background: #F1F7F0; border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center; gap: 10px;
  }
  .art .mini-vid { width: 74px; height: 46px; border-radius: 6px; background: var(--accent); position: relative; }
  .art .mini-vid::before {
    content: ""; position: absolute; inset: 0; margin: auto;
    width: 30px; height: 30px; border-radius: 50%; background: var(--accent-pale);
  }
  .art .mini-vid::after {
    content: ""; position: absolute; left: 50%; top: 50%;
    transform: translate(-38%, -50%); /* optical centering: a triangle sits a hair right of true center */
    width: 0; height: 0; border-left: 12px solid #fff;
    border-top: 7px solid transparent; border-bottom: 7px solid transparent;
    filter: drop-shadow(0 0 1px rgba(22,29,23,.5));
  }
  .art .ext-ico { width: 26px; height: 26px; }
  .art kbd { font-size: 13px; padding: 5px 10px; }
  .art .corner {
    width: 92px; height: 58px; border-radius: 6px; border: 1.5px dashed #BED4BC; position: relative;
  }
  .art .corner i {
    position: absolute; right: 5px; bottom: 5px;
    width: 34px; height: 22px; border-radius: 4px; background: var(--accent);
    box-shadow: 0 4px 10px rgba(20,46,24,.35);
  }
  .art .corner i::after { content: ""; position: absolute; left: 0; right: 8px; bottom: 3px; height: 2px; margin: 0 4px; background: #fff; border-radius: 1px; }

  /* features */
  .features { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 44px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
  .cell {
    padding: 28px 26px; background: var(--surface);
    border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  }
  .cell:nth-child(3n) { border-right: none; }
  .cell:nth-child(n+4) { border-bottom: none; }
  .cell h3 { font: 700 17px "Bricolage Grotesque", sans-serif; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
  .cell h3 svg { color: var(--accent-dark); flex: none; }
  .cell p { color: var(--muted); font-size: 14.5px; }

  /* faq */
  #faq .wrap { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 24px 64px; align-items: start; }
  #faq .faq-head h2 { margin-bottom: 0; }
  .faq-list { border-top: 1px solid var(--line); }
  details {
    border-bottom: 1px solid var(--line); padding: 4px 0;
  }
  details summary {
    cursor: pointer; list-style: none;
    font: 600 17px "Instrument Sans", sans-serif;
    padding: 18px 34px 18px 0; position: relative;
    transition: color .15s ease;
  }
  details summary:hover { color: var(--accent-dark); }
  details summary::-webkit-details-marker { display: none; }
  details summary::after {
    content: "+"; position: absolute; right: 4px; top: 50%;
    transform: translateY(-50%);
    font: 500 22px "IBM Plex Mono", monospace; color: var(--accent-dark);
    transition: transform .2s ease;
  }
  details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
  details p { color: var(--muted); padding: 0 0 20px; max-width: 60ch; }

  /* final cta — the promo's green player panel */
  .final { padding: 100px 0 120px; }
  .final .panel {
    background: var(--accent); border-radius: 20px;
    padding: 58px 32px 62px; text-align: center;
  }
  .final .panel .stamp { color: #10321A; }
  .final h2 { margin: 18px auto 6px; color: #10321A; }
  .final .controls { display: flex; align-items: center; justify-content: center; gap: 30px; margin-top: 34px; }
  .final .controls svg { color: #10321A; }
  .play-disc {
    width: 92px; height: 92px; border-radius: 50%;
    background: var(--accent-pale);
    display: flex; align-items: center; justify-content: center;
  }
  .play-disc::after {
    content: ""; margin-left: 8px;
    width: 0; height: 0; border-left: 30px solid #fff;
    border-top: 19px solid transparent; border-bottom: 19px solid transparent;
    filter: drop-shadow(0 0 1.5px rgba(23, 56, 29, .8));
  }
  .btn.invert { background: #fff; color: var(--ink); margin-top: 36px; padding: 15px 28px; font-size: 16px; }
  .btn.invert:hover { background: var(--accent-pale); }
  .btn.invert .play-glyph { border-left-color: var(--accent); }
  .final .meta { display: block; margin-top: 18px; font: 400 13px "IBM Plex Mono", monospace; color: #14401F; }

  footer.site {
    border-top: 1px solid var(--line); padding: 26px 0 34px;
    font-size: 13.5px; color: var(--muted);
  }
  footer .wrap { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
  footer img { width: 20px; height: 20px; }
  footer nav { margin-left: auto; display: flex; gap: 18px; }
  footer a { color: var(--muted); text-decoration: none; }
  footer a:hover { color: var(--ink); }

  /* responsive */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 48px; }
    .steps, .grid, #faq .wrap { grid-template-columns: 1fr; }
    .cell { border-right: none !important; border-bottom: 1px solid var(--line) !important; }
    .cell:last-child { border-bottom: none !important; }
    .nav nav a.link { display: none; }
  }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .pip { transition: none; }
    .pip .blob { animation: none; }
    .btn:hover { transform: none; }
  }

/* ---- sub-pages: installed / updated ---- */
.subpage { max-width: 880px; margin: 0 auto; padding: 72px 24px 40px; }
.subpage h1 {
  font: 800 clamp(36px, 4.6vw, 54px)/1.05 "Bricolage Grotesque", sans-serif;
  letter-spacing: -0.02em; margin: 16px 0 18px;
}
.subpage h1 em {
  font-style: normal;
  text-decoration: none;
}
.subpage .lede { font-size: 18px; color: var(--muted); max-width: 54ch; margin-bottom: 30px; }
.subpage .lede:last-child { margin-bottom: 0; }
.version-chip {
  display: inline-block; margin-left: 10px; vertical-align: middle;
  font: 500 13px "IBM Plex Mono", monospace;
  color: var(--accent-dark); background: var(--accent-pale);
  border-radius: 6px; padding: 4px 9px; letter-spacing: .02em;
}

.video-panel {
  background: var(--accent); border-radius: 20px;
  padding: 26px; margin: 44px 0 12px;
}
.video-panel video {
  display: block; width: 100%; aspect-ratio: 16 / 9;
  border-radius: 10px; background: var(--screen);
  box-shadow: 0 14px 34px -14px rgba(16, 46, 20, .45);
}
.video-panel .panel-hint {
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px; color: #10321A; font-weight: 600; font-size: 15px;
}
.video-panel .panel-hint kbd { background: #fff; border-color: #2C9440; }

.tip-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 44px; }
.tip-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.tip-card h3 { font: 700 18px "Bricolage Grotesque", sans-serif; margin: 12px 0 6px; display: flex; align-items: center; gap: 10px; }
.tip-card h3 svg { color: var(--accent-dark); flex: none; }
.tip-card p { color: var(--muted); font-size: 15px; }

.changelog { margin-top: 40px; border-left: 2.5px solid var(--accent); padding-left: 26px; display: grid; gap: 26px; }
.changelog .entry .stamp { color: var(--accent-dark); }
.changelog .entry h3 { font: 700 19px "Bricolage Grotesque", sans-serif; margin: 6px 0 6px; }
.changelog .entry p, .changelog .entry li { color: var(--muted); font-size: 15px; }
.changelog .entry ul { margin: 8px 0 0 18px; display: grid; gap: 6px; }

.subpage-cta { margin: 56px 0 20px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.btn.ghost { background: transparent; color: var(--accent-dark); border: 1.5px solid var(--accent-dark); }
.btn.ghost:hover { background: var(--accent-pale); }
.btn.ghost .play-glyph { border-left-color: var(--accent-dark); }

@media (max-width: 700px) {
  .tip-cards { grid-template-columns: 1fr; }
  .subpage { padding-top: 48px; }
}

/* ---- pin-the-icon animated demo (installed page) ---- */
.pin-demo {
  position: relative; height: 172px; overflow: hidden;
  background: #F1F7F0; border: 1px solid var(--line); border-radius: 9px;
  padding: 12px; margin-bottom: 18px;
}
.pd-toolbar {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 8px; padding: 8px 10px;
}
.pd-url { flex: 1; height: 22px; border-radius: 6px; background: #EFF4EF; border: 1px solid var(--line); }
.pd-puzzle { color: #5A6A5D; flex: none; }
.pd-slot { width: 24px; display: flex; justify-content: center; flex: none; }
.pd-appicon { display: block; border-radius: 5px; flex: none; }
.pd-pinned { width: 20px; height: 20px; opacity: 0; transform: scale(.3); transform-origin: center; animation: pdPinned 8s ease infinite; }
.pd-avatar { width: 20px; height: 20px; border-radius: 50%; background: var(--screen); flex: none; }

.pd-dropdown {
  position: absolute; right: 26px; top: 58px; width: 232px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 12px 30px -12px rgba(20, 46, 24, .3);
  padding: 8px; opacity: 0; transform: translateY(-6px);
  animation: pdDrop 8s ease infinite;
}
.pd-dropdown .pd-label { font: 500 10px "IBM Plex Mono", monospace; color: var(--muted); padding: 2px 8px 6px; letter-spacing: .04em; }
.pd-row { display: flex; align-items: center; gap: 9px; padding: 7px 8px; border-radius: 7px; background: #F4F9F3; }
.pd-row img { width: 18px; height: 18px; flex: none; }
.pd-name { flex: 1; font-size: 12.5px; font-weight: 600; }
.pd-pin { color: #7C8A7E; flex: none; animation: pdPinColor 8s ease infinite; }

.pd-cursor {
  position: absolute; left: 100%; top: 0; z-index: 5;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.35));
  animation: pdCursor 8s ease-in-out infinite;
}

@keyframes pdCursor {
  0%, 6%   { transform: translate(-160px, 150px) scale(1); }
  16%      { transform: translate(-92px, 30px) scale(1); }
  18%      { transform: translate(-92px, 30px) scale(.8); }
  20%, 24% { transform: translate(-92px, 30px) scale(1); }
  34%      { transform: translate(-54px, 95px) scale(1); }
  38%      { transform: translate(-54px, 95px) scale(.8); }
  40%, 46% { transform: translate(-54px, 95px) scale(1); }
  60%, 100%{ transform: translate(-160px, 150px) scale(1); }
}
@keyframes pdDrop {
  0%, 18%  { opacity: 0; transform: translateY(-6px); }
  22%, 44% { opacity: 1; transform: translateY(0); }
  50%, 100%{ opacity: 0; transform: translateY(-6px); }
}
@keyframes pdPinColor {
  0%, 37%  { color: #7C8A7E; }
  40%, 100%{ color: var(--accent-dark); }
}
@keyframes pdPinned {
  0%, 47%  { opacity: 0; transform: scale(.3); }
  53%      { opacity: 1; transform: scale(1.18); }
  57%, 88% { opacity: 1; transform: scale(1); }
  96%, 100%{ opacity: 0; transform: scale(.3); }
}
@media (prefers-reduced-motion: reduce) {
  .pd-cursor, .pd-dropdown { display: none; }
  .pd-pinned, .pd-pin { animation: none; }
  .pd-pinned { opacity: 1; transform: scale(1); } /* static end state: icon pinned */
}

/* ---- installed page: the pin demo as the centerpiece ---- */
.pin-stage { padding: 40px 26px 24px; }
.pin-stage .pin-demo {
  max-width: 560px; height: 190px; margin: 0 auto;
  border: none; background: var(--desk);
  box-shadow: 0 16px 38px -14px rgba(16, 46, 20, .5);
}
.pin-stage .panel-hint { justify-content: center; margin-top: 20px; }

/* ---- mock page content inside the pin-demo browser ---- */
.pd-page { display: flex; gap: 16px; padding: 15px 16px 0; align-items: flex-start; }
.pd-video {
  flex: none; height: 92px; aspect-ratio: 16 / 9;
  border-radius: 8px; background: var(--screen);
  position: relative; overflow: hidden;
}
.pd-video .pv-blob { position: absolute; border-radius: 50%; }
.pd-video .pv-blob.a { width: 44%; aspect-ratio: 1; top: -18%; left: -8%; background: #37703F; opacity: .9; }
.pd-video .pv-blob.b { width: 30%; aspect-ratio: 1; bottom: -12%; right: 10%; background: #6FBF73; }
.pd-video .pv-blob.c { width: 22%; aspect-ratio: 1; top: 16%; right: 14%; background: rgba(255,255,255,.5); }
.pd-play {
  position: absolute; inset: 0; margin: auto;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 8px rgba(16,46,20,.3);
}
.pd-play::after {
  content: ""; margin-left: 3px;
  width: 0; height: 0; border-left: 10px solid var(--accent-dark);
  border-top: 6px solid transparent; border-bottom: 6px solid transparent;
}
.pd-lines { flex: 1; display: flex; flex-direction: column; gap: 9px; padding-top: 3px; }
.pd-line { height: 8px; border-radius: 4px; background: #E4EDE4; }
.pd-line.title { height: 12px; width: 62%; background: #CBE0CB; margin-bottom: 3px; }
.pd-line.w95 { width: 95%; } .pd-line.w80 { width: 80%; } .pd-line.w55 { width: 55%; }

/* ---- update page: floating-player visual ---- */
.update-stage { padding: 34px 26px 24px; }
.up-window {
  max-width: 460px; margin: 0 auto; aspect-ratio: 16 / 9;
  border-radius: 12px; background: var(--screen);
  position: relative; overflow: hidden;
  box-shadow: 0 18px 40px -14px rgba(16, 46, 20, .5);
}
.up-window .pv-blob { position: absolute; border-radius: 50%; }
.up-window .pv-blob.a { width: 34%; aspect-ratio: 1; top: -14%; left: -6%; background: #37703F; opacity: .9; }
.up-window .pv-blob.b { width: 24%; aspect-ratio: 1; bottom: 4%; right: 12%; background: #6FBF73; }
.up-window .pv-blob.c { width: 16%; aspect-ratio: 1; top: 14%; right: 20%; background: rgba(255,255,255,.5); }
.up-window .pv-blob.d { width: 20%; aspect-ratio: 1; top: 40%; left: 30%; background: #8FC98F; opacity: .8; }
.up-tag {
  position: absolute; top: 11px; left: 11px;
  font: 500 9px "IBM Plex Mono", monospace; letter-spacing: .08em;
  color: #fff; background: rgba(0,0,0,.42); padding: 4px 8px; border-radius: 6px;
}
.up-hud {
  position: absolute; left: 11px; right: 11px; bottom: 11px;
  background: rgba(18, 30, 20, .82); border-radius: 8px;
  padding: 8px 11px; display: flex; align-items: center; gap: 10px;
}
.up-hud .up-tri { width: 0; height: 0; border-left: 11px solid #fff; border-top: 7px solid transparent; border-bottom: 7px solid transparent; flex: none; }
.up-track { flex: 1; height: 8px; border-radius: 4px; border: 1px solid rgba(255,255,255,.6); padding: 1.5px; overflow: hidden; }
.up-track b { display: block; height: 100%; width: 64%; background: var(--accent); border-radius: 2px; }
.up-hud .up-bars { color: #58B7E8; flex: none; }
.up-hud .up-pip { color: rgba(255,255,255,.9); flex: none; }
.up-time { font: 400 11px "IBM Plex Mono", monospace; color: rgba(255,255,255,.9); flex: none; }

/* update page: changelog section label */
.up-section-head { margin-top: 52px; }
.up-section-head h2 {
  font: 700 clamp(24px, 3vw, 32px)/1.12 "Bricolage Grotesque", sans-serif;
  letter-spacing: -0.015em; margin: 10px 0 26px;
}

/* ---- update page: rate-us box ---- */
.rate-box {
  background: var(--accent); border-radius: 20px;
  padding: 44px 32px 48px; text-align: center;
  margin: 12px 0 8px;
}
.rate-stars { display: flex; justify-content: center; gap: 7px; margin-bottom: 20px; }
.rate-stars svg { color: #FFD66B; filter: drop-shadow(0 2px 3px rgba(16,46,20,.25)); }
.rate-box h2 {
  font: 700 clamp(25px, 3vw, 33px)/1.12 "Bricolage Grotesque", sans-serif;
  color: #fff; letter-spacing: -0.015em; margin-bottom: 10px;
}
.rate-box p { color: #EAF7EA; max-width: 44ch; margin: 0 auto 28px; font-size: 16px; }
.rate-box .btn { background: #fff; color: var(--ink); padding: 14px 26px; font-size: 16px; }
.rate-box .btn:hover { background: var(--accent-pale); }
.rate-box .btn .play-glyph { border-left-color: var(--accent); }
.rate-secondary { text-align: center; margin-top: 26px; font-size: 15px; }
.rate-secondary a { color: var(--accent-dark); font-weight: 600; text-decoration: none; }
.rate-secondary a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---- content pages: prose (privacy, about) ---- */
.prose { max-width: 680px; }
.prose h2 {
  font: 700 clamp(20px, 2.4vw, 26px)/1.2 "Bricolage Grotesque", sans-serif;
  letter-spacing: -0.01em; margin: 38px 0 12px;
}
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 14px; color: var(--ink); }
.prose ul { margin: 2px 0 18px 22px; display: grid; gap: 8px; }
.prose li { color: var(--muted); }
.prose a { color: var(--accent-dark); font-weight: 600; text-decoration: none; }
.prose a:hover { text-decoration: underline; text-underline-offset: 3px; }
/* buttons inside prose keep their own colors, not the link styling */
.prose a.btn { color: #fff; text-decoration: none; }
.prose a.btn:hover { color: #fff; text-decoration: none; }
.prose a.btn.ghost { color: var(--accent-dark); }
.policy-meta { font: 500 13px "IBM Plex Mono", monospace; color: var(--muted); margin-top: -6px; margin-bottom: 30px; }
.callout {
  background: var(--accent-pale); border-radius: 12px; padding: 18px 20px;
  margin: 8px 0 22px; color: #16401f; font-size: 15px;
}
.callout strong { font-weight: 700; }

/* ---- about: value cards ---- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 40px 0 8px; }
.value-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.value-card svg { color: var(--accent-dark); margin-bottom: 12px; }
.value-card h3 { font: 700 17px "Bricolage Grotesque", sans-serif; margin-bottom: 6px; }
.value-card p { color: var(--muted); font-size: 14.5px; }
@media (max-width: 760px) { .value-grid { grid-template-columns: 1fr; } }

/* ---- reviews: testimonial cards (masonry) ---- */
.reviews-summary {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin: 4px 0 34px; padding: 18px 22px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
}
.reviews-summary .big { font: 800 34px "Bricolage Grotesque", sans-serif; line-height: 1; }
.reviews-summary .stars { display: flex; gap: 3px; color: #FFC53D; }
.reviews-summary .sub { color: var(--muted); font-size: 14.5px; }
.testimonial-grid { columns: 2; column-gap: 20px; }
@media (max-width: 720px) { .testimonial-grid { columns: 1; } }
.testimonial {
  break-inside: avoid; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 22px 24px; margin-bottom: 20px;
}
.testimonial .stars { display: flex; gap: 3px; margin-bottom: 12px; color: #FFC53D; }
.testimonial p { font-size: 15.5px; margin-bottom: 16px; color: var(--ink); }
.testimonial .who { display: flex; align-items: center; gap: 11px; }
.testimonial .avatar {
  width: 34px; height: 34px; border-radius: 50%; background: var(--screen);
  color: #16401f; font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center; flex: none;
}
.testimonial .name { font-weight: 600; font-size: 14px; }
.testimonial .src { font-size: 12px; color: var(--muted); }

/* footer: let many links wrap gracefully */
footer.site nav { flex-wrap: wrap; }

/* ---- news index ---- */
.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 8px; }
@media (max-width: 760px) { .news-grid { grid-template-columns: 1fr; } }
.news-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; text-decoration: none; color: inherit;
  transition: border-color .15s ease;
}
.news-card:hover { border-color: #BAD4B9; }
.news-card .cat { font: 500 12px "IBM Plex Mono", monospace; color: var(--accent-dark); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 12px; }
.news-card h2 { font: 700 21px/1.22 "Bricolage Grotesque", sans-serif; letter-spacing: -.01em; margin-bottom: 10px; }
.news-card p { color: var(--muted); font-size: 15px; margin-bottom: 16px; flex: 1; }
.news-card .more { font-size: 14px; font-weight: 600; color: var(--accent-dark); }

/* ---- article ---- */
.article { max-width: 720px; }
.article-meta { font: 500 13px "IBM Plex Mono", monospace; color: var(--muted); margin: -8px 0 26px; display: flex; gap: 8px 16px; flex-wrap: wrap; }
.article-meta .cat { color: var(--accent-dark); text-transform: uppercase; letter-spacing: .04em; }
.article .lead { font-size: 19px; color: var(--muted); margin-bottom: 30px; }
.article .prose h2 { font-size: clamp(21px, 2.6vw, 27px); margin-top: 40px; }
.article .prose ol { margin: 4px 0 18px 22px; display: grid; gap: 12px; }
.article .prose ol li { color: var(--muted); }
.article .prose ol li strong { color: var(--ink); }
.article-cta {
  background: var(--accent-pale); border-radius: 16px; padding: 26px 28px; margin: 36px 0;
}
.article-cta h3 { font: 700 20px "Bricolage Grotesque", sans-serif; margin-bottom: 6px; color: #143f1d; }
.article-cta p { color: #2a5732; margin-bottom: 16px; font-size: 15px; }
.related { margin-top: 46px; border-top: 1px solid var(--line); padding-top: 24px; }
.related .h { font: 500 13px "IBM Plex Mono", monospace; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin-bottom: 12px; }
.related a { display: block; color: var(--accent-dark); font-weight: 600; text-decoration: none; padding: 7px 0; border-bottom: 1px solid var(--line); }
.related a:last-child { border-bottom: none; }
.related a:hover { padding-left: 4px; }
