/* Pulsarun — frame.css. Brutalist-editorial system: warm-gray canvas, black/white blocks, mint + yellow accents. */

@font-face {
  font-family: 'PWDisplay';
  src: url('/assets/fonts/display-anton.woff2?v=1') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+2018-201E, U+2026, U+2013-2014;
}
@font-face {
  font-family: 'PWBody';
  src: url('/assets/fonts/body-inter.woff2?v=1') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+2018-201E, U+2026, U+2013-2014;
}
@font-face {
  font-family: 'PWBody';
  src: url('/assets/fonts/body-inter.woff2?v=1') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+2018-201E, U+2026, U+2013-2014;
}
@font-face {
  font-family: 'PWBody';
  src: url('/assets/fonts/body-inter.woff2?v=1') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+2018-201E, U+2026, U+2013-2014;
}
@font-face {
  font-family: 'PWMono';
  src: url('/assets/fonts/mono-jetbrains.woff2?v=1') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+2018-201E, U+2026, U+2013-2014;
}
/* metric-matched fallbacks so swap does not reflow the layout — placed right after the real face in every stack */
@font-face {
  font-family: 'PWBody Fallback';
  src: local('Arial');
  size-adjust: 107%;
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0%;
}
@font-face {
  font-family: 'PWDisplay Fallback';
  src: local('Arial Narrow'), local('Arial');
  size-adjust: 112%;
  ascent-override: 95%;
  descent-override: 25%;
  line-gap-override: 0%;
}

:root {
  --pw-black: #000000;
  --pw-white: #ffffff;
  --pw-canvas: #e5e5e5;
  --pw-mist: #f3f3f3;
  --pw-ash: #c6c6c6;
  --pw-smoke: #979797;
  --pw-slate: #444444;
  --pw-graphite: #2f2f2f;
  --pw-mint: #d1ffca;
  --pw-yellow: #fff100;

  --pw-f-display: 'PWDisplay', 'PWDisplay Fallback', ui-sans-serif, system-ui, sans-serif;
  --pw-f-body: 'PWBody', 'PWBody Fallback', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --pw-f-mono: 'PWMono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --pw-max: 1200px;
  --pw-gap: 80px;
  --pw-pad: 24px;
  --pw-gutter: clamp(20px, 5vw, 48px);

  --pw-r-card: 28px;
  --pw-r-card-lg: 56px;
  --pw-r-tag: 999px;
}

/* Theme is fixed light (brutalist-editorial on warm gray) — no dark-mode variant by design. */

/* ---------------------------------------------------------------------- */
/* Reset                                                                   */
/* ---------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  background: var(--pw-canvas);
  color: var(--pw-black);
  font-family: var(--pw-f-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, dl, dd, figure { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
table { border-collapse: collapse; }

.pw-skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--pw-yellow); color: var(--pw-black);
  padding: 10px 18px; border-radius: 0 0 12px 0;
  font-weight: 700; transition: top .15s ease;
}
.pw-skip:focus { top: 0; }

:focus-visible {
  outline: 3px solid var(--pw-black);
  outline-offset: 3px;
}
.pw-item__title a:focus-visible,
.pw-navpod__link:focus-visible { outline-offset: 4px; }

.pw-sr {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}

/* ---------------------------------------------------------------------- */
/* Type                                                                    */
/* ---------------------------------------------------------------------- */

h1, h2, h3 { font-family: var(--pw-f-display); text-transform: uppercase; line-height: 0.95; letter-spacing: -0.01em; }
.pw-block__title, .pw-review__title, .pw-genre__title, .pw-item__title, .pw-facts__num,
.pw-stage__title, .pw-block__title--onband, h1, h2, h3 { font-family: var(--pw-f-display); }
.pw-review__section h2, .pw-block__title { font-size: clamp(26px, 3.6vw, 38px); }
.pw-review__title, .pw-block__title--h1 { font-size: clamp(34px, 6vw, 58px); }
.pw-stage__title { font-size: clamp(40px, 7.5vw, 84px); }
.pw-item__title, .pw-genre__title { font-size: 22px; text-transform: none; letter-spacing: normal; font-weight: 700; font-family: var(--pw-f-body); }

