/* ==========================================================================
   Solo Founder Stack — indie zine theme, 2026 refresh
   One person, one desk: warm paper + film grain, terracotta ink, serif
   display, marker highlights, sticker badges, hand-drawn squiggles.
   No external resources: system font stacks + inline SVG data URIs only.
   ========================================================================== */

:root {
  /* palette — warm paper & terracotta ink */
  --paper: #faf4ea;
  --paper-deep: #f1e6d2;
  --card: #fffcf5;
  --card-warm: #fdeeda;
  --ink: #2c2115;
  --ink-soft: #55483a;
  --ink-mute: #6e6152;
  --line: #e7dcc6;
  --line-strong: #d8c9ad;
  --brand: #c2410c;
  --brand-deep: #9a3412;
  --brand-bright: #ea580c;
  --peach: #fdba74;
  --amber: #fbbf24;
  --footer-ink: #241a10;
  --cream-on-dark: #f3e7d3;

  /* elevation — warm-tinted, soft */
  --shadow-soft: 0 1px 2px rgba(84, 58, 32, .05), 0 10px 28px -14px rgba(84, 58, 32, .18);
  --shadow-lift: 0 2px 4px rgba(84, 58, 32, .07), 0 18px 44px -18px rgba(84, 58, 32, .28);

  /* shape */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;

  /* type — system stacks only */
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, "Times New Roman", serif;
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "Cascadia Code", "Segoe UI Mono", Consolas, Menlo, monospace;

  /* fluid type scale */
  --fs-hero:  clamp(2.55rem, 1.2rem + 5.6vw, 4.55rem);
  --fs-h1:    clamp(2.05rem, 1.2rem + 3.4vw, 3.2rem);
  --fs-h2:    clamp(1.6rem, 1.22rem + 1.55vw, 2.25rem);
  --fs-h3:    clamp(1.19rem, 1.07rem + .5vw, 1.44rem);
  --fs-lede:  clamp(1.09rem, 1rem + .48vw, 1.3rem);
  --fs-body:  clamp(1rem, .97rem + .18vw, 1.0625rem);
  --fs-small: .9rem;

  /* rhythm */
  --section-pad: clamp(3.4rem, 3vw + 2.3rem, 5.75rem);
  --flow: 1.1rem;

  /* hand-drawn squiggle (inline SVG, no external call) */
  --squiggle: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12'%3E%3Cpath d='M3 8 C 16 2, 30 11, 44 6 S 72 2, 86 8 S 112 5, 117 6' fill='none' stroke='%23ea580c' stroke-width='3.5' stroke-linecap='round'/%3E%3C/svg%3E");

  /* sticker starburst for the winner card (inline SVG) */
  --starburst: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M32 3l5.5 14.5L52 10l-7.5 13.5L60 29l-15.5 5.5L52 50l-14.5-7.5L32 58l-5.5-15.5L12 50l7.5-15.5L4 29l15.5-5.5L12 10l14.5 7.5z' fill='%23fbbf24' stroke='%239a3412' stroke-width='2.5' stroke-linejoin='round'/%3E%3C/svg%3E");

  /* film grain overlay (inline SVG turbulence) */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .33 0 0 0 0 .23 0 0 0 0 .13 0 0 0 .05 0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* paper grain over everything — very low alpha, purely decorative */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background: var(--grain);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.015em;
  color: var(--ink);
  overflow-wrap: break-word;
  text-wrap: balance;
}

p { text-wrap: pretty; }

img, svg { max-width: 100%; height: auto; }

::selection { background: var(--peach); color: var(--ink); }

a {
  color: var(--brand);
  text-underline-offset: .18em;
}

code {
  font-family: var(--font-mono);
  font-size: .88em;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: .1em .4em;
}

/* anchored jumps land below the sticky header */
[id] { scroll-margin-top: 5.5rem; }

/* visible focus everywhere */
:focus-visible {
  outline: 3px solid var(--brand-bright);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 1001;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--brand);
  color: #fff;
  padding: .6rem 1.1rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
}

