/* PaddleReviewHub — Design System */
:root {
  --navy: #0A1628;
  --navy-soft: #1a2a44;
  --teal: #2DD4BF;
  --teal-dark: #14b8a6;
  --teal-ink: #0d9488;
  --pink: #EC4899;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F5F7FA;
  --gray-200: #E5E9F0;
  --gray-300: #CBD5E1;
  --gray-500: #64748B;
  --gray-700: #334155;
  --text: #0A1628;
  --text-muted: #64748B;
  --green: #10B981;
  --yellow: #F59E0B;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(10,22,40,0.04), 0 1px 3px rgba(10,22,40,0.04);
  --shadow: 0 4px 14px rgba(10,22,40,0.06), 0 1px 3px rgba(10,22,40,0.04);
  --shadow-lg: 0 12px 32px rgba(10,22,40,0.10), 0 2px 6px rgba(10,22,40,0.04);
  --shadow-teal: 0 8px 24px rgba(45,212,191,0.28);

  --max-w: 1180px;
  --max-w-narrow: 760px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--teal-ink); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(32px, 4.2vw, 52px); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(24px, 2.6vw, 34px); font-weight: 800; }
h3 { font-size: 20px; font-weight: 700; }
h4 { font-size: 16px; font-weight: 700; }
p { text-wrap: pretty; }

/* Layout helpers */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--max-w-narrow); margin: 0 auto; padding: 0 24px; }
.stack { display: flex; flex-direction: column; }
.row { display: flex; align-items: center; }

/* === HEADER === */
.prh-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--gray-200);
}
.prh-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.prh-logo { display: flex; align-items: center; gap: 10px; text-decoration: none !important; }
.prh-logo img { height: 40px; width: auto; display: block; }
.prh-logo-text { display: flex; flex-direction: column; line-height: 1; }
.prh-logo-text b { color: var(--teal-dark); font-weight: 800; letter-spacing: -0.02em; font-size: 16px; }
.prh-logo-text span { color: var(--pink); font-weight: 600; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }

.prh-nav { display: flex; gap: 6px; align-items: center; }
.prh-nav a {
  color: var(--navy);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: background 0.15s, color 0.15s;
}
.prh-nav a:hover { background: var(--gray-100); color: var(--teal-ink); }
.prh-nav a.active { color: var(--teal-ink); background: rgba(45,212,191,0.1); }

.prh-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--navy);
  color: white !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
}
.prh-header-cta:hover { background: var(--navy-soft); }

.prh-hamburger { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; color: var(--navy); }

@media (max-width: 900px) {
  .prh-nav, .prh-header-cta { display: none; }
  .prh-hamburger { display: inline-flex; }
  .prh-mobile-menu { display: block; }
}

.prh-mobile-menu {
  display: none;
  position: fixed; top: 65px; left: 0; right: 0;
  background: white; border-bottom: 1px solid var(--gray-200);
  padding: 12px 24px 24px;
  z-index: 99;
  animation: slideDown .15s ease-out;
}
.prh-mobile-menu a { display: block; padding: 12px 8px; color: var(--navy); font-weight: 500; border-bottom: 1px solid var(--gray-100); }
.prh-mobile-menu a:last-child { border-bottom: 0; }
@keyframes slideDown { from { transform: translateY(-8px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  transition: transform 0.1s, background 0.15s, box-shadow 0.15s;
  text-decoration: none !important;
  font-family: inherit;
  letter-spacing: -0.01em;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--teal);
  color: var(--navy);
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover { background: var(--teal-dark); color: white; }
.btn-dark {
  background: var(--navy);
  color: white;
}
.btn-dark:hover { background: var(--navy-soft); }
.btn-ghost {
  background: white;
  color: var(--navy);
  border: 1.5px solid var(--gray-200);
}
.btn-ghost:hover { border-color: var(--navy); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 28px; font-size: 17px; }

/* === SCORE BADGE === */
.score-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--navy);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 6px 18px rgba(45,212,191,0.35);
  text-align: center;
  line-height: 1;
  padding: 0;
}
.score-badge .score-num { font-size: 22px; line-height: 1; letter-spacing: -0.04em; }
.score-badge .score-of  { font-size: 9px; opacity: 0.75; margin-top: 3px; letter-spacing: 0.08em; font-weight: 700; }
.score-badge.tier-green { background: var(--green); color: white; box-shadow: 0 6px 18px rgba(16,185,129,0.28); }
.score-badge.tier-yellow { background: var(--yellow); color: white; box-shadow: 0 6px 18px rgba(245,158,11,0.28); }

