/* Pouncify promo site — single stylesheet, no build step.
   Tokens mirror the product brand (web/public/favicon.svg + branding/preview.html):
   blue #2563eb → violet #7c3aed gradient, ink slate, dark bg #0b1120.
   Fonts: Poppins (self-hosted, display only) + system stack body + mono for
   time-stamps — the "minutes matter" vernacular of marketplace feeds. */

/* ---------------------------------------------------------------- fonts */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/poppins-700-latin.woff2?v=9338e65fc077") format("woff2");
  unicode-range: U+0000-00FF, U+2013-2014, U+2018-201A, U+201C-201E, U+2026;
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("fonts/poppins-800-latin.woff2?v=60bf0aba6526") format("woff2");
  unicode-range: U+0000-00FF, U+2013-2014, U+2018-201A, U+201C-201E, U+2026;
}

/* ---------------------------------------------------------------- tokens */
:root {
  --ink: #0f172a;
  --ink-2: #46536b;            /* muted copy */
  --paper: #ffffff;
  --wash: #f5f7fa;             /* alternating bands, card fills */
  --line: #e3e8f0;
  --brand: #2563eb;
  --brand-2: #7c3aed;
  --brand-ink: #1d4fd8;        /* link/button text-safe blue */
  --on-brand: #ffffff;
  --fresh: #15803d;            /* “just listed” green */
  --fresh-bg: #dcfce7;
  --drop: #b45309;             /* price-drop amber */
  --drop-bg: #fef3c7;
  /* the brand tile gradient is LITERAL: it must not lighten with dark-mode
     --brand, or white-on-tile text (buttons, stamp) loses contrast */
  --tile: linear-gradient(135deg, #2563eb, #7c3aed);
  --shadow: 0 1px 2px rgb(15 23 42 / .06), 0 12px 32px -12px rgb(15 23 42 / .18);
  --shadow-soft: 0 1px 3px rgb(15 23 42 / .08);
  --radius: 14px;
  --radius-s: 9px;
  --display: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --body: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
  color-scheme: light dark;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #e8edf6;
    --ink-2: #9aa8bf;
    --paper: #0b1120;
    --wash: #101a2e;
    --line: #223050;
    --brand: #60a5fa;
    --brand-2: #a78bfa;
    --brand-ink: #7cb3fb;
    --on-brand: #0b1120;
    --fresh: #4ade80;
    --fresh-bg: #123222;
    --drop: #fbbf24;
    --drop-bg: #3a2b0a;
    --shadow: 0 1px 2px rgb(0 0 0 / .5), 0 14px 36px -12px rgb(0 0 0 / .55);
    --shadow-soft: 0 1px 3px rgb(0 0 0 / .45);
  }
}

/* ---------------------------------------------------------------- base */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; }
a { color: var(--brand-ink); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { text-decoration-thickness: 2px; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 4px; }
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--paper); padding: .6rem 1rem; border-radius: 0 0 var(--radius-s) 0;
}
.skip-link:focus { left: 0; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.3rem, 5.2vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.125rem; font-weight: 700; letter-spacing: -0.01em; }
p  { margin: 0 0 1em; }
.lead { font-size: 1.1875rem; color: var(--ink-2); max-width: 34em; }
.muted { color: var(--ink-2); }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }
@media (max-width: 720px) { section { padding: 60px 0; } }
.band { background: var(--wash); }

/* Eyebrow: mono, like a feed’s metadata line */
.eyebrow {
  font-family: var(--mono);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--brand-ink);
  display: block;
  margin-bottom: .9rem;
}