.pw-block__eyebrow, .pw-facts__den, .pw-facts__k, dt, .pw-item__meta, .pw-review__section h2 + p:first-of-type::first-letter {
  font-family: var(--pw-f-mono);
}
.pw-block__eyebrow {
  font-family: var(--pw-f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pw-slate);
  margin: 0 0 10px;
}
.pw-block__eyebrow--onband { color: var(--pw-mint); }

.pw-prose { max-width: 68ch; font-size: 17px; line-height: 1.65; color: var(--pw-graphite); margin: 16px 0; }
.pw-prose--muted { color: var(--pw-slate); font-size: 14px; }
.pw-block__lead { max-width: 62ch; font-size: 19px; line-height: 1.5; color: var(--pw-slate); margin: 0 0 8px; }

/* ---------------------------------------------------------------------- */
/* Layout helpers                                                          */
/* ---------------------------------------------------------------------- */

.pw-bar__inner, .pw-mobilenav, .pw-base__inner, .pw-block, .pw-review__intro, .pw-review__grid,
.pw-review__section, .pw-block--roundupintro, .pw-block--rankings, .pw-block--article,
.pw-sitemap, .pw-base__legal {
  width: 100%;
  max-width: var(--pw-max);
  margin-inline: auto;
  padding-inline: var(--pw-gutter);
}

.pw-block { padding-block: 56px; }
.pw-block + .pw-block { border-top: none; }

/* ---------------------------------------------------------------------- */
/* Buttons — clipped double corner, never a plain rectangle (P18.2)        */
/* ---------------------------------------------------------------------- */

.pw-go {
  --clip: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 15px;
  background: var(--pw-black);
  color: var(--pw-white);
  clip-path: polygon(0 0, calc(100% - var(--clip)) 0, 100% var(--clip), 100% 100%, var(--clip) 100%, 0 calc(100% - var(--clip)));
  transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease;
  border: 2px solid var(--pw-black);
}
.pw-go svg { flex: none; }
.pw-go:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--pw-black); }
.pw-go:active { transform: translate(0, 0); box-shadow: none; }
.pw-go--ghost {
  --clip: 12px;
  background: transparent;
  color: var(--pw-black);
  clip-path: polygon(0 0, calc(100% - var(--clip)) 0, 100% 100%, var(--clip) 100%);
}
.pw-go--ghost:hover { background: var(--pw-black); color: var(--pw-white); box-shadow: none; transform: none; }
.pw-go--yellow { background: var(--pw-yellow); color: var(--pw-black); border-color: var(--pw-black); }
.pw-go--yellow:hover { box-shadow: 4px 4px 0 var(--pw-black); }
.pw-go--text {
  background: none; border: 0; color: var(--pw-black); padding: 4px 0; clip-path: none;
  border-bottom: 2px solid var(--pw-mint); font-weight: 700; font-size: 14px;
}
.pw-go--text:hover { border-color: var(--pw-black); box-shadow: none; transform: none; }

/* ---------------------------------------------------------------------- */
/* Header / nav                                                            */
/* ---------------------------------------------------------------------- */

.pw-bar { position: sticky; top: 0; z-index: 100; background: rgba(229,229,229,.88); backdrop-filter: blur(10px); }
.pw-bar__inner { display: flex; align-items: center; gap: 20px; padding-block: 18px; }
.pw-bar__brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 18px; letter-spacing: -0.01em; margin-right: auto; }
.pw-bar__mark svg { display: block; }
.pw-navpod {
  display: flex; align-items: center; gap: 4px;
  background: var(--pw-white); border-radius: var(--pw-r-tag);
  padding: 6px; margin-right: auto;
}
.pw-navpod__link {
  padding: 10px 16px; border-radius: var(--pw-r-tag); font-size: 14px; font-weight: 600; color: var(--pw-slate);
  transition: background-color .15s ease, color .15s ease;
}
.pw-navpod__link:hover { background: var(--pw-mist); color: var(--pw-black); }
.pw-navpod__link--active { background: var(--pw-black); color: var(--pw-white); }
.pw-bar__cta { padding: 10px 18px; font-size: 13px; }
.pw-burger { display: none; padding: 6px; }
.pw-burger[aria-expanded="true"] .pw-burger__open,
.pw-burger[aria-expanded="false"] .pw-burger__close { display: none; }
.pw-mobilenav { display: none; flex-direction: column; gap: 2px; padding-block: 4px 18px; }
.pw-mobilenav a { padding: 12px 6px; font-weight: 600; border-top: 1px solid var(--pw-ash); }
.pw-mobilenav[data-open] { display: flex; }