.score-badge-lg { width: 112px; height: 112px; }
.score-badge-lg .score-num { font-size: 38px; }
.score-badge-lg .score-of  { font-size: 10px; margin-top: 4px; }

.score-badge-sm { width: 58px; height: 58px; padding: 4px; }
.score-badge-sm .score-num { font-size: 16px; line-height: 1; }
.score-badge-sm .score-of  { font-size: 7px; margin-top: 2px; letter-spacing: 0.06em; }

/* === CARDS === */
.card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.card:hover { border-color: var(--gray-300); box-shadow: var(--shadow); }

/* Paddle Card */
.paddle-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  text-decoration: none !important;
  color: inherit !important;
}
.paddle-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}
.paddle-card-imgbox {
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.paddle-card-imgbox img { max-width: 100%; max-height: 100%; object-fit: contain; }
.paddle-card-imgbox .score-badge {
  position: absolute; top: 12px; right: 12px;
}
.paddle-card-brand {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}
.paddle-card-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.paddle-card-tag {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.4;
}
.paddle-card-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}
.paddle-card-price { font-weight: 800; color: var(--navy); font-size: 18px; font-variant-numeric: tabular-nums; }
.paddle-card-price s { color: var(--text-muted); font-weight: 500; margin-right: 4px; font-size: 13px; }
.paddle-card-link { color: var(--teal-ink); font-weight: 600; font-size: 14px; }

/* === QUICK ANSWER BOX === */
.quick-answer {
  border-left: 4px solid var(--teal);
  background: linear-gradient(90deg, rgba(45,212,191,0.08), rgba(45,212,191,0.00));
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0 32px;
}
.quick-answer-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-ink);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 6px;
}
.quick-answer p { margin: 0; font-size: 17px; line-height: 1.55; color: var(--navy); }

/* === PROMO BOX === */
.promo-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: var(--navy);
  color: white;
  border-radius: var(--radius);
  margin: 20px 0;
  flex-wrap: wrap;
}
.promo-box .promo-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); font-weight: 700; }
.promo-box .promo-code {
  font-family: 'JetBrains Mono', 'SF Mono', ui-monospace, monospace;
  font-size: 24px; font-weight: 800; letter-spacing: 0.08em;
  color: white;
}
.promo-box .promo-discount { font-size: 13px; color: rgba(255,255,255,0.7); }
.promo-box button {
  border: 0; background: var(--teal); color: var(--navy);
  font-weight: 700; padding: 10px 16px; border-radius: 8px;
  cursor: pointer; font-family: inherit; font-size: 14px;
  transition: background 0.15s;
}
.promo-box button:hover { background: white; }

/* === SPECS TABLE === */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 15px;
}
.specs-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-200);
}
.specs-table tr:nth-child(odd) td { background: var(--gray-50); }
.specs-table td:first-child { color: var(--text-muted); font-weight: 500; width: 40%; }
.specs-table td:last-child { color: var(--navy); font-weight: 600; }
.specs-table tr.highlight td { background: rgba(45,212,191,0.08); }
.specs-table tr.highlight td { font-weight: 700; color: var(--navy); }

/* === PERFORMANCE BARS === */
.perf-row {
  display: grid;
  grid-template-columns: 140px 1fr 48px;
  gap: 16px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}