/* ---------------------------------------------------------------- header */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-head .container {
  display: flex; align-items: center; gap: 1.4rem;
  min-height: 60px;
}
.brand {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--display); font-weight: 800; font-size: 1.25rem;
  letter-spacing: -0.02em; color: var(--ink); text-decoration: none;
}
.brand .ify { color: var(--brand); }
.brand svg { display: block; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 1.15rem; }
.site-nav a { color: var(--ink-2); text-decoration: none; font-size: .95rem; }
.site-nav a:hover { color: var(--ink); }
@media (max-width: 760px) { .site-nav a:not(.btn) { display: none; } }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font: 600 1rem/1 var(--body);
  padding: .8rem 1.35rem; border-radius: 999px;
  text-decoration: none; border: 1px solid transparent;
  cursor: pointer; transition: transform .12s ease, box-shadow .12s ease;
}
.btn-primary { background: var(--tile); color: #fff; box-shadow: var(--shadow-soft); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-quiet { color: var(--ink); border-color: var(--line); background: var(--paper); }
.btn-quiet:hover { border-color: var(--ink-2); }
.btn-small { padding: .55rem 1rem; font-size: .9rem; }
.cta-note { font-family: var(--mono); font-size: .8rem; color: var(--ink-2); margin-top: .8rem; }

/* ---------------------------------------------------------------- hero */
.hero { padding: 72px 0 84px; overflow: hidden; }
.hero .container {
  display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-feed { max-width: 460px; }
}
.hero h1 { max-width: 11em; }
.hero .lead { margin-bottom: 1.6rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.sources-line { margin-top: 2.2rem; font-size: .92rem; color: var(--ink-2); }
.sources-line strong { color: var(--ink); font-weight: 600; }

/* --------------------------------------------------- signature: the feed */
.hero-feed {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 14px;
}
.feed-head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 2px 6px 10px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 10px;
}
.feed-head b { font: 700 .95rem var(--body); }
.feed-head span { font: 400 .72rem var(--mono); color: var(--ink-2); }
.feed { display: grid; gap: 8px; position: relative; }

.listing {
  display: grid; grid-template-columns: 56px 1fr auto;
  gap: 12px; align-items: center;
  padding: 9px 10px;
  border: 1px solid var(--line); border-radius: var(--radius-s);
  background: var(--paper);
}
.listing .ph {
  width: 56px; height: 56px; border-radius: 8px;
  display: grid; place-items: center; color: #fff; flex: none;
}
.ph-a { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.ph-b { background: linear-gradient(135deg, #10b981, #0ea5e9); }
.ph-c { background: linear-gradient(135deg, #64748b, #0f172a); }
.ph-d { background: linear-gradient(135deg, #f97316, #b45309); }
.ph-e { background: linear-gradient(135deg, #6366f1, #0ea5e9); }
.listing .t { min-width: 0; }
.listing .t b {
  display: block; font-weight: 600; font-size: .92rem; line-height: 1.3;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.listing .t span { font: 400 .72rem var(--mono); color: var(--ink-2); }
.listing .p { text-align: right; }
.listing .p b { font: 700 1rem var(--body); display: block; }
.listing .p s { font: 400 .72rem var(--mono); color: var(--ink-2); }

.chip {
  display: inline-block; font: 600 .66rem/1 var(--mono);
  letter-spacing: .04em; text-transform: uppercase;
  padding: .28em .55em; border-radius: 5px; margin-top: .3em;
}
.chip-fresh { color: var(--fresh); background: var(--fresh-bg); }
.chip-drop  { color: var(--drop); background: var(--drop-bg); }

/* the pounce stamp on the newest listing (clear of the card's price column) */
.stamp {
  position: absolute; right: 30px; top: 78px; z-index: 3;
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--tile); color: #fff;
  font: 700 .78rem/1 var(--body);
  padding: .55em .8em; border-radius: 999px;
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}
.stamp svg { flex: none; }

/* animation: newest card slides in, stamp pops after it settles */
@media (prefers-reduced-motion: no-preference) {
  .slot-new { animation: card-in 9s cubic-bezier(.2,.9,.3,1) infinite; }
  .stamp    { animation: stamp-in 9s cubic-bezier(.3,1.4,.4,1) infinite; }
  @keyframes card-in {
    0%      { opacity: 0; transform: translateY(-14px) scale(.98); }
    6%, 100%{ opacity: 1; transform: none; }
  }
  @keyframes stamp-in {
    0%, 11% { opacity: 0; transform: rotate(3deg) scale(.4); }
    16%,100%{ opacity: 1; transform: rotate(3deg) scale(1); }
  }
}

/* ---------------------------------------------------------------- sources */
.source-row {
  display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.2rem;
}
.source-card {
  font: 600 .95rem var(--body);
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--paper);
  padding: .55rem 1.1rem;
}
.source-card small { font: 400 .72rem var(--mono); color: var(--ink-2); margin-left: .45rem; }

/* ---------------------------------------------------------------- timeline */
.timeline { display: grid; gap: 0; margin-top: 2.2rem; max-width: 720px; }
.tl-step {
  display: grid; grid-template-columns: 92px 26px 1fr; gap: 0 1.1rem;
  position: relative;
}
.tl-step .when {
  font: 600 .8rem/1.6 var(--mono); color: var(--brand-ink);
  text-align: right; padding-top: .35rem;
}
.tl-step .dot {
  position: relative; display: flex; justify-content: center;
}
.tl-step .dot::before {
  content: ""; width: 2px; background: var(--line);
  position: absolute; top: 6px; bottom: -6px;
}
.tl-step:last-child .dot::before { display: none; }
.tl-step .dot i {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--paper); border: 3px solid var(--brand);
  position: relative; z-index: 1; margin-top: .55rem; flex: none;
}
.tl-step:last-child .dot i { background: var(--brand); }
.tl-step .what { padding-bottom: 2rem; }
.tl-step .what h3 { margin-bottom: .25em; }
.tl-step .what p { color: var(--ink-2); max-width: 32em; margin-bottom: 0; }
@media (max-width: 560px) {
  .tl-step { grid-template-columns: 62px 22px 1fr; }
  .tl-step .when { font-size: .72rem; }
}
.honesty {
  margin-top: .6rem; max-width: 720px;
  font-size: .92rem; color: var(--ink-2);
  border-left: 3px solid var(--line); padding-left: 1rem;
}

/* ---------------------------------------------------------------- chips grid */
.cat-cloud { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.6rem 0 0; }
.cat {
  font-size: .95rem; padding: .5rem 1rem;
  border: 1px solid var(--line); border-radius: 999px; background: var(--paper);
}
.vehicle-note {
  margin-top: 1.6rem; padding: 1.1rem 1.3rem; max-width: 640px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); font-size: .95rem; color: var(--ink-2);
}
.vehicle-note b { color: var(--ink); }

/* ---------------------------------------------------------------- features */
.grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem; margin-top: 2.2rem;
}
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .grid-3 { grid-template-columns: 1fr; } }
.feature {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); padding: 1.4rem 1.4rem 1.2rem;
}
.feature .ic {
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--wash); color: var(--brand-ink);
  margin-bottom: .9rem;
}
.feature p { font-size: .95rem; color: var(--ink-2); margin: 0; }

/* ---------------------------------------------------------------- privacy */
.rights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2.2rem; }
@media (max-width: 760px) { .rights { grid-template-columns: 1fr; gap: 1.4rem; } }
.rights h3 { display: flex; align-items: center; gap: .55rem; }
.rights h3 svg { color: var(--fresh); flex: none; }
.rights p { font-size: .95rem; color: var(--ink-2); margin: 0; }

/* ---------------------------------------------------------------- screenshot */
.shot-frame {
  margin-top: 2.2rem;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--wash);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.shot-frame .bar {
  display: flex; gap: 6px; padding: 11px 14px;
  border-bottom: 1px solid var(--line);
}
.shot-frame .bar i {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--line); display: block;
}
.shot-frame img { display: block; width: 100%; }
.shot-caption { font-size: .9rem; color: var(--ink-2); margin-top: .9rem; }

/* ---------------------------------------------------------------- pricing */
.free-card {
  margin-top: 2.2rem; max-width: 620px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); box-shadow: var(--shadow-soft);
  padding: 1.8rem 2rem;
}
.free-card .price {
  font: 800 2.4rem/1 var(--display); letter-spacing: -0.02em;
}
.free-card ul { margin: 1rem 0 0; padding-left: 1.2rem; color: var(--ink-2); }
.free-card li { margin: .35rem 0; }