/* layout */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(1.1rem, 4vw, 2rem);
}
.narrow { max-width: 780px; }

/* --------------------------------------------------------------------------
   Header — sticky, warm translucent
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 244, 234, .9);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  backdrop-filter: blur(10px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  padding: .85rem 0;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -.01em;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: color .15s;
}
.brand:hover { color: var(--brand); }
.site-header nav {
  display: flex;
  gap: .35rem;
  flex-wrap: wrap;
}
.site-header nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 550;
  font-size: .95rem;
  padding: .45rem .85rem;
  border-radius: 999px;
  transition: color .15s, background-color .15s;
}
.site-header nav a:hover {
  color: var(--brand-deep);
  background: var(--card-warm);
}
.site-header nav a[aria-current="page"] {
  color: var(--brand-deep);
  background: var(--card-warm);
  box-shadow: inset 0 0 0 1px var(--line-strong);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  padding: clamp(3.5rem, 4vw + 2.5rem, 6.75rem) 0 clamp(3rem, 3vw + 2rem, 5rem);
  background:
    radial-gradient(50rem 28rem at 88% -18%, rgba(251, 146, 60, .22), transparent 62%),
    radial-gradient(38rem 24rem at -8% 112%, rgba(251, 191, 36, .18), transparent 60%),
    linear-gradient(180deg, var(--card-warm), var(--paper));
  border-bottom: 1px solid var(--line);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brand);
  font-size: 1rem;
  margin: 0 0 1.15rem;
}
.eyebrow::before {
  content: "";
  width: 2.1rem;
  height: 3px;
  border-radius: 2px;
  background: var(--brand-bright);
  flex: none;
}
.hero h1 {
  font-size: var(--fs-hero);
  line-height: 1.04;
  margin: 0 0 1.4rem;
}
.hero h1::after {
  content: "";
  display: block;
  width: clamp(6rem, 14vw, 8.5rem);
  height: .6rem;
  margin-top: 1.1rem;
  background: var(--squiggle) no-repeat left center / contain;
}
.lede {
  font-size: var(--fs-lede);
  line-height: 1.65;
  max-width: 62ch;
  color: var(--ink-soft);
  margin: 0 0 1.4rem;
}
.winner-line {
  font-size: var(--fs-lede);
  max-width: 62ch;
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 5px solid var(--brand-bright);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  box-shadow: var(--shadow-soft);
}
.winner-line strong {
  background: linear-gradient(120deg, rgba(251, 191, 36, .55), rgba(251, 146, 60, .45));
  border-radius: .35em;
  padding: .02em .28em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.hero-cta {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* --------------------------------------------------------------------------
   Buttons — tactile, sticker-press feel
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: .8rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 650;
  line-height: 1.35;
  transition: transform .15s, box-shadow .15s, background-color .15s, color .15s;
}
.btn.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 3px 0 var(--brand-deep), var(--shadow-soft);
}
.btn.primary:hover {
  background: var(--brand-bright);
  transform: translateY(-2px);
  box-shadow: 0 5px 0 var(--brand-deep), var(--shadow-lift);
}
.btn.primary:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 var(--brand-deep);
}
.btn.outline {
  color: var(--ink);
  border: 2px solid var(--ink);
  background: transparent;
}
.btn.outline:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}
.btn.large { padding: 1.05rem 2.1rem; font-size: 1.08rem; border-radius: 14px; }
.btn.small { padding: .5rem 1rem; font-size: .9rem; border-radius: 10px; }
.link {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid rgba(234, 88, 12, .35);
  transition: border-color .15s, color .15s;
}
.link:hover { color: var(--brand-deep); border-bottom-color: var(--brand-deep); }

/* --------------------------------------------------------------------------
   Sections — shared rhythm
   -------------------------------------------------------------------------- */
