/* ─────────────────────────────────────────────────────────────────
   LinkedIn Pinpoint Answers Today — main.css  (v6.2)
   STRICT light theme. Every surface is #E5F0FF or #FFFFFF.
   ────────────────────────────────────────────────────────────────── */

:root {
  --bg:           #E5F0FF;            /* Titan White - the ONE background */
  --surface:      #FFFFFF;            /* Card surface */
  --primary:      #0B6DE4;            /* Bright Blue */
  --primary-700:  #0856B8;
  --primary-100:  #DCEAFD;
  --ink:          #000000;
  --ink-soft:     #1F2937;            /* Headings */
  --muted:        #475569;
  --muted-2:      #64748B;
  --line:         #D8E4F4;
  --line-strong:  #B7CDEC;
  --button-text:  #FEFEFE;
  --success:      #16A34A;

  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  20px;

  --shadow-1: 0 2px 8px rgba(11, 109, 228, .06), 0 1px 2px rgba(15, 23, 42, .04);
  --shadow-2: 0 12px 28px -10px rgba(11, 109, 228, .15), 0 4px 10px -4px rgba(15, 23, 42, .05);

  --font-display: 'Sora', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --container: 1180px;
  scroll-behavior: smooth;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--primary-700); }
button { font: inherit; cursor: pointer; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--ink-soft);
  line-height: 1.2;
  letter-spacing: -0.015em;
}
::selection { background: var(--primary-100); color: var(--ink-soft); }

.pp-container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .pp-container { padding: 0 28px; } }

.pp-section { padding: 56px 0; }
@media (min-width: 768px) { .pp-section { padding: 72px 0; } }
.pp-section--tight { padding: 28px 0; }

.pp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-100);
  padding: 6px 12px; border-radius: 100px;
}

/* ── Header ─────────────────────────────────────────────── */
.pp-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(229, 240, 255, .92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.pp-header__row {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 16px;
}
.pp-logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.05rem;
  letter-spacing: -0.02em;
  /* Hard cap on the whole logo block so an oversized brand asset can't push
     the header into a giant strip on any viewport. */
  max-width: min(60vw, 460px);
  min-width: 0;
}
.pp-logo:hover { color: var(--primary); }

/* Uploaded logo image — explicit size that the global img{height:auto}
   rule above can't override. We use auto width + capped height so any
   aspect ratio uploads cleanly without distortion or overflow. */
.pp-logo img {
  height: 52px;
  width: auto;
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  display: block;
}
@media (max-width: 480px) {
  .pp-header__row { height: 64px; }
  .pp-logo img { height: 40px; max-height: 48px; }
  .pp-logo { font-size: .95rem; gap: 8px; }
}
.pp-logo__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--button-text);
  box-shadow: 0 4px 10px -2px rgba(11, 109, 228, .35);
}
.pp-nav ul { display: flex; align-items: center; gap: 4px; }
.pp-nav a {
  display: inline-block; padding: 8px 14px;
  border-radius: 100px;
  font-weight: 500; font-size: 0.92rem;
  color: var(--muted);
}
.pp-nav a:hover { background: var(--primary-100); color: var(--primary-700); }
.pp-nav a.is-active { background: var(--primary); color: var(--button-text); }
.pp-nav a.is-active:hover { background: var(--primary-700); color: var(--button-text); }

.pp-nav-toggle {
  display: none; background: transparent;
  border: 1px solid var(--line-strong); border-radius: 10px;
  width: 42px; height: 42px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 4px; padding: 10px;
}
.pp-nav-toggle span {
  width: 18px; height: 2px;
  background: var(--ink-soft); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.pp-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.pp-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.pp-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 767px) {
  .pp-nav-toggle { display: inline-flex; }
  .pp-nav {
    position: fixed; inset: 64px 0 auto 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 16px 20px 22px;
    box-shadow: var(--shadow-2);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .25s, opacity .25s;
  }
  .pp-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .pp-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .pp-nav a { display: block; padding: 12px 14px; font-size: 1rem; }
}