/* ---------------------------------------------------------------- FAQ */
.faq { max-width: 760px; margin-top: 1.6rem; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: .35rem 0;
}
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font: 600 1.05rem/1.4 var(--body);
  padding: .8rem 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font: 400 1.4rem/1 var(--mono); color: var(--ink-2); flex: none;
  transition: transform .15s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 0 1.1rem; color: var(--ink-2); max-width: 60ch; }
.faq .a p { margin-bottom: .6em; }
.faq .a p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------- download */
/* Full container width, like .grid-3 and .rights — the page's other grids all
   span the container, so a narrower one left a hole on the right and put the
   cards on a rail nothing else shares (reviewed 2026-08-06). */
.dl-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin-top: 2.2rem; }
@media (max-width: 980px) { .dl-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .dl-cards { grid-template-columns: 1fr; } }
.dl-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); padding: 1.6rem;
  display: flex; flex-direction: column; gap: .4rem; align-items: flex-start;
  /* The card lays its children out flex-start, so the TEXT must agree —
     inside a .center section .req would otherwise inherit centring and sit
     misaligned under a left-aligned heading and button (reported 2026-08-06). */
  text-align: left;
}
.dl-card h3 { display: flex; align-items: center; gap: .6rem; margin-bottom: .1em; }
.dl-card .req { font: 400 .78rem/1.5 var(--mono); color: var(--ink-2); margin-bottom: .5rem; }
/* auto, not a fixed margin: the spec lines wrap to different heights per
   platform, so a fixed margin puts the four CTAs on four baselines. The grid
   stretches every card to the same height, so auto pins them to a shared one;
   the .req margin above keeps a minimum gap in the tallest card. */
.dl-card .btn { margin-top: auto; }
.dl-help { margin-top: 1.4rem; font-size: .95rem; color: var(--ink-2); max-width: 62ch; }

/* ------------------------------------------- launch-notification form */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
/* Honeypot: hidden from people, visible to naive bots. Not display:none —
   some bots skip those; off-screen still gets filled. */
.notify .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.notify {
  display: flex; flex-wrap: wrap; gap: .6rem;
  margin-top: 1.8rem; max-width: 480px;
}
/* `display: flex` beats the UA stylesheet's [hidden] { display: none }, so the
   success state left the form on screen. Must be restated explicitly. */