section { padding: var(--section-pad) 0; }
section h2 {
  font-size: var(--fs-h2);
  margin: 0 0 1.5rem;
}
/* recurring squiggle motif under section headings */
.why-solo h2::after,
.ranking h2::after,
.why-yourpaz h2::after,
.faq h2::after {
  content: "";
  display: block;
  width: 4.75rem;
  height: .52rem;
  margin-top: .65rem;
  background: var(--squiggle) no-repeat left center / contain;
  opacity: .85;
}
section p { max-width: 70ch; }

/* body copy links (prose areas) */
.why-solo a, .faq a { color: var(--brand); }

/* --------------------------------------------------------------------------
   Why-solo — editorial list
   -------------------------------------------------------------------------- */
.why-solo { background: var(--paper); }
.bullets {
  padding-left: 1.4rem;
  margin: var(--flow) 0;
}
.bullets li {
  margin-bottom: .7rem;
  max-width: 65ch;
  padding-left: .25rem;
}
.bullets li::marker { color: var(--brand-bright); font-weight: 700; }

/* --------------------------------------------------------------------------
   Ranking — card stack
   -------------------------------------------------------------------------- */
.ranking {
  background:
    radial-gradient(44rem 26rem at 108% 0%, rgba(251, 191, 36, .1), transparent 60%),
    var(--card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.rank-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 1rem;
}
.rank-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1rem, 2.5vw, 1.6rem);
  align-items: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
  box-shadow: var(--shadow-soft);
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.rank-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-color: var(--line-strong);
}
.rank-num {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ink-soft);
  background: var(--paper-deep);
  border: 1px solid var(--line-strong);
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
}
.rank-item.winner {
  background: linear-gradient(135deg, #fff6e8, var(--card) 70%);
  border: 2px solid var(--peach);
  box-shadow: var(--shadow-lift);
  position: relative;
}
/* sticker starburst on the winner — decorative only */
.rank-item.winner::after {
  content: "";
  position: absolute;
  top: -16px;
  right: 22px;
  width: 46px;
  height: 46px;
  background: var(--starburst) no-repeat center / contain;
  transform: rotate(12deg);
  filter: drop-shadow(0 2px 2px rgba(84, 58, 32, .25));
  pointer-events: none;
}
.rank-item.winner:hover { border-color: var(--brand-bright); }
.rank-item.winner .rank-num {
  background: var(--brand);
  border-color: var(--brand-deep);
  color: #fff;
  transform: rotate(-4deg);
  box-shadow: 0 3px 0 var(--brand-deep);
}
.rank-body h3 {
  margin: 0 0 .55rem;
  font-size: var(--fs-h3);
  line-height: 1.3;
}
.rank-body h3 a {
  color: var(--brand);
  text-decoration: none;
  border-bottom: 2px solid rgba(234, 88, 12, .35);
}
.rank-body h3 a:hover { color: var(--brand-deep); border-bottom-color: var(--brand-deep); }
.h-meta {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: .88em;
  color: var(--ink-mute);
  letter-spacing: 0;
}
.rank-body p {
  margin: .5rem 0;
  color: var(--ink-soft);
  max-width: 68ch;
}
.rank-body p strong { color: var(--ink); }
.rank-body em { color: var(--ink-mute); }
.rank-actions { margin-top: .9rem; }

/* --------------------------------------------------------------------------
   Why YourPAZ — reason grid
   -------------------------------------------------------------------------- */
.why-yourpaz {
  background:
    radial-gradient(40rem 24rem at -6% 8%, rgba(251, 146, 60, .1), transparent 55%),
    var(--paper);
}
.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
  margin-top: 2rem;
}
.reason {
  background: var(--card);
  padding: 1.6rem 1.6rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.reason:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-color: var(--line-strong);
}
.reason-num {
  display: inline-grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--brand-deep);
  background: rgba(234, 88, 12, .12);
  border-radius: 999px;
  padding: .28rem .8rem;
}
.reason h3 {
  margin: .8rem 0 .6rem;
  font-size: 1.22rem;
}
.reason p { margin: 0; color: var(--ink-soft); }
.cta-line { text-align: center; margin: 2.75rem 0 0; }