.perf-row:last-child { border-bottom: 0; }
.perf-row .perf-name { font-weight: 500; color: var(--text-muted); font-size: 14px; letter-spacing: 0.02em; }
.perf-row .perf-bar {
  height: 10px; background: var(--gray-100); border-radius: 999px; overflow: hidden; position: relative;
}
.perf-row .perf-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  border-radius: 999px;
  transition: width 1s cubic-bezier(.2,.8,.2,1);
}
.perf-row .perf-num {
  font-weight: 800; color: var(--navy); font-variant-numeric: tabular-nums; text-align: right; font-size: 15px;
}

/* === PROS/CONS === */
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 20px 0; }
.proscons-col {
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.proscons-col.pros { background: rgba(16,185,129,0.04); border-color: rgba(16,185,129,0.25); }
.proscons-col.cons { background: rgba(236,72,153,0.04); border-color: rgba(236,72,153,0.2); }
.proscons-col h4 {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 12px;
  display: flex; align-items: center; gap: 6px;
}
.proscons-col.pros h4 { color: var(--green); }
.proscons-col.cons h4 { color: var(--pink); }
.proscons-col ul { list-style: none; padding: 0; margin: 0; }
.proscons-col li { padding: 6px 0 6px 24px; position: relative; font-size: 15px; color: var(--navy); }
.proscons-col.pros li::before { content: "✓"; position: absolute; left: 4px; color: var(--green); font-weight: 900; }
.proscons-col.cons li::before { content: "–"; position: absolute; left: 4px; color: var(--pink); font-weight: 900; }

@media (max-width: 640px) {
  .proscons { grid-template-columns: 1fr; }
}

/* === SECTIONS === */
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-lg { padding: 96px 0; }
.section-kicker {
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--teal-ink); margin-bottom: 12px;
}
.section-head { margin-bottom: 36px; }
.section-head h2 + p { color: var(--text-muted); font-size: 18px; margin-top: 10px; max-width: 620px; }

/* === REVIEW PAGE === */
.review-hero {
  padding: 40px 0 24px;
  border-bottom: 1px solid var(--gray-200);
}
.review-brand {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 600; margin-bottom: 10px;
}
.review-title { font-size: clamp(30px, 4vw, 48px); }
.review-meta {
  display: flex; gap: 20px; flex-wrap: wrap; margin-top: 14px;
  color: var(--text-muted); font-size: 14px;
}
.review-meta span b { color: var(--navy); }

.review-body { display: grid; grid-template-columns: 1fr 340px; gap: 48px; padding: 40px 0; }
.review-body .review-main { min-width: 0; }
.review-body .review-side { }