@media (max-width: 880px) {
  .pw-navpod, .pw-bar__cta { display: none; }
  .pw-burger { display: inline-flex; margin-left: auto; }
}

/* ---------------------------------------------------------------------- */
/* Hero (pw-stage)                                                         */
/* ---------------------------------------------------------------------- */

.pw-stage { position: relative; min-height: 78vh; display: flex; align-items: flex-end; overflow: hidden; color: var(--pw-white); }
.pw-stage__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.pw-stage__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.35) 30%, rgba(0,0,0,.85) 100%);
}
.pw-stage__inner { position: relative; z-index: 2; max-width: var(--pw-max); margin-inline: auto; padding: 0 var(--pw-gutter) 72px; width: 100%; }
.pw-stage__eyebrow { font-family: var(--pw-f-mono); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--pw-mint); margin: 0 0 14px; }
.pw-stage__title { margin: 0 0 22px; text-transform: uppercase; }
.pw-stage__lead { max-width: 56ch; font-size: clamp(16px, 2vw, 19px); color: #ecece6; margin: 0 0 28px; }
.pw-stage__actions, .pw-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.pw-stage__actions .pw-go--ghost { color: var(--pw-white); border-color: var(--pw-white); }
.pw-stage__actions .pw-go--ghost:hover { background: var(--pw-white); color: var(--pw-black); }
.pw-actions { margin-top: 20px; }

/* ---------------------------------------------------------------------- */
/* Genre showcase                                                          */
/* ---------------------------------------------------------------------- */

.pw-genres { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.pw-genre {
  background: var(--pw-white); border-radius: var(--pw-r-card-lg) var(--pw-r-card-lg) var(--pw-r-card) var(--pw-r-card);
  padding: 36px 32px; display: flex; flex-direction: column; gap: 10px;
}
.pw-genre__icon { color: var(--pw-black); margin-bottom: 6px; }
.pw-genre--survival .pw-genre__icon { color: var(--pw-slate); }
.pw-genre__dek { color: var(--pw-slate); font-size: 15px; line-height: 1.55; max-width: 40ch; }
.pw-genre__meta { font-family: var(--pw-f-mono); font-size: 12px; color: var(--pw-slate); margin-top: 4px; }
.pw-genre .pw-go--text { margin-top: 12px; }
@media (max-width: 760px) { .pw-genres { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------- */
/* Item list — single row, image left / text right (site-wide card unit)   */
/* ---------------------------------------------------------------------- */

.pw-itemlist { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.pw-item {
  display: flex; gap: 22px; align-items: flex-start;
  background: var(--pw-white); border-radius: var(--pw-r-card); padding: 20px;
}
.pw-item__media { flex: none; width: 96px; height: 96px; border-radius: 20px; overflow: hidden; display: block; background: var(--pw-mist); }
.pw-item__media img { width: 100%; height: 100%; object-fit: cover; }
.pw-item__body { min-width: 0; }
.pw-item__meta { font-family: var(--pw-f-mono); font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--pw-slate); margin: 0 0 6px; }
.pw-item__title { margin: 0 0 8px; }
.pw-item__title a:hover { text-decoration: underline; text-decoration-color: var(--pw-mint); text-decoration-thickness: 3px; }
.pw-item__text { color: var(--pw-slate); font-size: 15px; line-height: 1.55; margin: 0 0 10px; max-width: 62ch; }
.pw-item--sm .pw-item__media { width: 72px; height: 72px; border-radius: 16px; }
.pw-item--sm { padding: 14px; gap: 16px; }
.pw-item--sm .pw-item__title { font-size: 18px; }

.pw-chip {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--pw-mint); color: var(--pw-black); border-radius: var(--pw-r-tag);
  padding: 6px 14px; font-family: var(--pw-f-mono); font-size: 11px; letter-spacing: .04em; text-transform: uppercase;
}
.pw-chip--outline { background: transparent; border: 1.5px solid var(--pw-ash); color: var(--pw-slate); }
.pw-chip--mint { background: var(--pw-mint); }

/* ---------------------------------------------------------------------- */
/* Editorial picks / table / method / faq / contact sections               */
/* ---------------------------------------------------------------------- */

.pw-block--picks { background: var(--pw-mist); border-radius: var(--pw-r-card-lg); margin-inline: var(--pw-gutter); width: auto; max-width: none; padding-inline: clamp(20px, 4vw, 48px); }
.pw-block--picks .pw-block__head, .pw-block--picks .pw-itemlist, .pw-block--picks > .pw-go { max-width: var(--pw-max); margin-inline: auto; }
.pw-block--picks > .pw-go { display: table; margin-top: 26px; }

.pw-block--table .pw-block__head { margin-bottom: 8px; }

.pw-block--method { position: relative; padding: 0; overflow: hidden; color: var(--pw-white); }
.pw-block__band { width: 100%; height: clamp(360px, 46vw, 520px); object-fit: cover; display: block; }
.pw-block__bandscrim { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(0,0,0,.92) 20%, rgba(0,0,0,.55) 100%); }
.pw-block__bandinner { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; max-width: var(--pw-max); margin-inline: auto; padding-inline: var(--pw-gutter); }
.pw-block__title--onband { color: var(--pw-white); }
.pw-block__ondark { max-width: 56ch; color: #e7e7e2; font-size: 17px; line-height: 1.6; margin: 10px 0 22px; }

.pw-block--contact { background: var(--pw-black); color: var(--pw-white); border-radius: var(--pw-r-card-lg); margin-inline: var(--pw-gutter); width: auto; max-width: none; padding-inline: clamp(20px, 4vw, 48px); }
.pw-block--contact .pw-block__head, .pw-block--contact .pw-contact__cta, .pw-block--contact > .pw-go { max-width: var(--pw-max); margin-inline: auto; }
.pw-block--contact .pw-block__lead { color: #cfcfc9; }
.pw-block--contact .pw-block__eyebrow { color: var(--pw-mint); }
.pw-contact__cta { display: inline-flex; margin: 8px 12px 8px 0; }

/* ---------------------------------------------------------------------- */
/* Facts card + review layout                                              */
/* ---------------------------------------------------------------------- */

.pw-review__intro { padding-top: 40px; padding-bottom: 0; }
.pw-review__title { margin: 10px 0 18px; text-transform: none; letter-spacing: -0.01em; }
.pw-review__verdict { max-width: 66ch; font-size: 19px; line-height: 1.55; color: var(--pw-slate); margin-bottom: 8px; }

.pw-review__grid { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start; padding-top: 24px; }
.pw-review__hero { width: 100%; border-radius: var(--pw-r-card); object-fit: cover; aspect-ratio: 16/9; }
.pw-facts { background: var(--pw-white); border-radius: var(--pw-r-card); padding: 24px; }
.pw-facts__score { display: flex; align-items: baseline; gap: 8px; margin-bottom: 16px; }
.pw-facts__num { font-family: var(--pw-f-display); font-size: 44px; line-height: 1; }
.pw-facts__den { font-family: var(--pw-f-mono); font-size: 11px; text-transform: uppercase; color: var(--pw-slate); }
.pw-facts__list { display: flex; flex-direction: column; gap: 10px; }
.pw-facts__row { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; padding-bottom: 10px; border-bottom: 1px solid var(--pw-mist); }
.pw-facts__row:last-child { border-bottom: 0; padding-bottom: 0; }
.pw-facts__row dt { color: var(--pw-slate); font-size: 11px; text-transform: uppercase; letter-spacing: .04em; }
.pw-facts__row dd { margin: 0; text-align: right; font-weight: 600; max-width: 60%; }
.pw-facts__note { font-size: 12px; color: var(--pw-slate); margin-top: 16px; }

@media (max-width: 820px) {
  .pw-review__grid { grid-template-columns: 1fr; }
}

.pw-review__section { padding-block: 34px; }
.pw-review__section h2 { text-transform: none; letter-spacing: -0.005em; font-weight: 800; margin-bottom: 14px; }
.pw-review__section p { max-width: 70ch; font-size: 17px; line-height: 1.65; color: var(--pw-graphite); margin: 0 0 14px; }
.pw-review__section p:last-child { margin-bottom: 0; }

.pw-shot { max-width: var(--pw-max); margin: 8px auto 0; padding-inline: var(--pw-gutter); }
.pw-shot img { width: 100%; border-radius: var(--pw-r-card); aspect-ratio: 16/9; object-fit: cover; }
.pw-shot figcaption { font-size: 12px; color: var(--pw-slate); margin-top: 10px; font-family: var(--pw-f-mono); }

.pw-verdict { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pw-verdict__head { font-family: var(--pw-f-body); text-transform: none; font-size: 16px; font-weight: 800; margin-bottom: 12px; }
.pw-verdict__list { display: flex; flex-direction: column; gap: 10px; }
.pw-verdict__list li { position: relative; padding-left: 22px; font-size: 15px; line-height: 1.5; color: var(--pw-graphite); }
.pw-verdict__list--pro li::before { content: ''; position: absolute; left: 0; top: 7px; width: 10px; height: 10px; background: var(--pw-mint); border-radius: 3px; }
.pw-verdict__list--con li::before { content: ''; position: absolute; left: 0; top: 7px; width: 10px; height: 10px; background: var(--pw-ash); border-radius: 3px; transform: rotate(45deg); }
@media (max-width: 640px) { .pw-verdict { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------- */
/* Tables (comparison grids) — full container width, horizontal scroll     */
/* ---------------------------------------------------------------------- */

.pw-grid { width: 100%; margin-top: 24px; }
.pw-grid__scroll { width: 100%; overflow-x: auto; border-radius: var(--pw-r-card); background: var(--pw-white); }
.pw-grid__scroll::-webkit-scrollbar { height: 8px; }
.pw-grid__scroll::-webkit-scrollbar-thumb { background: var(--pw-ash); border-radius: 8px; }
@supports (scrollbar-width: thin) {
  .pw-grid__scroll { scrollbar-width: thin; scrollbar-color: var(--pw-ash) transparent; }
}
.pw-grid__table { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 14px; }
.pw-grid__table caption { text-align: left; font-family: var(--pw-f-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--pw-slate); padding: 18px 20px 0; }
.pw-grid__table th, .pw-grid__table td { padding: 14px 20px; text-align: left; vertical-align: top; }
.pw-grid__table thead th { border-bottom: 2px solid var(--pw-black); font-size: 12px; text-transform: uppercase; letter-spacing: .03em; }
.pw-grid__table tbody tr:nth-child(odd) { background: var(--pw-mist); }
.pw-grid__table tbody th { font-weight: 700; }
.pw-grid__note { font-size: 13px; color: var(--pw-slate); margin-top: 14px; max-width: 72ch; }

/* ---------------------------------------------------------------------- */
/* FAQ accordion                                                           */
/* ---------------------------------------------------------------------- */

.pw-qa { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; width: 100%; }
.pw-qa__item { background: var(--pw-white); border-radius: 20px; overflow: hidden; }
.pw-qa__btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; text-align: left; font-size: 16px; font-weight: 700; }
.pw-qa__mark { transition: transform .2s ease; flex: none; }
.pw-qa__btn[aria-expanded="true"] .pw-qa__mark { transform: rotate(45deg); }
.pw-qa__a { padding: 0 22px 20px; }
.pw-qa__a p { max-width: 68ch; color: var(--pw-slate); font-size: 15px; line-height: 1.6; margin: 0; }

/* ---------------------------------------------------------------------- */
/* Hub / roundup / article specifics                                       */
/* ---------------------------------------------------------------------- */

.pw-block--hubintro { padding-bottom: 8px; }
.pw-block--lookfor, .pw-block--cross { padding-block: 30px 56px; }
.pw-block--cross .pw-prose { color: var(--pw-slate); }
.pw-block--cross a { text-decoration: underline; text-decoration-color: var(--pw-mint); text-decoration-thickness: 2px; }

.pw-ranklist { display: flex; flex-direction: column; gap: 18px; }
.pw-rank { display: flex; gap: 20px; align-items: flex-start; background: var(--pw-white); border-radius: var(--pw-r-card); padding: 20px; position: relative; }
.pw-rank__num { font-family: var(--pw-f-display); font-size: 40px; line-height: 1; color: var(--pw-slate); flex: none; width: 56px; }
.pw-rank__media { flex: none; width: 88px; height: 88px; border-radius: 18px; overflow: hidden; background: var(--pw-mist); }
.pw-rank__media img { width: 100%; height: 100%; object-fit: cover; }
.pw-rank__body { min-width: 0; }

.pw-block--article { padding-top: 44px; }
.pw-block--article .pw-block__title--h1 { text-transform: none; letter-spacing: -0.01em; margin-bottom: 14px; }
.pw-block--article ul.pw-plainlist { display: flex; flex-direction: column; gap: 8px; margin: 16px 0; max-width: 70ch; }
.pw-plainlist li { position: relative; padding-left: 20px; font-size: 16px; color: var(--pw-graphite); line-height: 1.55; }
.pw-plainlist li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; background: var(--pw-mint); }
.pw-block--404 { min-height: 50vh; display: flex; flex-direction: column; justify-content: center; }

.pw-sitemap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; padding-block: 40px 70px; }
.pw-sitemap__group h2 { font-family: var(--pw-f-body); text-transform: none; font-size: 16px; font-weight: 800; margin-bottom: 12px; }
.pw-sitemap__group .pw-plainlist li::before { background: var(--pw-ash); }
@media (max-width: 760px) { .pw-sitemap { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .pw-sitemap { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------- */
/* Breadcrumbs                                                             */
/* ---------------------------------------------------------------------- */

.pw-trail { max-width: var(--pw-max); margin-inline: auto; padding: 18px var(--pw-gutter) 0; font-family: var(--pw-f-mono); font-size: 12px; color: var(--pw-slate); display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.pw-trail__link { color: var(--pw-slate); }
.pw-trail__link:hover { color: var(--pw-black); text-decoration: underline; }
.pw-trail__sep { color: var(--pw-slate); }
.pw-trail__here { color: var(--pw-black); }

/* ---------------------------------------------------------------------- */
/* Cookie notice                                                           */
/* ---------------------------------------------------------------------- */

.pw-notice { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 150; }
.pw-notice[hidden] { display: none; }
.pw-notice__inner {
  max-width: 760px; margin-inline: auto; background: var(--pw-black); color: var(--pw-white);
  border-radius: 24px; padding: 22px 24px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
}
.pw-notice__text { flex: 1 1 380px; font-size: 13.5px; line-height: 1.5; color: #dedede; margin: 0; }
.pw-notice__text a { color: var(--pw-mint); text-decoration: underline; }
.pw-notice__actions { display: flex; gap: 10px; flex: none; }
.pw-notice .pw-go { background: var(--pw-mint); color: var(--pw-black); border-color: var(--pw-mint); }
.pw-notice .pw-go--ghost { background: transparent; color: var(--pw-white); border-color: #666; }
.pw-notice .pw-go--ghost:hover { background: var(--pw-white); color: var(--pw-black); }

/* ---------------------------------------------------------------------- */
/* Footer                                                                   */
/* ---------------------------------------------------------------------- */

.pw-base { background: var(--pw-black); color: #d9d9d4; margin-top: 40px; }
.pw-base__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr; gap: 28px; padding-block: 64px 40px; }
.pw-base__brand { display: flex; align-items: center; gap: 8px; color: var(--pw-white); font-weight: 700; font-size: 18px; margin-bottom: 12px; }
.pw-base__about { font-size: 13.5px; line-height: 1.6; color: #9d9d97; max-width: 34ch; }
.pw-base__head { font-family: var(--pw-f-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: #77776f; margin-bottom: 14px; }
.pw-base__col a { display: block; padding: 5px 0; font-size: 14px; color: #cfcfc9; }
.pw-base__col a:hover { color: var(--pw-white); text-decoration: underline; text-decoration-color: var(--pw-mint); }
.pw-base .pw-mail, .pw-base .pw-go { margin-top: 4px; }
.pw-base .pw-go--yellow { color: var(--pw-black); }
.pw-base__legal { border-top: 1px solid #2a2a28; max-width: var(--pw-max); margin-inline: auto; padding: 20px var(--pw-gutter) 40px; font-size: 12px; color: #77776f; }
@media (max-width: 900px) { .pw-base__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pw-base__inner { grid-template-columns: 1fr; } }

.pw-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 140;
  width: 48px; height: 48px; display: none; align-items: center; justify-content: center;
  background: var(--pw-black); color: var(--pw-white);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.pw-top[data-show] { display: inline-flex; }

/* ---------------------------------------------------------------------- */
/* Scroll-reveal (IntersectionObserver driven; see interact.js)            */
/* ---------------------------------------------------------------------- */

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------------------------------------------------------------------- */
/* Responsive type/layout tweaks                                           */
/* ---------------------------------------------------------------------- */

@media (max-width: 640px) {
  .pw-item { flex-direction: row; }
  .pw-item__media { width: 76px; height: 76px; }
  .pw-block { padding-block: 40px; }
  .pw-review__hero { aspect-ratio: 4/3; }
}