/* --------------------------------------------------------------------------
   FAQ — details cards
   -------------------------------------------------------------------------- */
.faq { background: var(--card); border-top: 1px solid var(--line); }
.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  margin-bottom: .7rem;
  box-shadow: var(--shadow-soft);
  transition: border-color .15s;
}
.faq details:hover { border-color: var(--line-strong); }
.faq details[open] { border-color: var(--peach); background: var(--card); }
.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.4;
  padding: 1.05rem 3rem 1.05rem 1.25rem;
  position: relative;
  border-radius: var(--radius);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  width: .62rem;
  height: .62rem;
  border-right: 2.5px solid var(--brand);
  border-bottom: 2.5px solid var(--brand);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq details p {
  margin: 0;
  padding: 0 1.25rem 1.2rem;
  color: var(--ink-soft);
  max-width: 100%;
}

/* --------------------------------------------------------------------------
   CTA strip
   -------------------------------------------------------------------------- */
.cta-strip {
  background:
    radial-gradient(42rem 24rem at 15% -30%, rgba(251, 191, 36, .3), transparent 60%),
    radial-gradient(36rem 22rem at 90% 130%, rgba(154, 52, 18, .55), transparent 60%),
    linear-gradient(135deg, var(--brand-deep), var(--brand-bright));
  color: #fff;
  text-align: center;
  padding: clamp(4rem, 5vw + 2.5rem, 6.5rem) 0;
}
.cta-strip h2 {
  color: #fff;
  font-size: var(--fs-h2);
  margin: 0 0 1rem;
}
.cta-strip p {
  color: var(--cream-on-dark);
  font-size: var(--fs-lede);
  max-width: 55ch;
  margin: 0 auto 2rem;
}
.cta-strip .btn.primary {
  background: #fff;
  color: var(--brand-deep);
  box-shadow: 0 3px 0 rgba(0, 0, 0, .28), var(--shadow-lift);
}
.cta-strip .btn.primary:hover {
  background: var(--card-warm);
  color: var(--brand-deep);
  box-shadow: 0 5px 0 rgba(0, 0, 0, .28), var(--shadow-lift);
}
.cta-strip :focus-visible { outline-color: #fff; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--footer-ink);
  color: var(--cream-on-dark);
  padding: clamp(2.25rem, 3vw, 3.25rem) 0;
  font-size: var(--fs-small);
}
.site-footer p { margin: .35rem 0; max-width: none; }
.site-footer a {
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid rgba(251, 191, 36, .4);
}
.site-footer a:hover { border-bottom-color: var(--amber); }
.site-footer :focus-visible { outline-color: var(--amber); }

/* --------------------------------------------------------------------------
   Review / article pages
   -------------------------------------------------------------------------- */
.review-hero {
  background:
    radial-gradient(46rem 26rem at 92% -25%, rgba(251, 146, 60, .22), transparent 62%),
    linear-gradient(180deg, var(--card-warm), var(--paper));
  border-bottom: 1px solid var(--line);
  padding: clamp(3.25rem, 4vw + 2rem, 5.5rem) 0 clamp(2.5rem, 3vw + 1.5rem, 4rem);
}
.review-hero .badge {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: .38rem 1.05rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 650;
  font-family: var(--font-sans);
  letter-spacing: .02em;
  margin-bottom: 1.15rem;
  box-shadow: 0 2px 0 var(--brand-deep);
  transform: rotate(-1.5deg);
}
.review-hero h1 {
  font-size: var(--fs-h1);
  line-height: 1.08;
  margin: 0 0 1.1rem;
  max-width: 24ch;
}
.review-hero .lede { margin-bottom: 0; }
.review-meta {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  color: var(--ink-soft);
}
.review-meta span {
  display: inline-flex;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .32rem .9rem;
  font-size: .88rem;
  font-weight: 550;
  box-shadow: var(--shadow-soft);
}
.review-meta span:first-child {
  background: var(--brand);
  border-color: var(--brand-deep);
  color: #fff;
}

