/* ====================================================================
   Review Racket — global stylesheet
   Hybrid parody review-platform style. Trust-platform shapes, satirical accents.
   ==================================================================== */

:root {
  --rr-ink:    #071714;
  --rr-green:  #00b67a;
  --rr-toxic:  #b6ff3b;
  --rr-yellow: #ffd166;
  --rr-orange: #ff8a3d;
  --rr-red:    #ef4444;
  --rr-cream:  #fffaf0;
  --rr-card:   #ffffff;
  --rr-muted:  #64748b;
  --rr-border: #dbe7df;

  --max: 1180px;
  --measure: 720px;
  --serif: "DM Serif Display", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono:  "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  --shadow-sm: 0 1px 2px rgba(7,23,20,0.06), 0 1px 3px rgba(7,23,20,0.08);
  --shadow-md: 0 4px 14px rgba(7,23,20,0.08), 0 2px 4px rgba(7,23,20,0.06);
  --shadow-pop: 6px 6px 0 var(--rr-toxic);
  --radius: 6px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--rr-ink);
  background: var(--rr-cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--rr-ink); text-decoration: underline; text-decoration-color: var(--rr-green); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--rr-green); text-decoration-color: var(--rr-toxic); }
::selection { background: var(--rr-toxic); color: var(--rr-ink); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--rr-ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 1.6em 0 0.5em;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 4.2rem); margin-top: 0; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; font-family: var(--sans); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
p { margin: 0 0 1em; max-width: var(--measure); }
ul, ol { padding-left: 1.25em; max-width: var(--measure); }
li { margin: 0.35em 0; }
strong { font-weight: 700; }
hr { border: none; border-top: 1px solid var(--rr-border); margin: 3em 0; }
code, kbd { font-family: var(--mono); font-size: 0.9em; background: rgba(0,182,122,0.12); color: var(--rr-ink); padding: 0.05em 0.35em; border-radius: 3px; }

/* ============== Star block (satirical review-platform signal) ============== */

.stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  vertical-align: middle;
  line-height: 1;
}
.stars .s {
  width: 18px; height: 18px;
  display: inline-block;
  background: var(--rr-border);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/></svg>") center/contain no-repeat;
}
.stars .s.on { background: var(--rr-green); }
.stars .s.half {
  background: linear-gradient(90deg, var(--rr-green) 50%, var(--rr-border) 50%);
}
.stars.lg .s { width: 28px; height: 28px; }
.stars.sm .s { width: 14px; height: 14px; }

/* ============== Layout ============== */

.wrap, .container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }

/* ============== Header / Nav ============== */

.site-header {
  background: var(--rr-card);
  color: var(--rr-ink);
  border-bottom: 1px solid var(--rr-border);
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 1px 0 rgba(7,23,20,0.04);
}
.site-header::after {
  content: ""; display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--rr-green) 0%, var(--rr-green) 60%, var(--rr-toxic) 60%, var(--rr-toxic) 80%, var(--rr-yellow) 80%, var(--rr-yellow) 100%);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.85rem; padding-bottom: 0.85rem;
}
.brand {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--rr-ink);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.4rem;
  line-height: 1;
}
.brand .dot { color: var(--rr-green); }
.brand:hover { color: var(--rr-green); text-decoration: none; }

.primary-nav { display: flex; gap: 1.4rem; align-items: center; flex-wrap: wrap; }
.primary-nav a {
  color: var(--rr-ink);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  font-weight: 500;
}
.primary-nav a:hover { color: var(--rr-green); }
.primary-nav a.cta {
  background: var(--rr-green);
  color: #fff;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius);
  font-weight: 600;
}
.primary-nav a.cta:hover { background: var(--rr-ink); color: var(--rr-toxic); }

.nav-toggle { display: none; }

@media (max-width: 820px) {
  .primary-nav { display: none; flex-direction: column; align-items: flex-start; width: 100%; padding-top: 1rem; }
  .primary-nav.open { display: flex; }
  .site-header .wrap { flex-wrap: wrap; }
  .nav-toggle {
    display: inline-flex; background: var(--rr-cream); border: 1px solid var(--rr-border);
    color: var(--rr-ink); padding: 0.45rem 0.7rem; border-radius: var(--radius); cursor: pointer;
    font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.05em;
  }
}

/* ============== Hero ============== */

.hero {
  background: var(--rr-cream);
  color: var(--rr-ink);
  padding: 4rem 0 4.5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rr-border);
}
.hero::before {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(0,182,122,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rr-green);
  background: rgba(0,182,122,0.10);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(0,182,122,0.2);
}
.hero .eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--rr-green);
  box-shadow: 0 0 0 4px rgba(0,182,122,0.18);
}
.hero h1 { color: var(--rr-ink); max-width: 22ch; margin-bottom: 1rem; }
.hero .subhead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  max-width: 60ch;
  color: var(--rr-muted);
  font-family: var(--sans);
}
.hero .cta-row { margin-top: 2rem; display: flex; gap: 0.8rem; flex-wrap: wrap; align-items: center; }
.hero .hero-stars { margin-top: 1.2rem; display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap; }
.hero .hero-stars .label { font-family: var(--mono); font-size: 0.78rem; color: var(--rr-muted); letter-spacing: 0.05em; text-transform: uppercase; }

/* ============== Buttons ============== */