/* ── Buttons ─────────────────────────────────────────────── */
.pp-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 24px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600; font-size: 0.94rem;
  border: 2px solid transparent;
  text-align: center;
  transition: transform .18s, box-shadow .18s, background .18s, color .18s;
  cursor: pointer; white-space: nowrap;
}
.pp-btn--primary {
  background: var(--primary); color: var(--button-text);
  box-shadow: 0 8px 20px -8px rgba(11, 109, 228, .55);
}
.pp-btn--primary:hover {
  background: var(--primary-700); color: var(--button-text);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -10px rgba(11, 109, 228, .65);
}
.pp-btn--ghost {
  background: var(--surface); color: var(--ink-soft);
  border-color: var(--line-strong);
}
.pp-btn--ghost:hover { border-color: var(--primary); color: var(--primary); }
.pp-btn--lg { padding: 15px 30px; font-size: 1rem; }
.pp-btn--block { width: 100%; }

/* ── Hero (left content + right featured image) ─────────── */
.pp-hero { padding: 40px 0 24px; }
@media (min-width: 768px) { .pp-hero { padding: 56px 0 28px; } }

.pp-hero__grid {
  /* Mobile: stack as a flex column so order: works to put image first.
     CSS Grid with one column ignores `order` — flex doesn't. */
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}
@media (min-width: 960px) {
  .pp-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
  }
}

.pp-hero__date {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-100);
  color: var(--primary-700);
  font-weight: 600; font-size: .82rem;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 14px;
}
.pp-hero__title {
  font-size: clamp(1.85rem, 5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--ink-soft);
  line-height: 1.18;
}
.pp-hero__intro {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Featured image panel (right side of hero) */
.pp-hero__image {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow-2);
  position: sticky; top: 96px;
}
.pp-hero__image img {
  width: 100%; height: auto; display: block;
  border-radius: 12px;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
  background: var(--bg);
}
@media (max-width: 959px) {
  /* Mobile: featured image first, content below (Colordle-style stack).
     Flex container above lets `order` actually reorder children. */
  .pp-hero__image { position: static; }
  .pp-hero__main  { order: 2; }
  .pp-hero__side  { order: 1; }
}

/* ── Clues card ──────────────────────────────────────────── */
.pp-clues {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-1);
}
.pp-clues__head {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.05rem;
  margin-bottom: 14px;
  color: var(--ink-soft);
}
.pp-clues__head i { color: var(--primary); font-size: 1.2rem; }
.pp-clue {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.pp-clue:last-child { border-bottom: 0; padding-bottom: 0; }
.pp-clue:first-child { padding-top: 4px; }
.pp-clue__num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--button-text);
  font-family: var(--font-mono); font-weight: 700;
  font-size: .8rem;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.pp-clue__text {
  color: var(--ink); font-size: .96rem; line-height: 1.55;
  font-weight: 500;
}
.pp-clue__expl {
  margin-top: 6px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.6;
  padding: 10px 12px;
  background: var(--bg);
  border-radius: 8px;
  border-left: 3px solid var(--primary-100);
}

/* ── Reveal button + answer panel ───────────────────────── */
.pp-reveal-wrap { margin-bottom: 18px; }
.pp-reveal__btn {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 16px 26px;
  background: var(--surface);
  color: var(--ink-soft);
  border: 2px solid var(--primary);
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 1rem;
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 6px 14px -8px rgba(11, 109, 228, .35);
}
.pp-reveal__btn-label { display: inline-flex; align-items: center; gap: 10px; }
.pp-reveal__btn:hover {
  background: var(--primary);
  color: var(--button-text);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -10px rgba(11, 109, 228, .55);
}
.pp-reveal__btn[aria-expanded="true"] {
  background: var(--primary);
  color: var(--button-text);
}
.pp-reveal__btn-chev { transition: transform .25s; }
.pp-reveal__btn[aria-expanded="true"] .pp-reveal__btn-chev { transform: rotate(180deg); }

.pp-reveal__panel {
  max-height: 0; overflow: hidden;
  opacity: 0;
  transition: max-height .45s ease, opacity .35s ease, margin-top .35s ease;
  margin-top: 0;
}
.pp-reveal__panel.is-open {
  max-height: 2000px; opacity: 1; margin-top: 16px;
}

.pp-answer {
  background: var(--surface);
  border: 2px solid var(--primary-100);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-1);
}
.pp-answer__label {
  display: block;
  font-family: var(--font-mono);
  font-size: .72rem; letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}