.review-stickycard {
  position: sticky; top: 88px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.review-stickycard .sticky-img {
  background: var(--gray-100);
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  margin-bottom: 16px;
}
.review-stickycard .sticky-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.review-stickycard .sticky-score {
  display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
}
.review-stickycard .sticky-score-text b { font-size: 18px; color: var(--navy); }
.review-stickycard .sticky-score-text div { color: var(--text-muted); font-size: 13px; }
.review-stickycard .sticky-price { margin-bottom: 16px; }
.review-stickycard .sticky-price b { font-size: 30px; color: var(--navy); letter-spacing: -0.02em; }
.review-stickycard .sticky-price s { color: var(--text-muted); font-weight: 500; margin-left: 6px; font-size: 15px; }
.review-stickycard .sticky-price div { color: var(--text-muted); font-size: 13px; margin-top: 2px; }

.review-section { padding: 32px 0; border-bottom: 1px solid var(--gray-100); }
.review-section:last-child { border-bottom: 0; }
.review-section h2 { margin-bottom: 16px; }
.review-section p { margin: 12px 0; color: var(--navy); }

@media (max-width: 900px) {
  .review-body { grid-template-columns: 1fr; }
  .review-stickycard { position: static; }
}

/* === HERO === */
.hero {
  padding: 72px 0 64px;
  background:
    radial-gradient(80% 80% at 85% 20%, rgba(45,212,191,0.12), transparent 60%),
    radial-gradient(60% 60% at 10% 90%, rgba(236,72,153,0.08), transparent 60%),
    var(--white);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(45,212,191,0.12);
  border: 1px solid rgba(45,212,191,0.3);
  border-radius: 999px;
  color: var(--teal-ink);
  font-size: 13px; font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 { line-height: 1.05; font-size: clamp(38px, 5.4vw, 68px); }
.hero h1 em { font-style: normal; color: var(--teal-dark); }
.hero .hero-sub {
  font-size: 19px; color: var(--text-muted); max-width: 520px;
  margin-top: 18px; line-height: 1.5;
}
.hero-ctas { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--gray-200);
}
.hero-stats div b { display: block; font-size: 28px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.hero-stats div span { font-size: 13px; color: var(--text-muted); }

.hero-featured {
  background: var(--navy);
  color: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.hero-featured::before {
  content: "";
  position: absolute; inset: -40% -20% auto auto; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(45,212,191,0.25), transparent 60%);
  pointer-events: none;
}
.hero-featured-eyebrow {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal);
  font-weight: 700; margin-bottom: 8px;
}
.hero-featured-title {
  font-size: 26px; font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 6px; color: white;
}
.hero-featured-tag { color: rgba(255,255,255,0.72); font-size: 15px; margin-bottom: 20px; }
.hero-featured-body {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 20px; align-items: center;
}
.hero-featured-img {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 16px;
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
}
.hero-featured-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.hero-featured-details { display: flex; flex-direction: column; gap: 14px; }
.hero-featured-row {
  display: flex; justify-content: space-between; align-items: center; font-size: 14px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-featured-row span { color: rgba(255,255,255,0.6); }
.hero-featured-row b { color: white; font-weight: 700; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero-featured-body { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
}

/* === CATEGORY TILES === */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cat-tile {
  padding: 28px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  min-height: 180px;
  position: relative;
  overflow: hidden;
  transition: transform .15s, box-shadow .15s, border-color .15s;
  text-decoration: none !important;
  color: inherit !important;
}
.cat-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.cat-tile .cat-label {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal-ink); font-weight: 700; margin-bottom: 8px;
}
.cat-tile .cat-title {
  font-size: 21px; font-weight: 800; color: var(--navy);
  letter-spacing: -0.02em; line-height: 1.2;
}
.cat-tile .cat-winner {
  margin-top: auto;
  padding-top: 16px;
  font-size: 14px; color: var(--text-muted);
}
.cat-tile .cat-winner b { color: var(--navy); }
.cat-tile .cat-arrow {
  position: absolute; top: 24px; right: 24px; color: var(--teal-ink);
  transition: transform .15s;
}
.cat-tile:hover .cat-arrow { transform: translateX(4px); }

@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cat-grid { grid-template-columns: 1fr; } }

/* === TOP 3 SHOWCASE === */
.top3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .top3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .top3 { grid-template-columns: 1fr; } }