.btn {
  display: inline-block;
  padding: 0.85rem 1.3rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: var(--radius);
  letter-spacing: 0.005em;
  border: 1px solid transparent;
  transition: transform 0.06s ease, box-shadow 0.12s ease, background-color 0.12s ease;
}
.btn-primary { background: var(--rr-green); color: #fff; border-color: var(--rr-green); }
.btn-primary:hover { background: var(--rr-ink); color: var(--rr-toxic); border-color: var(--rr-ink); }
.btn-secondary { background: transparent; color: var(--rr-ink); border-color: var(--rr-ink); }
.btn-secondary:hover { background: var(--rr-ink); color: var(--rr-toxic); }

/* ============== Article body ============== */

.article { padding: 3.5rem 0 5rem; }
.article .lead { font-size: 1.18rem; max-width: var(--measure); color: var(--rr-ink); }
.article h2 { margin-top: 2.4em; }
.article h2::before {
  content: ""; display: block;
  width: 48px; height: 4px;
  background: var(--rr-green);
  margin-bottom: 0.8rem;
  border-radius: 2px;
}
.article h3 { margin-top: 1.8em; }

/* ============== Verdict card (review-platform parody) ============== */

.verdict {
  background: var(--rr-card);
  border: 1px solid var(--rr-border);
  border-radius: var(--radius);
  padding: 1.8rem 1.9rem;
  margin: 2rem 0;
  position: relative;
  max-width: var(--measure);
  box-shadow: var(--shadow-md);
}
.verdict::before {
  content: "★ Quick verdict";
  position: absolute; top: -14px; left: 1.4rem;
  background: var(--rr-green); color: #fff;
  font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.7rem; border-radius: 999px;
  font-weight: 600;
}
.verdict h3 { display: none; }
.verdict dl { display: grid; grid-template-columns: max-content 1fr; gap: 0.6rem 1.4rem; margin: 0; }
.verdict dt {
  font-family: var(--mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--rr-muted);
  font-weight: 600;
  padding-top: 0.18rem;
}
.verdict dd { margin: 0; color: var(--rr-ink); }
.verdict .score {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(0,182,122,0.10);
  color: var(--rr-ink);
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-family: var(--mono);
  border: 1px solid rgba(0,182,122,0.25);
}

/* ============== Scorecard (review breakdown look) ============== */

.scorecard {
  background: var(--rr-card);
  color: var(--rr-ink);
  padding: 2rem;
  margin: 2.5rem 0;
  max-width: var(--measure);
  border: 1px solid var(--rr-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.scorecard::before {
  content: "Racket Score";
  position: absolute; top: -14px; left: 1.4rem;
  background: var(--rr-ink); color: var(--rr-toxic);
  font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.7rem; border-radius: 999px;
}
.scorecard h2 { color: var(--rr-ink); margin-top: 0; font-size: 1.4rem; }
.scorecard h2::before { background: var(--rr-green); }
.scorecard ul { list-style: none; padding: 0; margin: 1rem 0 0; max-width: none; }
.scorecard li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rr-border);
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--rr-ink);
}
.scorecard li.total {
  border-bottom: none;
  margin-top: 0.5rem;
  padding-top: 1.2rem;
  border-top: 2px solid var(--rr-green);
  font-size: 1.2rem;
  color: var(--rr-ink);
  font-weight: 700;
  font-family: var(--serif);
}
.scorecard .num {
  font-weight: 700;
  color: var(--rr-green);
  font-family: var(--mono);
  background: rgba(0,182,122,0.10);
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.85rem;
}
.scorecard li.total .num {
  background: var(--rr-green);
  color: #fff;
  font-size: 1rem;
  padding: 0.3rem 0.75rem;
}

/* ============== Card grid (review-platform-card feel) ============== */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 3rem;
}
.card {
  background: var(--rr-card);
  border: 1px solid var(--rr-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-decoration: none;
  color: var(--rr-ink);
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 0.12s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  box-shadow: var(--shadow-sm);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-pop);
  border-color: var(--rr-green);
  color: var(--rr-ink);
  text-decoration: none;
}
.card h3 { margin: 0.4rem 0 0.5rem; font-size: 1.3rem; padding-right: 60px; }
.card p { margin: 0; color: var(--rr-muted); font-size: 0.95rem; }
.card .score-badge {
  position: absolute; top: 1.1rem; right: 1.1rem;
  background: var(--rr-green); color: #fff;
  font-family: var(--mono); font-weight: 700;
  min-width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0,182,122,0.35);
}
.card .read-more {
  margin-top: 1.1rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rr-green);
  font-weight: 600;
}
.card .stars { margin-bottom: 0.2rem; }
.card:hover .read-more { color: var(--rr-ink); }

/* ============== FAQ ============== */

.faq { margin: 2.5rem 0; max-width: var(--measure); }
.faq details {
  border: 1px solid var(--rr-border);
  border-radius: var(--radius);
  background: var(--rr-card);
  margin-bottom: 0.6rem;
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s ease;
}
.faq details[open] { border-color: var(--rr-green); }
.faq summary {
  font-family: var(--serif);
  font-size: 1.18rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
  color: var(--rr-ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 0; top: -2px;
  font-family: var(--mono); font-size: 1.5rem;
  color: var(--rr-green);
  font-weight: 600;
  line-height: 1;
}
.faq details[open] summary::after { content: "−"; color: var(--rr-orange); }
.faq .answer { padding-top: 0.7rem; color: var(--rr-ink); }
.faq .answer p:last-child { margin-bottom: 0; }
.faq .answer p { color: var(--rr-ink); }

/* ============== Pull quote (editorial callout) ============== */

.pullquote {
  margin: 3em 0;
  padding: 1.5em 1.8em;
  background: var(--rr-card);
  border: 1px solid var(--rr-border);
  border-left: 6px solid var(--rr-green);
  border-radius: var(--radius);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.3;
  max-width: var(--measure);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.pullquote::before {
  content: "“";
  position: absolute; top: -14px; left: 14px;
  font-family: var(--serif);
  font-size: 4rem; line-height: 1;
  color: var(--rr-green);
  background: var(--