.pp-answer__word {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink-soft);
  line-height: 1.2;
}
/* Word + Copy button row: stacks vertically on narrow screens, side-by-side on wider ones */
.pp-answer__word-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media (min-width: 480px) {
  .pp-answer__word-row {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.pp-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--primary);
  background: var(--primary-100);
  color: var(--primary-700);
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s, color .18s, transform .15s, border-color .18s;
  white-space: nowrap;
}
.pp-copy-btn:hover {
  background: var(--primary);
  color: var(--button-text);
  transform: translateY(-1px);
}
.pp-copy-btn:active { transform: translateY(0); }
.pp-copy-btn.is-copied {
  background: var(--success);
  border-color: var(--success);
  color: var(--button-text);
}
.pp-copy-btn i { font-size: 1rem; }

.pp-answer__explain {
  margin-top: 18px;
  text-align: left;
  color: var(--ink);
  line-height: 1.7;
  font-size: .96rem;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.pp-answer__explain p { margin-bottom: 12px; }
.pp-answer__explain ul, .pp-answer__explain ol { padding-left: 1.4rem; margin-bottom: 12px; }

/* ── Action row (Previous / Unlimited / Guide) ──────────── */
.pp-action-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  align-items: center; margin-top: 22px;
}

/* ── Locked countdown ───────────────────────────────────── */
.pp-locked {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-1);
}
.pp-locked__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--primary-100);
  color: var(--primary);
  font-size: 1.7rem;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.pp-locked h3 { font-size: 1.25rem; margin-bottom: 6px; }
.pp-locked p { color: var(--muted); margin-bottom: 22px; }
.pp-countdown {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary);
  color: var(--button-text);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-mono);
  box-shadow: var(--shadow-1);
}
.pp-countdown__cell { text-align: center; min-width: 56px; }
.pp-countdown__num { font-size: 1.45rem; font-weight: 700; display: block; line-height: 1; }
.pp-countdown__lbl { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; opacity: .7; margin-top: 4px; display: block; }
.pp-countdown__sep { font-size: 1.3rem; font-weight: 700; opacity: .5; margin-top: -8px; }

/* ── Section heads ───────────────────────────────────────── */
.pp-sec-head { text-align: center; margin-bottom: 36px; }
.pp-sec-head h2 { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 800; margin: 12px 0 8px; }
.pp-sec-head p  { color: var(--muted); font-size: 1rem; max-width: 600px; margin: 0 auto; }

/* ── Recent answers grid ─────────────────────────────────── */
.pp-grid {
  display: grid; gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .pp-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .pp-grid { grid-template-columns: 1fr 1fr 1fr; } }

.pp-acard {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  height: 100%;
  color: var(--ink-soft);
}
.pp-acard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: var(--primary-100);
  color: var(--ink-soft);
}
.pp-acard__img {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg);
  overflow: hidden;
}
.pp-acard__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.pp-acard:hover .pp-acard__img img { transform: scale(1.04); }
.pp-acard__pip {
  position: absolute; top: 12px; right: 12px;
  background: var(--primary);
  color: var(--button-text);
  font-family: var(--font-mono);
  font-size: .72rem; font-weight: 700;
  padding: 4px 10px; border-radius: 100px;
}
.pp-acard__body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.pp-acard__meta {
  font-family: var(--font-mono);
  font-size: .72rem; letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 8px;
}
.pp-acard__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);              /* Blue link-style color */
  line-height: 1.4;
  /* Truncate cleanly on small cards: max 2 lines, ellipsis after */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  /* Removed text-transform: capitalize — would have broken "LinkedIn" → "Linkedin" */
}
.pp-acard:hover .pp-acard__title {
  color: var(--primary-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Game guide section ──────────────────────────────────── */
.pp-guide {
  display: grid; gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) { .pp-guide { grid-template-columns: 1.1fr 1fr; } }
.pp-step {
  display: grid; grid-template-columns: 48px 1fr; gap: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 14px;
}
.pp-step__num {
  width: 38px; height: 38px;
  background: var(--primary);
  color: var(--button-text);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--font-display);
}
.pp-step__body h4 { font-size: 1rem; margin-bottom: 6px; }
.pp-step__body p  { color: var(--muted); font-size: .9rem; line-height: 1.6; }

.pp-tipscard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  height: 100%;
}
.pp-tipscard h3 { font-size: 1.1rem; margin-bottom: 14px; }
.pp-tipscard ul { padding-left: 1.2rem; color: var(--muted); line-height: 1.85; }
.pp-tipscard ul li { list-style: disc; margin-bottom: 4px; font-size: .92rem; }