.rank-pill {
  position: absolute; top: 12px; left: 12px;
  background: var(--navy); color: white;
  padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
}
.rank-pill.gold { background: linear-gradient(135deg, #F59E0B, #D97706); }
.rank-pill.silver { background: linear-gradient(135deg, #94A3B8, #64748B); }
.rank-pill.bronze { background: linear-gradient(135deg, #B45309, #92400E); }

/* === NEWSLETTER === */
.newsletter {
  background: linear-gradient(135deg, var(--navy), #0f1f3d);
  color: white;
  padding: 48px;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: "";
  position: absolute; inset: auto -30% -50% auto; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(45,212,191,0.25), transparent 55%);
}
.newsletter h2 { color: white; font-size: 28px; }
.newsletter p { color: rgba(255,255,255,0.72); margin-top: 10px; }
.newsletter form {
  display: flex; gap: 8px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 6px;
  position: relative; z-index: 1;
}
.newsletter input {
  flex: 1; background: transparent; border: 0; outline: 0;
  color: white; padding: 10px 14px; font-size: 15px; font-family: inherit;
}
.newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter button {
  border: 0; background: var(--teal); color: var(--navy);
  font-weight: 700; padding: 10px 18px; border-radius: 8px;
  cursor: pointer; font-family: inherit; font-size: 14px;
  transition: background 0.15s;
}
.newsletter button:hover { background: white; }
.newsletter small { color: rgba(255,255,255,0.5); font-size: 12px; display: block; margin-top: 10px; }

@media (max-width: 760px) { .newsletter { grid-template-columns: 1fr; padding: 32px; } }

/* === FOOTER === */
.prh-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 28px;
  margin-top: 80px;
  font-size: 14px;
}
.prh-footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.prh-footer h5 { color: white; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; margin: 0 0 14px; font-weight: 700; }
.prh-footer a { color: rgba(255,255,255,0.65); display: block; padding: 4px 0; text-decoration: none; }
.prh-footer a:hover { color: var(--teal); }
.prh-footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.prh-footer-brand img { height: 40px; filter: brightness(0) invert(1); opacity: 0.9; }
.prh-footer-brand-text b { color: white; font-size: 15px; display: block; }
.prh-footer-brand-text span { color: var(--teal); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.prh-footer-about { max-width: 340px; line-height: 1.5; margin-bottom: 18px; }
.prh-social { display: flex; gap: 10px; }
.prh-social a {
  width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06); transition: background 0.15s;
}
.prh-social a:hover { background: var(--teal); color: var(--navy); }

.prh-footer-bottom {
  display: flex; justify-content: space-between; align-items: center; padding-top: 24px;
  color: rgba(255,255,255,0.5); font-size: 13px; flex-wrap: wrap; gap: 12px;
}
.prh-footer-disclosure {
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--teal);
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-size: 13px; color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

@media (max-width: 760px) { .prh-footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .prh-footer-top { grid-template-columns: 1fr; } }

/* === UTIL === */
.deals-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 15px;
}
.deals-table th {
  background: var(--gray-100); text-align: left; padding: 14px 20px;
  font-weight: 700; color: var(--navy); font-size: 13px; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.deals-table td {
  padding: 16px 20px; border-top: 1px solid var(--gray-200);
  vertical-align: middle;
}
.deals-table td code {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  background: var(--gray-100); padding: 4px 10px; border-radius: 6px;
  font-weight: 700; color: var(--navy); letter-spacing: 0.04em;
}
.deals-table tr:hover td { background: var(--gray-50); }

.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
  background: var(--gray-100); color: var(--navy);
}
.pill.teal { background: rgba(45,212,191,0.14); color: var(--teal-ink); }
.pill.pink { background: rgba(236,72,153,0.12); color: var(--pink); }
.pill.navy { background: var(--navy); color: white; }

.anchor-nav {
  position: sticky; top: 72px; z-index: 5;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  padding: 10px 0; margin-bottom: 20px;
  overflow-x: auto;
}
.anchor-nav-inner {
  display: flex; gap: 6px; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  white-space: nowrap;
}
.anchor-nav a {
  font-size: 13px; padding: 6px 12px; border-radius: 999px;
  color: var(--text-muted); font-weight: 500;
}
.anchor-nav a:hover { background: var(--gray-100); color: var(--navy); text-decoration: none; }

.disclosure-small {
  font-size: 12px; color: var(--text-muted); font-style: italic; margin-top: 8px; text-align: center;
}

.placeholder {
  display: flex; align-items: center; justify-content: center;
  background:
    repeating-linear-gradient(
      -45deg,
      var(--gray-100) 0,
      var(--gray-100) 8px,
      var(--gray-50) 8px,
      var(--gray-50) 16px
    );
  border: 1px dashed var(--gray-300);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  padding: 20px;
  text-align: center;
}

/* --- toast (copy feedback) --- */
.toast {
  position: fixed; bottom: 24px; left: 50%;
  background: var(--navy); color: white;
  padding: 12px 20px; border-radius: 10px;
  font-size: 14px; font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  opacity: 0; pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity .2s, transform .2s;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