.notify[hidden] { display: none; }
.notify input[type="email"] {
  flex: 1 1 240px; min-width: 0;
  font: 400 1rem/1 var(--body); color: var(--ink);
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 999px; padding: .8rem 1.2rem;
}
.notify input[type="email"]::placeholder { color: var(--ink-2); opacity: .7; }
.notify input[type="email"]:focus-visible {
  outline: 2px solid var(--accent, #6d5cff); outline-offset: 2px; border-color: transparent;
}
.notify .btn { flex: 0 0 auto; }
.notify-note { margin-top: .8rem; font-size: .88rem; color: var(--ink-2); max-width: 52ch; }
.notify-note.is-ok  { color: var(--fresh, #34d399); }
.notify-note.is-bad { color: #f87171; }

/* download page: install steps */
.steps { counter-reset: step; max-width: 680px; margin-top: 1rem; padding-left: 0; }
.steps li {
  list-style: none; counter-increment: step;
  position: relative; padding: 0 0 1.1rem 3rem;
}
.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: -.1rem;
  width: 2rem; height: 2rem; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--wash); border: 1px solid var(--line);
  font: 700 .9rem var(--mono); color: var(--brand-ink);
}
.callout {
  border: 1px solid var(--line); border-left: 4px solid var(--brand);
  border-radius: var(--radius-s);
  background: var(--wash);
  padding: 1rem 1.2rem; margin: 1.2rem 0; max-width: 680px;
  font-size: .95rem;
}
.callout b { display: block; margin-bottom: .2rem; }

/* ---------------------------------------------------------------- prose pages */
.prose { max-width: 720px; }
.prose h2 { font-size: 1.45rem; margin-top: 2.2em; }
.prose ul { color: var(--ink-2); }
.prose li { margin: .3rem 0; }

/* ---------------------------------------------------------------- footer */
.site-foot {
  border-top: 1px solid var(--line);
  background: var(--wash);
  padding: 56px 0 40px;
  font-size: .92rem; color: var(--ink-2);
}
.foot-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem;
  margin-bottom: 2.4rem;
}
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.site-foot h3 { font: 700 .8rem/2 var(--mono); text-transform: uppercase; letter-spacing: .1em; color: var(--ink-2); }
.site-foot ul { list-style: none; margin: 0; padding: 0; }
.site-foot li { margin: .4rem 0; }
.site-foot a { color: var(--ink-2); }
.site-foot a:hover { color: var(--ink); }
/* No max-width here: this element draws the footer divider, so capping it to a
   reading measure clipped the rule to ~half the container (reported
   2026-08-06). Legal fine print spans the footer; it's 2-3 lines, not body
   copy that needs a 72ch measure. */
.legal { border-top: 1px solid var(--line); padding-top: 1.6rem; font-size: .82rem; }

/* ---------------------------------------------------------------- misc */
.center { text-align: center; }
/* Anything with its own max-width needs centring here too, or it sits flush
   left inside centred copy — which is what the download grid did. */
.center .lead, .center .cta-row, .center .dl-cards, .center .dl-help {
  margin-left: auto; margin-right: auto;
}
.center .cta-row { justify-content: center; }
.notfound { padding: 120px 0; text-align: center; }

/* -------------------------------------------------- activation bridge page */
/* activate.html — the Lemon Squeezy purchase → app handoff. Deliberately
   inherits the site's tokens rather than introducing a look of its own: the
   customer arrives here mid-purchase and the page's whole job is to not feel
   like a detour. Class names are namespaced because the marketing pages
   already own the short ones. */
.activate { padding: 110px 0 130px; text-align: center; }
.activate h1 { margin-bottom: .6rem; }
/* The marketing pages give every <section> a band's worth of vertical padding.
   This page is one short column, not a set of bands, so it opts out — the
   inherited 88px opened a dead gap between the lead and the handoff button. */
.activate section { padding: 0; }
.activate #ready > .cta-row { margin-top: 1.9rem; }
/* The manual path sits BELOW the handoff and is visually quieter, but it is
   never hidden: for anyone reading the receipt on a machine without the app,
   the key and the install link are the only useful things on the page. */
.activate-manual {
  max-width: 34rem; margin: 3.4rem auto 0; padding-top: 2.4rem;
  border-top: 1px solid var(--line);
}
.activate-manual h2 { font-size: 1.05rem; margin-bottom: .5rem; }
.activate-manual .lead { font-size: 1rem; }
.keybox {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  max-width: 30rem; margin: 1.3rem auto 1.1rem;
  padding: .7rem .7rem .7rem 1rem;
  background: var(--wash); border: 1px solid var(--line); border-radius: var(--radius-s);
}
.keybox code {
  font: 500 .95rem var(--mono); color: var(--ink);
  word-break: break-all; text-align: left;
}