/* ── FAQ ────────────────────────────────────────────────── */
.pp-faq {
  max-width: 760px; margin: 0 auto;
  display: grid; gap: 12px;
}
.pp-faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.pp-faq__q {
  width: 100%; text-align: left;
  background: transparent; border: 0;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 1rem;
  color: var(--ink-soft);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.pp-faq__q:hover { color: var(--primary); }
.pp-faq__q i { transition: transform .25s; color: var(--primary); }
.pp-faq__item.is-open .pp-faq__q i { transform: rotate(180deg); }
.pp-faq__a {
  max-height: 0; overflow: hidden;
  padding: 0 22px;
  color: var(--muted);
  font-size: .94rem; line-height: 1.7;
  transition: max-height .35s ease, padding .35s ease;
}
.pp-faq__item.is-open .pp-faq__a { max-height: 500px; padding: 0 22px 18px; }

/* ── Prev / Next ─────────────────────────────────────────── */
.pp-pn { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .pp-pn { grid-template-columns: 1fr 1fr; } }
.pp-pn__link {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--ink-soft);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.pp-pn__link:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-1);
  color: var(--ink-soft);
}
.pp-pn__link.is-next { justify-content: flex-end; text-align: right; }
.pp-pn__lbl { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); }
.pp-pn__title { font-family: var(--font-display); font-weight: 700; font-size: .96rem; margin-top: 2px; }
.pp-pn__icon { color: var(--primary); font-size: 1.4rem; }

/* ── Pagination ──────────────────────────────────────────── */
.pp-pagination ul { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px; margin-top: 32px; }
.pp-page-link {
  min-width: 38px; height: 38px;
  padding: 0 12px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
  font-weight: 600; font-size: .88rem;
  transition: .18s;
}
.pp-page-link:hover { border-color: var(--primary); color: var(--primary); }
.pp-page-link.is-active { background: var(--primary); color: var(--button-text); border-color: var(--primary); }
.pp-page-ellipsis { align-self: center; color: var(--muted-2); padding: 0 4px; }

/* ── Footer (LIGHT — Titan White matches body) ─────────── */
.pp-footer {
  background: var(--bg);
  color: var(--muted);
  padding: 56px 0 24px;
  margin-top: 60px;
  border-top: 1px solid var(--line);
}
.pp-footer__grid {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 720px) {
  .pp-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
}
.pp-footer__brand p {
  color: var(--muted); font-size: .88rem; line-height: 1.7;
  margin-bottom: 12px; max-width: 360px;
}
.pp-footer__disc { font-size: .76rem !important; color: var(--muted-2) !important; }
.pp-footer__logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.pp-footer h5 { color: var(--ink-soft); font-size: .9rem; font-weight: 700; margin-bottom: 14px; }
.pp-footer ul li { margin-bottom: 8px; }
.pp-footer ul a { color: var(--muted); font-size: .88rem; transition: color .15s; }
.pp-footer ul a:hover { color: var(--primary); }
.pp-footer__bottom { text-align: center; padding-top: 24px; }
.pp-footer__bottom p { color: var(--muted-2); font-size: .8rem; }

/* ── Empty state ─────────────────────────────────────────── */
.pp-empty {
  text-align: center; padding: 60px 20px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.pp-empty i { font-size: 3rem; color: var(--line-strong); margin-bottom: 16px; display: block; }

/* ── Utilities ───────────────────────────────────────────── */
.pp-text-center { text-align: center; }
.pp-mt-2 { margin-top: 16px; }
.pp-mt-3 { margin-top: 24px; }
.pp-mt-4 { margin-top: 32px; }
.pp-mb-3 { margin-bottom: 24px; }
.pp-mb-4 { margin-bottom: 32px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