.review-body {
  padding: clamp(2.5rem, 3vw + 1.5rem, 4rem) clamp(1.1rem, 4vw, 2rem) clamp(3rem, 4vw, 5rem);
  max-width: 780px;
  margin: 0 auto;
}
.review-body > p,
.review-body > ul,
.review-body > ol {
  max-width: 70ch;
}
.review-body h2 {
  font-size: clamp(1.45rem, 1.15rem + 1.2vw, 1.95rem);
  margin: 2.75rem 0 1rem;
}
.review-body h2::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: .5rem;
  margin-top: .6rem;
  background: var(--squiggle) no-repeat left center / contain;
  opacity: .8;
}
.review-body h3 {
  font-size: 1.28rem;
  margin: 2rem 0 .6rem;
}
.review-body ul, .review-body ol { padding-left: 1.4rem; }
.review-body li { margin-bottom: .55rem; max-width: 65ch; }
.review-body li::marker { color: var(--brand-bright); }
.review-body a:not(.btn) {
  color: var(--brand);
  text-decoration: none;
  border-bottom: 2px solid rgba(234, 88, 12, .35);
  transition: color .15s, border-color .15s;
}
.review-body a:not(.btn):hover { color: var(--brand-deep); border-bottom-color: var(--brand-deep); }

/* "the numbers" receipt-style callout */
.numbers-callout {
  font-family: var(--font-mono);
  font-size: .95rem;
  line-height: 1.9;
  background: var(--card-warm);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  padding: 1.15rem 1.35rem;
  box-shadow: var(--shadow-soft);
}

.cta-row { margin: 2rem 0; }
.back-row { margin-top: 3rem; }
.back-row a, .review-body > p:last-child a:not(.btn) {
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Tables — never page-wide overflow (site-wide safeguard)
   -------------------------------------------------------------------------- */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  margin: 1.5rem 0;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: .95rem;
}
th, td {
  text-align: left;
  padding: .7rem .9rem;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
th {
  font-family: var(--font-display);
  background: var(--paper-deep);
}
@media (max-width: 760px) {
  /* bare tables scroll in place; wrapped tables scroll via .table-wrap */
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .table-wrap table { display: table; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (min-width: 1100px) {
  .reason-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
  .reason-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .header-inner { gap: .5rem; }
  .site-header nav a { padding: .4rem .6rem; font-size: .9rem; }
  .rank-item { grid-template-columns: auto 1fr; gap: .9rem; }
  .rank-num { width: 2.5rem; height: 2.5rem; font-size: 1.25rem; border-radius: 10px; }
  .rank-item.winner::after { width: 36px; height: 36px; top: -13px; right: 14px; }
  .h-meta { display: block; margin-top: .2rem; }
  .hero-cta .btn { width: 100%; text-align: center; }
  .cta-strip .btn.large { width: 100%; }
  .winner-line { padding: .9rem 1rem; }
}

/* --------------------------------------------------------------------------
   Print — long reviews should read like an article
   -------------------------------------------------------------------------- */
@media print {
  :root { --paper: #fff; }
  body { background: #fff; color: #000; font-size: 11pt; line-height: 1.55; }
  body::after { display: none; }
  .site-header, .site-footer, .hero-cta, .cta-strip, .cta-line,
  .cta-row, .btn, .skip-link { display: none !important; }
  .hero, .review-hero, .ranking, .why-yourpaz, .faq { background: #fff; border: 0; }
  .rank-item, .reason, .faq details, .winner-line, .review-meta span, .numbers-callout {
    box-shadow: none;
    border: 1px solid #bbb;
  }
  .rank-item.winner::after { display: none; }
  .hero h1::after, .review-body h2::after,
  .why-solo h2::after, .ranking h2::after,
  .why-yourpaz h2::after, .faq h2::after { display: none; }
  a { color: #000; text-decoration: underline; }
  .review-body a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .85em; }
  section { padding: 1.25rem 0; }
}
