/* CrappyRV brand theme — charcoal #2B2B2B / gray #A9A9A9 / blue #00B0E6. Headings Oswald, body Montserrat. See /BRAND.md */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Oswald:wght@400;500;600;700&family=Caveat+Brush&display=swap');

:root {
  --bg: #ffffff;            /* page white */
  --bg-alt: #f3f4f6;        /* light gray alt sections */
  --surface: #ffffff;       /* white cards */
  --ink: #2b2b2b;           /* brand charcoal */
  --ink-soft: #565656;      /* gray body text */
  --ink-muted: #8a8a8a;     /* muted gray */
  --accent: #00b0e6;        /* brand blue */
  --accent-soft: #e6f7fd;   /* pale blue tint */
  --accent-hot: #e23b3b;    /* red — genuine warnings only */
  --accent-deep: #0089b3;   /* darker blue — hover / emphasis */
  --line: #e4e6e9;          /* cool gray divider */
  /* dark brand band — header / hero / footer */
  --band: #2b2b2b;
  --band-ink: #ffffff;
  --band-soft: #a9a9a9;
  --band-line: #3d3d3d;
  --font-brush: "Caveat Brush", cursive;
  --maxw: 1100px;
  --radius: 8px;
  --shadow: 0 4px 18px rgba(20,20,20,0.07);
  --shadow-lg: 0 12px 32px rgba(20,20,20,0.12);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .ui {
  font-family: "Oswald", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.04; margin: 0 0 1rem; text-transform: uppercase; letter-spacing: 0.01em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.12; margin: 2.5rem 0 1rem; text-transform: uppercase; letter-spacing: 0.01em; }
/* keep long-form article subheads readable (not shouty all-caps) */
article h2, .prose h2 { text-transform: none; letter-spacing: 0; }
h3 { font-size: 1.25rem; margin: 1.75rem 0 0.5rem; }

a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(0,176,230,0.25); }
a:hover { color: #33c3ef; border-bottom-color: var(--accent); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header / nav */
.site-header {
  border-bottom: 1px solid var(--band-line);
  background: var(--band);
  position: sticky; top: 0; z-index: 50;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 1.25rem;
  max-width: var(--maxw); margin: 0 auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--ink);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.brand img {
  height: 38px; width: auto; display: block;
}
.brand .dot { color: var(--accent); }
.tagline {
  display: inline-block; margin-left: 0.75rem;
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 600; font-size: 0.85rem;
  color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em;
}
@media (max-width: 720px) { .tagline { display: none; } }
.nav-links {
  display: flex; gap: 1.25rem; align-items: center;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.95rem;
}
.nav-links a {
  color: var(--band-soft);
  border: none;
  font-weight: 600;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--accent);
}
.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--band-line); color: var(--band-ink);
  padding: 0.4rem 0.7rem; border-radius: 4px; cursor: pointer;
}

@media (max-width: 720px) {
  .brand img { width: auto; height: 34px; max-width: calc(100vw - 132px); }
  .nav-toggle {
    display: inline-flex; align-items: center; gap: 0.4rem; flex-shrink: 0;
    background: var(--accent); color: #06232c; border-color: var(--accent);
    font-weight: 700;
  }
  .nav-toggle::before { content: "\2630"; font-size: 1.05rem; line-height: 1; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; padding: 0.25rem 1.25rem 0.75rem;
    background: var(--band); border-bottom: 1px solid var(--band-line);
    align-items: stretch; gap: 0; box-shadow: 0 10px 18px rgba(0,0,0,0.3);
  }
  .nav-links a { padding: 0.85rem 0; border-bottom: 1px solid var(--band-line); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links.open { display: flex; }
}

/* Hero — dark brand band */
.hero {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--band-line);
  background:
    radial-gradient(circle at 18% 0%, rgba(0,176,230,0.16), transparent 55%),
    var(--band);
}
.hero h1 { color: var(--band-ink); }
.hero p.lede, .hero p { color: var(--band-soft); }
.hero .eyebrow {
  font-family: "Oswald", system-ui, sans-serif;
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.8rem;
  color: var(--accent); font-weight: 700; margin-bottom: 0.75rem;
}
/* ghost buttons sit on the dark hero — make them light */
.hero .btn-ghost, .post-hero .btn-ghost, .hero-illustrated .btn-ghost {
  color: var(--band-ink); border-color: rgba(255,255,255,0.35);
}
.hero .btn-ghost:hover, .post-hero .btn-ghost:hover, .hero-illustrated .btn-ghost:hover {
  background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.6);
}
.hero p.lede {
  font-size: 1.25rem; color: var(--ink-soft); max-width: 720px;
}
.hero .cta-row {
  margin-top: 2rem; display: flex; gap: 0.75rem; flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent); color: #06232c; border-color: var(--accent);
}
.btn-primary:hover { background: #33c3ef; }
.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }

/* Sections */
section { padding: 3rem 0; }
section.alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-eyebrow {
  font-family: "Oswald", system-ui, sans-serif;
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.75rem;
  color: var(--accent); font-weight: 700;
}

/* Cards / grids */
.grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 1.5rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.card h3 { margin-top: 0; }
.card .meta { color: var(--ink-muted); font-size: 0.9rem; }

/* Pull quote */
.pullquote {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: rgba(0,176,230,0.06);
  font-size: 1.2rem;
  color: var(--ink);
}

/* Stats row */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem;
  margin-top: 2rem;
}
.stat {
  background: var(--surface); border: 1px solid var(--line); padding: 1.25rem; border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.stat .num {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 2rem; font-weight: 800; color: var(--accent);
}
.stat .label { color: var(--ink-soft); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; }

/* Video embeds */
.video-wrap {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border-radius: var(--radius); background: #000; border: 1px solid var(--line);
}
.video-wrap iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0;
}

/* Email signup */
.signup {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 2rem 0;
}
.signup h2 { margin-top: 0; }
.signup form {
  display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1rem;
}
.signup input[type=email] {
  flex: 1; min-width: 220px;
  padding: 0.75rem 1rem;
  font-size: 1rem; font-family: inherit;
  background: #fff; color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius);
}
.signup small { color: var(--ink-muted); }

/* Footer */
.site-footer {
  background: #2b2b2b;
  border-top: 3px solid var(--accent);
  padding: 2.5rem 0 1.5rem;
  margin-top: 4rem;
  color: #a9a9a9;
  font-size: 0.92rem;
}
.site-footer h4 { color: var(--accent); }
.site-footer p.muted { color: #9a9a9a; }
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem;
}
.footer-grid h4 {
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--accent); margin: 0 0 0.75rem;
}
.footer-grid a { color: var(--band-soft); border: none; display: block; padding: 0.2rem 0; }
.footer-grid a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid var(--band-line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  color: #8a8a8a; font-size: 0.85rem;
}

/* (internal note removed) */
.draft-banner {
  background: var(--accent-hot);
  color: white;
  text-align: center;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem;
  letter-spacing: 0.05em;
}

/* Utility */
.muted { color: var(--ink-muted); }
.center { text-align: center; }
.divider { height: 1px; background: var(--line); margin: 3rem 0; }
ul.clean { list-style: none; padding: 0; }
ul.clean li { padding: 0.5rem 0; border-bottom: 1px solid var(--line); }
ul.clean li:last-child { border-bottom: none; }

/* =========================================================
   Article / blog-post styles
   ========================================================= */

.post-hero {
  padding: 3rem 0 1.5rem;
  border-bottom: 1px solid var(--band-line);
  background:
    radial-gradient(circle at 15% 10%, rgba(0,176,230,0.16), transparent 55%),
    var(--band);
}
.post-hero .post-eyebrow {
  font-family: "Oswald", system-ui, sans-serif;
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.78rem;
  color: var(--accent); font-weight: 700; margin-bottom: 0.75rem;
}
.post-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  max-width: 920px;
  color: var(--band-ink);
}
.post-hero .post-deck {
  font-size: 1.2rem;
  color: var(--band-soft);
  max-width: 760px;
  margin: 1rem 0 1.5rem;
}
.post-hero .post-meta { color: var(--band-soft); border-top-color: var(--band-line); }
.post-hero .post-meta strong { color: #cfcfcf; }
.post-hero a { color: #6fd6f5; }
.post-meta {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.88rem;
  color: var(--ink-muted);
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 1rem; margin-top: 1.5rem;
}
.post-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.post-meta strong { color: var(--ink-soft); font-weight: 600; }

article.post {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;
  font-size: 1.08rem;
  line-height: 1.7;
}
article.post > p:first-of-type::first-letter {
  font-family: "Oswald", system-ui, sans-serif;
  float: left;
  font-size: 4rem;
  line-height: 0.9;
  padding: 0.3rem 0.6rem 0 0;
  color: var(--accent);
  font-weight: 900;
}
article.post h2 {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  margin-top: 3rem;
}
article.post h2:first-of-type { border-top: none; padding-top: 0; margin-top: 2.5rem; }
article.post h3 {
  color: var(--accent);
  margin-top: 2rem;
}
article.post p, article.post li { color: var(--ink); }
article.post ul, article.post ol { padding-left: 1.5rem; margin: 1rem 0 1.5rem; }
article.post li { margin: 0.5rem 0; }
article.post a {
  border-bottom: 1px solid rgba(0,176,230,0.4);
}
article.post a:hover { border-bottom-color: var(--accent); }

.post-figure {
  margin: 2.5rem 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.post-figure img {
  display: block;
  width: 100%;
  height: auto;
  background: linear-gradient(135deg, #2b2b2b 0%, #1c2128 100%);
  min-height: 280px;
}
.post-figure figcaption {
  padding: 0.85rem 1.25rem;
  font-size: 0.92rem;
  color: var(--ink-muted);
  border-top: 1px solid var(--line);
  font-style: italic;
}

.callout {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.callout.warning { border-left-color: var(--accent-hot); background: rgba(226,62,62,0.06); }
.callout h4 {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.callout.warning h4 { color: var(--accent-hot); }

.tldr {
  background: rgba(0,176,230,0.07);
  border: 1px solid rgba(0,176,230,0.3);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0 2.5rem;
}
.tldr h4 {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-family: "Oswald", system-ui, sans-serif;
}
.tldr p { margin: 0; color: var(--ink-soft); }

.share-row {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin: 2.5rem 0;
  padding: 1.5rem;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  align-items: center;
}
.share-row .share-label {
  font-family: "Oswald", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
}
.share-row a {
  border: none;
  background: var(--surface);
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.share-row a:hover { background: var(--accent); color: #1a1a1a; }

.related-posts {
  margin: 3rem 0 1rem;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.related-posts h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin: 0 0 1.25rem;
}
.related-posts ul { list-style: none; padding: 0; margin: 0; }
.related-posts li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
}
.related-posts li:last-child { border-bottom: none; }
.related-posts a {
  border: none;
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 600;
  color: var(--ink);
}
.related-posts a:hover { color: var(--accent); }

.byline-strip {
  display: flex; gap: 1rem; align-items: center;
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.byline-strip .byline-text {
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.byline-strip strong { color: var(--ink); }

/* Blog index card variant */
.post-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex; flex-direction: column;
  transition: border-color 0.15s ease;
}
.post-card:hover { border-color: var(--accent); }
.post-card .post-card-cat {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.post-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}
.post-card h3 a { color: var(--ink); border: none; }
.post-card h3 a:hover { color: var(--accent); }
.post-card .post-card-dek {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0;
  flex: 1;
}
.post-card .post-card-readmore {
  display: inline-block;
  margin-top: 1rem;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  border: none;
}

.category-strip {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin: 2rem 0 1rem;
}
.category-chip {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.category-chip:hover, .category-chip.active {
  border-color: var(--accent);
  color: var(--accent);
}

/* (internal note removed) */

/* ---- Hero with illustration ---- */
.hero-illustrated {
  padding: 3.5rem 0 0;
  border-bottom: 1px solid var(--band-line);
  background:
    radial-gradient(circle at 12% 0%, rgba(0,176,230,0.22), transparent 52%),
    radial-gradient(circle at 92% 80%, rgba(0,176,230,0.10), transparent 55%),
    var(--band);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding-bottom: 0;
}
.hero-copy h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); line-height: 1.05; color: var(--band-ink); }
.hero-copy h1 em { color: var(--accent); font-style: normal; }
.hero-copy .eyebrow { color: var(--accent) !important; }
.hero-copy .lede {
  font-size: 1.2rem;
  color: var(--band-soft);
  max-width: 540px;
}
.hero-art {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-art img {
  width: 100%;
  max-width: 620px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(20,20,20,0.18));
}
@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-art { margin-top: 1.5rem; }
}

/* ---- Trust strip (Independent / Unsponsored / Owner-operated) ---- */
.trust-strip {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
}
.trust-strip .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: "Oswald", system-ui, sans-serif;
}
.trust-item .icon {
  flex: 0 0 36px; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 50%;
}
.trust-item .text {
  display: flex; flex-direction: column;
  line-height: 1.25;
}
.trust-item .text strong {
  font-weight: 800;
  color: var(--ink);
  font-size: 0.95rem;
}
.trust-item .text span {
  color: var(--ink-muted);
  font-size: 0.82rem;
}
@media (max-width: 720px) {
  .trust-strip .row { grid-template-columns: 1fr; gap: 0.75rem; }
}

/* ---- Marquee / ticker (animated scrolling RV problems) ---- */
.ticker {
  background: #1f1410;
  color: #e6f7fd;
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 3rem;
  padding: 0.9rem 0;
  width: max-content;
  animation: ticker-scroll 48s linear infinite;
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { display: inline-flex; align-items: center; gap: 0.6rem; white-space: nowrap; }
.ticker-item::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  margin-right: 0.5rem;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- Defect counter widget (big number callout) ---- */
.defect-widget {
  background: linear-gradient(135deg, #242424 0%, #1a1a1a 100%);
  color: #e6f7fd;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.defect-widget::before {
  content: "";
  position: absolute;
  top: -50%; left: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(0,176,230,0.25), transparent 60%);
  pointer-events: none;
}
.defect-widget .label-up {
  font-family: "Oswald", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
  position: relative;
}
.defect-widget .big {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: clamp(4rem, 11vw, 7.5rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin: 0.5rem 0;
  position: relative;
  text-shadow: 0 4px 24px rgba(0,176,230,0.3);
}
.defect-widget .label-down {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #a9a9a9;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}
.defect-widget .sub {
  font-family: "Montserrat", system-ui, sans-serif;
  font-style: italic;
  color: #9a9a9a;
  font-size: 0.95rem;
  margin-top: 0.75rem;
  position: relative;
}

/* ---- Stats with platform icons ---- */
.stats-platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.stat-platform {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.stat-platform:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}
.stat-platform .platform-icon {
  flex: 0 0 44px; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft);
  border-radius: 8px;
  color: var(--accent);
}
.stat-platform .num {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 1.7rem; font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.stat-platform .label {
  color: var(--ink-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 600;
}

/* ---- Timeline (our story) ---- */
.timeline {
  position: relative;
  margin: 2.5rem 0 1rem;
  padding-left: 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-deep) 100%);
  opacity: 0.4;
}
.tl-item {
  position: relative;
  padding-left: 72px;
  margin-bottom: 1.5rem;
}
.tl-item .dot {
  position: absolute;
  left: 18px;
  top: 6px;
  width: 22px; height: 22px;
  background: var(--accent);
  border: 4px solid var(--bg-alt);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--accent);
}
.tl-item .year {
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.tl-item h4 {
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0.15rem 0 0.35rem;
  color: var(--ink);
}
.tl-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* ---- Feature card with icons (upgrade cards) ---- */
.feature-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 1.5rem;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  display: flex;
  flex-direction: column;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.feature-card .feat-icon {
  width: 48px; height: 48px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}
.feature-card p {
  flex: 1;
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.feature-card .arrow {
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  border: none;
  align-self: flex-start;
}

/* ---- Spotlight / Horror Story of the Week ---- */
.spotlight {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 6px solid var(--accent-hot);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  box-shadow: var(--shadow);
}
.spotlight .sp-art {
  background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
  color: #e6f7fd;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.spotlight .sp-art::before {
  content: "";
  position: absolute;
  top: -40%; right: -20%;
  width: 80%; height: 180%;
  background: radial-gradient(circle, rgba(226,59,59,0.35), transparent 60%);
}
.spotlight .sp-badge {
  display: inline-block;
  background: var(--accent-hot);
  color: #fff;
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  align-self: flex-start;
  position: relative;
  margin-bottom: 1rem;
}
.spotlight .sp-art h3 {
  color: #e6f7fd;
  font-size: 1.6rem;
  margin: 0 0 0.5rem;
  position: relative;
}
.spotlight .sp-art .sp-meta {
  color: #a9a9a9;
  font-size: 0.85rem;
  font-family: "Oswald", system-ui, sans-serif;
  position: relative;
}
.spotlight .sp-body {
  padding: 2rem;
}
.spotlight .sp-body h4 {
  font-family: "Oswald", system-ui, sans-serif;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin: 0 0 0.5rem;
}
.spotlight .sp-body p { margin: 0 0 1rem; }
@media (max-width: 720px) {
  .spotlight { grid-template-columns: 1fr; }
}

/* ---- Merch teaser cards (with product art) ---- */
.merch-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 1.5rem;
}
.merch-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.merch-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.merch-card .product-image {
  background: linear-gradient(135deg, #f7fbfe 0%, #f3f4f6 100%);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.merch-card .product-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.merch-card .product-body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.merch-card .product-body h4 {
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  color: var(--ink);
}
.merch-card .product-body p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  flex: 1;
}
.merch-card .product-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}
.merch-card .price {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
}
.merch-card .product-foot .btn {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* ---- Merch CTA banner ---- */
.merch-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #0089b3 100%);
  color: #1a1a1a;
  border-radius: var(--radius);
  padding: 2rem 2rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.merch-banner h3 {
  margin: 0 0 0.25rem;
  font-size: 1.4rem;
  color: #1a1a1a;
}
.merch-banner p { margin: 0; color: #333333; }
.merch-banner .btn {
  background: #1a1a1a;
  color: var(--accent);
  border-color: #1a1a1a;
}
.merch-banner .btn:hover { background: #2b2b2b; }

/* ---- Lemon Risk Quiz ---- */
.quiz {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  max-width: 720px;
  margin: 2rem auto;
}
.quiz h3 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
}
.quiz .quiz-sub {
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
  font-size: 0.98rem;
}
.quiz-question {
  display: none;
  padding: 1rem 0;
}
.quiz-question.active { display: block; }
.quiz-question .q-num {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 700;
}
.quiz-question .q-text {
  font-size: 1.15rem;
  font-weight: 700;
  font-family: "Oswald", system-ui, sans-serif;
  color: var(--ink);
  margin: 0.4rem 0 1.2rem;
}
.quiz-options {
  display: grid;
  gap: 0.6rem;
}
.quiz-options button {
  text-align: left;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.12s ease, background 0.12s ease;
}
.quiz-options button:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.quiz-progress {
  height: 6px;
  background: var(--bg-alt);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.quiz-progress .bar {
  height: 100%;
  background: var(--accent);
  transition: width 0.3s ease;
  width: 0%;
}
.quiz-result {
  display: none;
  text-align: center;
  padding: 1.5rem 0 0.5rem;
}
.quiz-result.active { display: block; }
.quiz-result .score {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.quiz-result .verdict {
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.quiz-result .verdict-body {
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.quiz-result .restart {
  background: none;
  border: none;
  color: var(--accent);
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.9rem;
  text-decoration: underline;
}

/* ---- Email signup upgraded ---- */
.signup-upgraded {
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--surface) 100%);
  border: 1px solid var(--line);
  border-left: 6px solid var(--accent);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin: 2rem 0;
}
.signup-upgraded .signup-eyebrow {
  font-family: "Oswald", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
}
.signup-upgraded h2 { margin: 0.5rem 0 0.5rem; }
.signup-upgraded .perks {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  display: grid;
  gap: 0.4rem;
}
.signup-upgraded .perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.signup-upgraded .perks li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1.4;
}

/* ---- Recent posts mini grid ---- */
.recent-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.recent-post {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  display: block;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.recent-post:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.recent-post .rp-cat {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 700;
}
.recent-post h4 {
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 800;
  margin: 0.4rem 0 0;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.3;
}

/* ---- Section divider road graphic ---- */
.road-divider {
  height: 24px;
  background: url("assets/road-divider.svg") repeat-x center/auto 100%;
  margin: 0;
  border: none;
  opacity: 0.7;
}

/* ---- Sticky CTA for mobile (subtle) ---- */
@media (max-width: 720px) {
  .hero-copy .lede { font-size: 1.1rem; }
}

/* =====================================================
   Crappy Ranking — live community vote widget
   Two-column on desktop (vote | leaderboard), stacked on mobile.
   ===================================================== */
.ranking {
  padding: 3rem 0 3.5rem;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ranking .container { max-width: 1080px; }

.ranking-header { text-align: center; margin-bottom: 2rem; }
.ranking-header h2 { margin: 0.25rem 0 0.5rem; }
.ranking-header .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Oswald", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
}
.ranking-header .section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-hot);
  box-shadow: 0 0 0 0 rgba(226,59,59,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(226,59,59,0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(226,59,59,0); }
  100% { box-shadow: 0 0 0 0 rgba(226,59,59,0); }
}
.ranking-sub {
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0.25rem auto 0;
  font-size: 1.05rem;
}

.ranking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 820px) {
  .ranking-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* ---- Vote panel ---- */
.vote-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.4rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.vp-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.vp-heading h3 {
  margin: 0;
  font-size: 1.15rem;
}
.vp-step {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  font-weight: 600;
}
.vp-label {
  display: block;
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin: 1rem 0 0.4rem;
}
.vp-label:first-of-type { margin-top: 0; }

.vote-select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%237a8089' d='M6 8 0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.25rem;
  cursor: pointer;
}
.vote-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,176,230,0.18);
}

/* Lemon rating buttons */
.lemon-input {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.4rem;
  margin: 0;
}
.lemon-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  padding: 0.6rem 0.25rem 0.5rem;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  font-family: "Oswald", system-ui, sans-serif;
  cursor: pointer;
  transition: border-color 0.12s, background 0.12s, transform 0.06s;
}
.lemon-btn:hover { border-color: var(--accent); }
.lemon-btn:active { transform: translateY(1px); }
.lemon-icon {
  font-size: 1.4rem;
  line-height: 1;
  filter: grayscale(80%);
  opacity: 0.45;
  transition: filter 0.15s, opacity 0.15s, transform 0.15s;
}
.lemon-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}
.lemon-btn.hover .lemon-icon,
.lemon-btn.active .lemon-icon {
  filter: none;
  opacity: 1;
  transform: scale(1.08);
}
.lemon-btn.active {
  background: var(--accent-soft);
  border-color: var(--accent);
}
.lemon-btn.active .lemon-num { color: var(--accent-deep); }

.lemon-scale-labels {
  display: flex;
  justify-content: space-between;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin: 0.5rem 0 1.25rem;
  letter-spacing: 0.02em;
}

.vote-submit {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0.25rem;
}
.vote-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.vote-status {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  min-height: 1.25rem;
}
.vote-status.ok { color: #2c7a3f; }
.vote-status.err { color: var(--accent-hot); }

/* ---- Leaderboard ---- */
.leaderboard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem 1rem;
  box-shadow: var(--shadow);
  min-height: 100%;
}
.lb-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0.4rem;
}
.lb-header h3 { margin: 0; font-size: 1.15rem; }
.lb-meta {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
}
.lb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: lb;
}
.lb-row {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0.1rem;
  border-bottom: 1px dashed var(--line);
  transition: background 0.2s;
}
.lb-row:last-child { border-bottom: none; }
.lb-row:hover { background: rgba(0,176,230,0.04); }
.lb-row-empty { opacity: 0.6; }

.lb-rank {
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ink);
  text-align: center;
}
.lb-row:first-child .lb-rank,
.lb-row:nth-child(1) .lb-rank { color: var(--accent-hot); }
.lb-rank-empty { color: var(--ink-muted); font-weight: 600; }

.lb-body { min-width: 0; }
.lb-name-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}
.lb-name {
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.lb-parent {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  padding: 0.1rem 0.4rem;
  background: var(--bg-alt);
  border-radius: 999px;
  font-weight: 600;
}
.lb-parent-indie {
  background: var(--accent-soft);
  color: var(--accent-deep);
}
.lb-meter {
  width: 100%;
  height: 6px;
  background: var(--bg-alt);
  border-radius: 999px;
  overflow: hidden;
}
.lb-meter-fill {
  height: 100%;
  background: linear-gradient(90deg, #7fd6f3 0%, var(--accent) 60%, var(--accent-hot) 100%);
  transition: width 0.6s ease-out;
}
.lb-row-empty .lb-meter-fill { background: var(--line); }

.lb-stats {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
  font-family: "Oswald", system-ui, sans-serif;
}
.lb-avg {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1;
}
.lb-avg small {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ink-muted);
  margin-left: 1px;
}
.lb-count {
  font-size: 0.72rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}
.lb-myvote {
  margin-top: 0.15rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent-deep);
  background: var(--accent-soft);
  padding: 0.05rem 0.4rem;
  border-radius: 999px;
}

.lb-loading {
  padding: 1rem 0;
  color: var(--ink-muted);
  font-style: italic;
}

.lb-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--line);
}
.lb-toggle {
  background: transparent;
  border: none;
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--accent);
  cursor: pointer;
  padding: 0.25rem 0;
  letter-spacing: 0.02em;
}
.lb-toggle:hover { color: var(--accent-hot); }
.lb-updated {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.72rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  margin-left: auto;
}

.ranking-disclaimer {
  margin: 1.5rem auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-muted);
  font-family: "Oswald", system-ui, sans-serif;
  line-height: 1.5;
}

/* Preview-mode banner (no backend yet) */
.ranking.preview-mode .leaderboard::before {
  content: "Preview mode — your votes are saved in this browser only. Once the backend goes live, real community votes will appear here.";
  display: block;
  margin: -0.25rem 0 0.75rem;
  padding: 0.6rem 0.75rem;
  background: var(--accent-soft);
  color: var(--accent-deep);
  border-left: 3px solid var(--accent);
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.78rem;
  line-height: 1.45;
  border-radius: 4px;
}

/* Mobile tightening */
@media (max-width: 540px) {
  .lemon-btn { padding: 0.5rem 0.1rem 0.4rem; }
  .lemon-icon { font-size: 1.15rem; }
  .lb-row { grid-template-columns: 1.75rem minmax(0, 1fr) auto; gap: 0.55rem; }
  .lb-name { font-size: 0.9rem; }
  .lb-avg { font-size: 1rem; }
  .vp-step { display: none; }
}

/* ---- Jingle band (added 2026-05-22) ---- */
.jingle { padding: 3rem 0 3.25rem; }
.jingle-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.jingle-title {
  margin: 0.5rem 0 0.35rem;
}
.jingle-sub {
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
}
.jingle-player {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.jingle-player audio {
  width: 100%;
  max-width: 560px;
  outline: none;
}
.jingle-foot {
  color: var(--ink-muted);
  font-size: 0.85rem;
  margin: 0.8rem 0 0;
  font-family: "Oswald", system-ui, sans-serif;
  letter-spacing: 0.02em;
}
.jingle-foot a {
  border-bottom: 1px solid rgba(0,176,230, 0.35);
}
/* ---- Second jingle / per-track labels (added 2026-06-05) ---- */
.jingle-track { margin-top: 1.85rem; }
.jingle-track:first-of-type { margin-top: 0; }
.jingle-track-title {
  font-family: "Oswald", system-ui, sans-serif;
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.82rem; font-weight: 700;
  color: var(--accent);
  margin: 0 0 0.7rem;
}
@media (max-width: 720px) {
  .jingle { padding: 2.25rem 0 2.5rem; }
  .jingle-player { padding: 0.9rem 0.9rem; }
  .jingle-track { margin-top: 1.5rem; }
}

/* ========================================================================
   Allies + Donate (homepage additions, 2026-05-22c)
   ======================================================================== */

/* ----- Allies row ----- */
.allies {
  background: var(--bg-alt);
  padding: 3.25rem 0 3.75rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ally-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}
.ally-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.85rem;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.ally-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.ally-card .ally-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}
.ally-card .ally-tag {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.ally-card .ally-arrow {
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.18s ease;
}
.ally-card:hover .ally-arrow {
  transform: translateX(3px);
}
.ally-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.3rem;
}
.ally-card p {
  margin: 0 0 0.85rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.ally-card .ally-link {
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* ----- Donate card ----- */
.donate {
  padding: 3.5rem 0 4rem;
}
.donate-card {
  position: relative;
  background: linear-gradient(180deg, var(--accent-soft) 0%, #f7fbfe 100%);
  border: 1px solid #bfe8fa;
  border-radius: 14px;
  padding: 2.5rem 2rem 2.25rem;
  box-shadow: var(--shadow-lg);
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.donate-card .donate-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  margin: 0 auto 1rem;
  box-shadow: 0 6px 18px rgba(0,176,230, 0.32);
}
.donate-card h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.donate-card .donate-body {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 1.5rem;
}
.donate-card .donate-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.05rem;
  padding: 0.95rem 1.6rem;
}
.donate-card .donate-cta span { font-size: 1.15rem; }
.donate-card .donate-foot {
  margin: 1.25rem auto 0;
  max-width: 540px;
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.5;
}
.donate-card .donate-foot a {
  color: var(--accent);
  font-weight: 700;
  border-bottom: 1px solid rgba(0,176,230, 0.35);
}
.donate-card .donate-foot a:hover {
  color: var(--accent-deep);
  border-bottom-color: var(--accent-deep);
}

@media (max-width: 600px) {
  .donate-card { padding: 2rem 1.25rem 1.85rem; }
  .allies { padding: 2.5rem 0 3rem; }
  .ally-card { padding: 1.4rem 1.4rem; }
}

/* ========================================================================
   ALLIES PAGE (allies.html) — directory + submission, 2026-05-22d
   Reuses the existing .ally-card base; adds child elements + page chrome.
   ======================================================================== */

/* ---- Hero (parody of corporate "Allies" branding) ---- */
.allies-hero {
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 0%, rgba(0,176,230,0.16), transparent 55%),
    radial-gradient(circle at 88% 70%, rgba(226,59,59,0.10), transparent 55%),
    linear-gradient(180deg, #eef9fe 0%, var(--bg-alt) 100%);
  overflow: hidden;
}
.allies-hero .eyebrow {
  font-family: "Oswald", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-deep);
  margin-bottom: 0.85rem;
}
.allies-hero h1 .hl {
  position: relative;
  display: inline-block;
  color: var(--accent-hot);
  font-style: italic;
}
.allies-hero h1 .hl::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.05em;
  height: 0.28em;
  background: rgba(0,176,230,0.32);
  z-index: -1;
  transform: skewX(-8deg);
}
.allies-hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2.5rem;
  align-items: center;
}
.allies-hero-copy .lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 620px;
}
.allies-stamp-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 820px) {
  .allies-hero-grid { grid-template-columns: 1fr; }
  .allies-stamp-wrap { order: -1; margin-bottom: 0.5rem; }
}

/* ---- The "Official Crappy Allies Seal" (typographic stamp, no SVG) ---- */
.ally-stamp {
  position: relative;
  width: 250px;
  height: 250px;
  border: 4px double var(--accent-deep);
  border-radius: 50%;
  background: rgba(255, 244, 221, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--accent-deep);
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 800;
  transform: rotate(-7deg);
  box-shadow:
    inset 0 0 0 2px rgba(138, 42, 0, 0.18),
    0 6px 22px rgba(138, 42, 0, 0.10);
  opacity: 0.92;
  user-select: none;
}
.ally-stamp::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(138, 42, 0, 0.4);
  border-radius: 50%;
}
.ally-stamp .stamp-star {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.ally-stamp .stamp-line-1 {
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  line-height: 1;
}
.ally-stamp .stamp-line-mid {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  margin: 0.55rem 0;
  font-weight: 700;
}
.ally-stamp .stamp-line-2 {
  font-size: 0.88rem;
  letter-spacing: 0.32em;
  font-weight: 800;
}
.ally-stamp .stamp-line-tiny {
  font-size: 0.55rem;
  margin-top: 0.55rem;
  letter-spacing: 0.18em;
  font-style: italic;
  opacity: 0.7;
}
@media (max-width: 480px) {
  .ally-stamp { width: 200px; height: 200px; transform: rotate(-6deg) scale(0.9); }
}

/* ---- "Tale of two Allies" comparison ---- */
.allies-joke {
  padding: 3.25rem 0 3.5rem;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 2rem;
}
.compare-col {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.65rem;
  box-shadow: var(--shadow);
}
.compare-them {
  border-top: 4px solid #98a2af;
  position: relative;
}
.compare-us {
  border-top: 4px solid var(--accent);
  position: relative;
}
.compare-tag {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin-bottom: 1rem;
}
.compare-them .compare-tag { color: #6e7681; }
.compare-us .compare-tag { color: var(--accent-deep); }
.compare-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.compare-col li {
  padding: 0.65rem 0;
  border-bottom: 1px dashed var(--line);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.98rem;
  line-height: 1.45;
}
.compare-col li:last-child { border-bottom: none; }
.bullet-x {
  color: #98a2af;
  font-weight: 900;
  flex-shrink: 0;
  width: 1.1rem;
  text-align: center;
}
.bullet-check {
  color: var(--accent);
  font-weight: 900;
  flex-shrink: 0;
  width: 1.1rem;
  text-align: center;
}
.compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--ink-muted);
  letter-spacing: -0.02em;
  padding: 0 0.25rem;
  font-style: italic;
}
@media (max-width: 720px) {
  .compare-grid { grid-template-columns: 1fr; gap: 1rem; }
  .compare-vs { padding: 0.25rem 0; font-size: 1.4rem; }
}

/* ---- Roll Call filter chips (extend existing .category-chip) ---- */
.ally-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 1.75rem;
}

/* ---- Roll Call directory grid ---- */
.ally-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 0.5rem;
}
.ally-grid .ally-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  border-top: 3px solid var(--accent);
}
.ally-grid .ally-card .ally-cat-badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.65rem;
  background: var(--accent-soft);
  color: var(--accent-deep);
  border-radius: 999px;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.ally-grid .ally-card .ally-name {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.25;
}
.ally-grid .ally-card .ally-blurb {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.5;
  flex-grow: 1;
}
.ally-grid .ally-card .ally-host {
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px dashed var(--line);
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ---- Loading + empty states ---- */
.ally-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem 0 1.5rem;
}
.ally-loading-spinner {
  display: inline-block;
  width: 36px;
  height: 36px;
  border: 3px solid var(--line);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: ally-spin 0.9s linear infinite;
  margin-bottom: 0.75rem;
}
@keyframes ally-spin { to { transform: rotate(360deg); } }
.empty-allies {
  text-align: center;
  padding: 3rem 1rem 2.5rem;
  background: var(--bg-alt);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}
.empty-allies .empty-stamp {
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: inline-block;
  animation: empty-wobble 2.6s ease-in-out infinite;
}
@keyframes empty-wobble {
  0%,100% { transform: rotate(-6deg); }
  50%     { transform: rotate(6deg); }
}
.empty-allies h3 { margin: 0 0 0.4rem; }

/* ---- Submission section ---- */
.allies-submit {
  padding: 3.25rem 0 3.75rem;
}
.submit-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}
.submit-copy p {
  color: var(--ink-soft);
  line-height: 1.6;
}
.submit-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}
.submit-list li {
  padding: 0.45rem 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.submit-list .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 820px) {
  .submit-grid { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* ---- The form ---- */
.ally-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.65rem;
  box-shadow: var(--shadow);
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-row label {
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.form-row .req { color: var(--accent-hot); }
.form-row .opt { color: var(--ink-muted); font-weight: 500; font-style: italic; font-size: 0.82rem; }
.form-row input[type=text],
.form-row input[type=url],
.form-row input[type=email],
.form-row select {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,176,230,0.18);
}
.form-row select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--accent-deep) 50%),
                    linear-gradient(135deg, var(--accent-deep) 50%, transparent 50%);
  background-position: calc(100% - 18px) center, calc(100% - 13px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2rem;
}
.form-row small {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.75rem;
  color: var(--ink-muted);
  text-align: right;
}
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.form-row-split > div { display: flex; flex-direction: column; gap: 0.4rem; }
@media (max-width: 540px) {
  .form-row-split { grid-template-columns: 1fr; }
}
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}
.form-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 500;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.45;
  cursor: pointer;
}
.form-checkbox input[type=checkbox] {
  margin-top: 0.18rem;
  accent-color: var(--accent);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}
.form-checkbox label em { color: var(--ink-muted); }
.btn-submit {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1.02rem;
  margin-top: 0.4rem;
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form-status {
  margin-top: 0.9rem;
  padding: 0.7rem 0.85rem;
  border-radius: 6px;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.92rem;
  line-height: 1.4;
  min-height: 1.2rem;
}
.form-status:empty { padding: 0; min-height: 0; }
.form-status-error {
  background: rgba(226,59,59,0.08);
  color: var(--accent-deep);
  border: 1px solid rgba(226,59,59,0.2);
}
.form-status-success {
  background: rgba(0,176,230,0.10);
  color: var(--accent-deep);
  border: 1px solid rgba(0,176,230,0.28);
  font-weight: 600;
}
.form-status-warn {
  background: #e6f7fd;
  color: #0089b3;
  border: 1px solid #bfe8fa;
}

/* ---- Rules grid ---- */
.allies-rules {
  padding: 3rem 0 3.5rem;
}
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.1rem;
  margin-top: 1.5rem;
}
.rule-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.4rem 1.45rem;
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.rule-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.rule-num {
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 900;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}
.rule-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.08rem;
}
.rule-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.5;
}

/* ---- Confetti burst on successful submit ---- */
.confetti-root {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}
.confetti-piece {
  position: absolute;
  top: -2rem;
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 900;
  animation: confetti-fall 1.8s cubic-bezier(0.32, 0.05, 0.45, 1) forwards;
}
@keyframes confetti-fall {
  0%   { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(540deg); opacity: 0; }
}

/* ---- divider helper used inline on the allies page ---- */
.divider.container { margin: 0 auto; }

/* ========================================================================
   DAILY SERIES PAGE (daily-series.html) — 2026-05-22d
   "The Daily" — a CrappyRV show for every day of the week.
   Each day uses --day-color for its accent. The current weekday is highlighted.
   ======================================================================== */

/* ---- Hero ---- */
.daily-hero {
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 0%, rgba(0,176,230,0.16), transparent 55%),
    radial-gradient(circle at 12% 80%, rgba(20,20,20,0.06), transparent 55%),
    linear-gradient(180deg, #f7fbfe 0%, var(--bg-alt) 100%);
}
.daily-hero .eyebrow {
  font-family: "Oswald", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-deep);
  margin-bottom: 0.85rem;
}
.daily-hero h1 .hl {
  position: relative;
  display: inline-block;
  color: var(--accent-hot);
  font-style: italic;
}
.daily-hero h1 .hl::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.05em;
  height: 0.28em;
  background: rgba(0,176,230,0.32);
  z-index: -1;
  transform: skewX(-8deg);
}
.daily-hero .lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 720px;
  margin-bottom: 1rem;
}

/* ---- "Today on CrappyRV" pulse strip ---- */
.daily-now-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding: 0.55rem 1rem 0.55rem 0.85rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 999px;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.92rem;
  color: var(--ink-soft);
  box-shadow: var(--shadow);
}
.daily-now-strip strong { color: var(--ink); }
.daily-now-strip .pulse-dot {
  width: 10px;
  height: 10px;
  background: var(--accent-hot);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.daily-now-strip .pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--accent-hot);
  animation: live-pulse 1.6s ease-out infinite;
  opacity: 0.7;
}
@keyframes live-pulse {
  0%   { transform: scale(0.85); opacity: 0.9; }
  100% { transform: scale(2.2);  opacity: 0; }
}
.daily-now-strip .daily-now-link {
  color: var(--accent);
  font-weight: 700;
  border-bottom: 1px solid rgba(0,176,230,0.3);
  font-family: "Oswald", system-ui, sans-serif;
}
.daily-now-strip .daily-now-link:hover {
  color: var(--accent-deep);
}

/* ---- The 7-day grid ---- */
.daily-week { padding: 3rem 0 3.5rem; }
.daily-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem;
  margin-top: 1.75rem;
}

/* ---- Day card base ---- */
.day-card {
  --day-color: var(--accent);
  --day-soft: rgba(0,176,230,0.10);
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 5px solid var(--day-color);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem 1.3rem;
  position: relative;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  outline-offset: 3px;
  display: flex;
  flex-direction: column;
}
.day-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.day-card:focus-visible {
  outline: 3px solid var(--day-color);
}
.day-card.today {
  box-shadow: 0 0 0 3px var(--day-color), var(--shadow-lg);
  transform: translateY(-2px);
}
.day-card.today::before {
  content: 'TODAY';
  position: absolute;
  top: -10px;
  right: 14px;
  background: var(--day-color);
  color: #fff;
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  padding: 3px 8px;
  border-radius: 4px;
}

/* ---- Card header (day number + time) ---- */
.day-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}
.day-num {
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--day-color);
}
.day-time {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
  text-transform: uppercase;
}

.day-show {
  font-size: 1.32rem;
  margin: 0 0 0.4rem;
  line-height: 1.2;
}
.day-tagline {
  margin: 0 0 0.9rem;
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.5;
  flex-grow: 1;
}
.day-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}
.day-vibe {
  background: var(--day-soft);
  color: var(--day-color);
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  text-transform: uppercase;
}
.day-status {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.72rem;
  color: var(--ink-muted);
  padding: 0.18rem 0.45rem;
  letter-spacing: 0.02em;
}

/* ---- Expandable section (revealed on click/keyboard) ---- */
.day-expand {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
}
.day-card.open .day-expand {
  max-height: 500px;
  opacity: 1;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
}
.day-expand h4 {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--day-color);
  font-weight: 800;
}
.day-expand ul {
  margin: 0 0 0.9rem;
  padding-left: 1.05rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}
.day-expand ul li {
  margin-bottom: 0.25rem;
}
.day-pitch {
  display: inline-block;
  margin-top: 0.2rem;
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--day-color);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.day-pitch:hover { color: var(--day-color); filter: brightness(0.85); }

/* ---- Wednesday Easter egg (Alliance jab) ---- */
.day-easter-egg {
  position: absolute;
  top: 0.65rem;
  right: 0.85rem;
  background: rgba(220,38,38,0.10);
  color: #b91c1c;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px dashed rgba(220,38,38,0.3);
  transform: rotate(2deg);
  opacity: 0.92;
}
.day-easter-egg .ee-arrow { display: inline-block; transform: translateY(-1px); margin-right: 2px; }
.day-card.today .day-easter-egg { top: 0.9rem; } /* nudge below the TODAY tag */

/* ---- Per-day color palette ---- */
/* On-brand rotation: brand blue / deep blue / charcoal. Wednesday keeps red
   for the "Whatcha Broke Wednesday" easter-egg. */
.day-sunday    { --day-color: #00b0e6; --day-soft: rgba(0,176,230,0.10); }
.day-monday    { --day-color: #2b2b2b; --day-soft: rgba(43,43,43,0.08); }
.day-tuesday   { --day-color: #0089b3; --day-soft: rgba(0,137,179,0.10); }
.day-wednesday { --day-color: #e23b3b; --day-soft: rgba(226,59,59,0.10); }
.day-thursday  { --day-color: #00b0e6; --day-soft: rgba(0,176,230,0.10); }
.day-friday    { --day-color: #2b2b2b; --day-soft: rgba(43,43,43,0.08); }
.day-saturday  { --day-color: #0089b3; --day-soft: rgba(0,137,179,0.10); }

/* ---- Countdown strip ---- */
.daily-countdown {
  padding: 3.25rem 0 3.5rem;
}
.daily-countdown-inner { text-align: center; }
.daily-countdown h2 { margin-top: 0.5rem; }
.daily-countdown h2 .hl {
  color: var(--accent-hot);
  font-style: italic;
}
.daily-countdown .lede {
  max-width: 600px;
  margin: 0.4rem auto 1.6rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.countdown-clock {
  display: inline-flex;
  align-items: stretch;
  gap: 0.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow);
}
.clock-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 76px;
  padding: 0.25rem 0.55rem;
}
.clock-num {
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.clock-lbl {
  margin-top: 0.35rem;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  text-transform: uppercase;
}
.clock-sep {
  display: flex;
  align-items: center;
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--ink-muted);
  padding-bottom: 1rem;
}
@media (max-width: 540px) {
  .countdown-clock { padding: 0.6rem 0.5rem; }
  .clock-cell { min-width: 58px; padding: 0.25rem 0.3rem; }
  .clock-sep { font-size: 1.4rem; padding-bottom: 0.8rem; }
}

/* ---- Subscribe section ---- */
.daily-subscribe { padding: 2.5rem 0 3.5rem; }

/* ========================================================================
   THE DAILY — v2 rebuild (2026-05-29a)
   90-episode interactive schedule. Reuses .daily-hero / .day-card / .clock-*.
   New: stat strip, spotlight, episode guide, watchlist tray, lemon delights.
   ======================================================================== */

/* Per-day color tokens reused by every new component below */
.cls-sunday    { --day-color:#00b0e6; --day-soft:rgba(0,176,230,0.10); }
.cls-monday    { --day-color:#2b2b2b; --day-soft:rgba(43,43,43,0.08); }
.cls-tuesday   { --day-color:#0089b3; --day-soft:rgba(0,137,179,0.10); }
.cls-wednesday { --day-color:#e23b3b; --day-soft:rgba(226,59,59,0.10); }
.cls-thursday  { --day-color:#00b0e6; --day-soft:rgba(0,176,230,0.10); }
.cls-friday    { --day-color:#2b2b2b; --day-soft:rgba(43,43,43,0.08); }
.cls-saturday  { --day-color:#0089b3; --day-soft:rgba(0,137,179,0.10); }

/* ---- Hero lemon drift ---- */
.daily-hero { position: relative; overflow: hidden; }
.daily-hero .container { position: relative; z-index: 1; }
.lemon-rain { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.rain-lemon {
  position: absolute; top: -2rem; opacity: 0.16;
  animation: lemon-fall linear infinite;
  will-change: transform;
}
@keyframes lemon-fall {
  0%   { transform: translateY(-10%) rotate(0deg); }
  100% { transform: translateY(120vh) rotate(360deg); }
}
.daily-hero h1 { margin-bottom: 1rem; }
@media (prefers-reduced-motion: reduce) {
  .rain-lemon { animation: none; display: none; }
}

/* ---- Stat strip ---- */
.daily-stats {
  background: var(--ink);
  padding: 1.6rem 0;
}
.daily-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.daily-stats .stat { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; }
.daily-stats .stat-num {
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(2.1rem, 6vw, 3.4rem);
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.daily-stats .stat-zero .stat-num { color: #e2563b; }
.daily-stats .stat-lbl {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #cccfd3;
  font-weight: 700;
}
.daily-stats .stat-lbl em { font-style: italic; text-transform: none; letter-spacing: 0; color: #7d7d7d; font-weight: 400; }
@media (max-width: 560px) {
  .daily-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.3rem 1rem; }
}

/* ---- Spotlight + countdown ---- */
.daily-spotlight { padding: 2.75rem 0 3rem; }
.spotlight-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
.spotlight-card {
  --day-color: var(--accent);
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 6px solid var(--day-color);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.spotlight-tag {
  display: inline-block;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff; background: var(--day-color);
  padding: 0.25rem 0.6rem; border-radius: 999px; margin-bottom: 0.8rem;
}
.spotlight-day {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--ink-muted); margin-bottom: 0.35rem;
}
.spotlight-title { font-size: clamp(1.4rem, 3.2vw, 2rem); line-height: 1.12; margin: 0 0 0.45rem; }
.spotlight-show {
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 700; color: var(--day-color); margin: 0 0 1.1rem; font-size: 0.98rem;
}
.spotlight-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.spotlight-actions .btn-primary.on { background: var(--day-color); border-color: var(--day-color); color: #fff; }
.spotlight-card.just-spun { animation: spun-pop 0.55s ease; }
@keyframes spun-pop {
  0% { transform: scale(0.97); box-shadow: 0 0 0 0 var(--day-color); }
  40% { transform: scale(1.01); box-shadow: 0 0 0 5px var(--day-soft); }
  100% { transform: scale(1); box-shadow: var(--shadow); }
}
.countdown-box {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
}
.countdown-box .section-eyebrow { margin-bottom: 0.9rem; }
.countdown-box .countdown-clock { padding: 0.7rem 0.85rem; }
.countdown-box .clock-cell { min-width: 56px; padding: 0.2rem 0.4rem; }
.countdown-foot {
  margin: 1rem 0 0; font-size: 0.85rem; color: var(--ink-muted); max-width: 280px;
}
@media (max-width: 820px) {
  .spotlight-wrap { grid-template-columns: 1fr; }
}

/* ---- Season line inside the 7 channel cards ---- */
.day-season {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.8rem; color: var(--ink-muted);
  margin: -0.2rem 0 0.9rem; line-height: 1.45;
}
.day-season strong { color: var(--day-color); }

/* ---- Episode guide ---- */
.daily-guide { padding: 2.75rem 0 3.25rem; }
.daily-guide h2 .hl { color: var(--accent-hot); font-style: italic; }
.guide-controls {
  display: flex; flex-wrap: wrap; gap: 0.9rem 1.2rem;
  align-items: center; justify-content: space-between;
  margin: 1.5rem 0 0.4rem;
  position: sticky; top: 0; z-index: 20;
  background: var(--bg-alt);
  padding: 0.7rem 0;
}
.guide-filters { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.gf-chip {
  --day-color: var(--ink-soft);
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 700; font-size: 0.82rem;
  background: var(--surface); color: var(--ink-soft);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 0.4rem 0.8rem; cursor: pointer;
  transition: all 0.15s ease; line-height: 1;
}
.gf-chip:hover { border-color: var(--day-color); color: var(--day-color); }
.gf-chip.is-active {
  background: var(--day-color); border-color: var(--day-color); color: #fff;
}
.gf-chip[data-filter="all"].is-active { background: var(--ink); border-color: var(--ink); }
.gf-count {
  font-size: 0.72rem; opacity: 0.7; font-weight: 600; margin-left: 0.15rem;
}
.guide-tools { display: flex; gap: 0.5rem; align-items: center; }
.guide-search {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.9rem; padding: 0.5rem 0.85rem;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--surface); color: var(--ink); min-width: 180px;
}
.guide-search:focus { outline: 2px solid var(--accent); border-color: var(--accent); }
.btn-spin {
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 800; font-size: 0.88rem; white-space: nowrap;
  background: var(--accent-hot); color: #fff; border: none;
  border-radius: 999px; padding: 0.5rem 1rem; cursor: pointer;
  transition: transform 0.12s ease, filter 0.12s ease; min-width: 160px;
}
.btn-spin:hover { filter: brightness(1.07); transform: translateY(-1px); }
.btn-spin.spinning { animation: spin-wiggle 0.3s linear infinite; }
@keyframes spin-wiggle { 0%,100%{transform:rotate(-1.5deg)} 50%{transform:rotate(1.5deg)} }
.guide-empty { color: var(--ink-soft); margin: 2rem 0; font-size: 1.05rem; }

.guide-list { margin-top: 0.5rem; }
.week-head {
  display: flex; align-items: baseline; gap: 0.7rem;
  margin: 1.6rem 0 0.7rem; padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--line);
}
.week-head:first-child { margin-top: 0.6rem; }
.week-tag {
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 900; font-size: 0.95rem; letter-spacing: 0.04em; color: var(--ink);
}
.week-range {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.8rem; color: var(--ink-muted); letter-spacing: 0.03em;
}
.week-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
  gap: 0.7rem;
}

.ep-card {
  --day-color: var(--accent);
  position: relative;
  display: flex; align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.14s ease, border-color 0.14s ease;
}
.ep-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--day-color); }
.ep-bar { width: 5px; background: var(--day-color); flex-shrink: 0; }
.ep-body { padding: 0.7rem 0.55rem 0.75rem 0.75rem; flex: 1; min-width: 0; }
.ep-meta {
  display: flex; align-items: center; gap: 0.45rem; flex-wrap: wrap;
  font-family: "Oswald", system-ui, sans-serif; margin-bottom: 0.3rem;
}
.ep-day {
  font-weight: 900; font-size: 0.68rem; letter-spacing: 0.08em;
  color: #fff; background: var(--day-color); padding: 0.12rem 0.4rem; border-radius: 4px;
}
.ep-date { font-size: 0.72rem; color: var(--ink-muted); font-weight: 600; }
.ep-show { font-size: 0.7rem; color: var(--day-color); font-weight: 700; }
.ep-subject {
  display: inline-block;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--day-color); background: var(--day-soft);
  padding: 0.1rem 0.4rem; border-radius: 4px; margin-bottom: 0.25rem;
}
.ep-title {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700; font-size: 0.98rem; line-height: 1.25; margin: 0; color: var(--ink);
}
.ep-fav {
  flex-shrink: 0; align-self: flex-start;
  width: 30px; height: 30px; margin: 0.5rem 0.5rem 0 0;
  border: 1px solid var(--line); border-radius: 50%;
  background: var(--bg); color: var(--ink-soft);
  font-size: 0.95rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.14s ease;
}
.ep-fav:hover { border-color: var(--day-color); color: var(--day-color); transform: scale(1.1); }
.ep-fav.on { background: var(--day-soft); border-color: var(--day-color); }
.ep-card.is-today { box-shadow: 0 0 0 2px var(--day-color); }
.ep-today {
  position: absolute; top: 0; right: 0;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.12em;
  color: #fff; background: var(--day-color);
  padding: 0.15rem 0.45rem; border-bottom-left-radius: 6px;
}
.ep-card.flash { animation: ep-flash 1.4s ease; }
@keyframes ep-flash {
  0%, 100% { box-shadow: 0 0 0 0 transparent; }
  20% { box-shadow: 0 0 0 4px var(--day-color); transform: translateY(-2px); }
}

/* ---- Get involved ---- */
.daily-involve { padding: 2.5rem 0 3rem; }
.involve-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem; margin-top: 1.4rem;
}
.involve-card {
  --day-color: var(--accent);
  display: block; background: var(--surface);
  border: 1px solid var(--line); border-top: 4px solid var(--day-color);
  border-radius: var(--radius); padding: 1.3rem 1.35rem;
  text-decoration: none; transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.involve-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-bottom-color: var(--line); }
.involve-day {
  display: inline-block;
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 900; font-size: 0.68rem; letter-spacing: 0.1em;
  color: #fff; background: var(--day-color); padding: 0.15rem 0.5rem; border-radius: 4px;
}
.involve-card h3 { margin: 0.7rem 0 0.4rem; font-size: 1.2rem; }
.involve-card p { margin: 0 0 0.9rem; color: var(--ink-soft); font-size: 0.93rem; line-height: 1.5; }
.involve-cta {
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 700; font-size: 0.88rem; color: var(--day-color); border-bottom: 1px solid currentColor; padding-bottom: 1px;
}

/* ---- Watchlist FAB + tray ---- */
/* these set display:flex below, which would override the [hidden] attribute — guard it */
.watchlist-fab[hidden], .watchlist-tray[hidden], .daily-now-strip[hidden] { display: none !important; }
.watchlist-fab {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 60;
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 800; font-size: 0.92rem;
  background: var(--ink); color: #fff; border: none;
  border-radius: 999px; padding: 0.7rem 1.05rem; cursor: pointer;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 0.45rem;
  transition: transform 0.14s ease;
}
.watchlist-fab:hover { transform: translateY(-2px); }
.wl-count {
  background: var(--accent-hot); color: #fff; border-radius: 999px;
  min-width: 1.4em; padding: 0.05rem 0.4rem; font-size: 0.8rem; text-align: center;
}
.watchlist-tray {
  position: fixed; right: 1.1rem; bottom: 4.2rem; z-index: 61;
  width: min(360px, calc(100vw - 2rem));
  max-height: min(70vh, 560px);
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; overflow: hidden;
  animation: tray-in 0.2s ease;
}
@keyframes tray-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.wl-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1rem 0.7rem; border-bottom: 1px solid var(--line);
}
.wl-head h3 { margin: 0; font-size: 1.05rem; }
.wl-close { background: none; border: none; font-size: 1.1rem; cursor: pointer; color: var(--ink-muted); line-height: 1; }
.wl-close:hover { color: var(--ink); }
.wl-body { overflow-y: auto; padding: 0.6rem 0.7rem; flex: 1; }
.wl-empty { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.55; text-align: center; padding: 1.2rem 0.8rem; margin: 0; }
.wl-item {
  --day-color: var(--accent);
  display: flex; align-items: stretch; gap: 0;
  background: var(--bg); border: 1px solid var(--line); border-radius: 6px;
  overflow: hidden; margin-bottom: 0.45rem; cursor: pointer;
}
.wl-item:hover { border-color: var(--day-color); }
.wl-item-bar { width: 4px; background: var(--day-color); flex-shrink: 0; }
.wl-item-body { flex: 1; padding: 0.45rem 0.5rem 0.5rem 0.6rem; min-width: 0; }
.wl-item-meta {
  display: block; font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.05em; color: var(--day-color);
}
.wl-item-title { display: block; font-size: 0.86rem; line-height: 1.25; color: var(--ink); }
.wl-item-x {
  flex-shrink: 0; background: none; border: none; color: var(--ink-muted);
  font-size: 0.85rem; cursor: pointer; padding: 0 0.6rem;
}
.wl-item-x:hover { color: var(--accent-hot); }
.wl-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
  padding: 0.65rem 1rem; border-top: 1px solid var(--line); background: var(--bg-alt);
}
.wl-clear {
  background: none; border: 1px solid var(--line); border-radius: 6px;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.78rem; color: var(--ink-soft); padding: 0.35rem 0.6rem; cursor: pointer;
}
.wl-clear:hover { border-color: var(--accent-hot); color: var(--accent-hot); }
.wl-sub {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.78rem; font-weight: 700; border-bottom: none;
}

/* ---- Lemon burst ---- */
.lemon-burst {
  position: fixed; z-index: 999; font-size: 1.1rem; pointer-events: none;
  transform: translate(-50%, -50%); animation: lemon-burst 0.85s ease-out forwards;
}
@keyframes lemon-burst {
  0%   { opacity: 1; transform: translate(-50%, -50%) scale(0.4); }
  100% { opacity: 0; transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(1.1) rotate(120deg); }
}
@media (prefers-reduced-motion: reduce) {
  .lemon-burst, .spotlight-card.just-spun, .ep-card.flash, .btn-spin.spinning { animation: none; }
}

/* ---- Guide controls: stack on small screens ---- */
@media (max-width: 640px) {
  .guide-controls { gap: 0.7rem; }
  .guide-tools { width: 100%; }
  .guide-search { flex: 1; min-width: 0; }
}

/* ---- Episode card: title link + read affordance (added 2026-05-29b) ---- */
.ep-title-link { color: var(--ink); text-decoration: none; border-bottom: none; }
.ep-card:hover .ep-title-link { color: var(--day-color); }
.ep-read {
  display: block; margin-top: 0.45rem;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.02em;
  color: var(--day-color); opacity: 0.85;
}
.ep-card:hover .ep-read { opacity: 1; }

/* ========================================================================
   EPISODE PAGES (/daily/NN-slug.html) — readable writeup per episode, 2026-05-29b
   Uses .cls-* day-color tokens defined in the Daily block above.
   ======================================================================== */
/* .episode's --day-color comes from its cls-<day> class (defined in the Daily block above) */
.ep-hero {
  background:
    linear-gradient(180deg, var(--day-soft) 0%, var(--bg) 100%);
  border-bottom: 3px solid var(--day-color);
  padding: 2.25rem 0 2rem;
}
.ep-back {
  display: inline-block; margin-bottom: 1.1rem;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.85rem; font-weight: 700; color: var(--day-color);
  border-bottom: none;
}
.ep-back:hover { filter: brightness(0.85); }
.ep-eyebrow {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--ink-soft); margin-bottom: 0.7rem;
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
}
.ep-day-badge {
  background: var(--day-color); color: #fff; font-weight: 900;
  font-size: 0.72rem; letter-spacing: 0.08em; padding: 0.15rem 0.5rem; border-radius: 4px;
}
.ep-subject-pill {
  display: inline-block; margin-bottom: 0.6rem;
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--day-color); background: var(--day-soft);
  padding: 0.2rem 0.55rem; border-radius: 4px;
}
.ep-hero h1 { font-size: clamp(1.7rem, 4vw, 2.7rem); line-height: 1.08; margin: 0 0 0.9rem; }
.ep-airs {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.85rem; color: var(--ink-muted);
  background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--day-color);
  border-radius: 6px; padding: 0.5rem 0.8rem; display: inline-block;
}
.ep-body-wrap { max-width: 720px; padding-top: 2.25rem; padding-bottom: 3rem; }
.ep-prose { font-size: 1.12rem; line-height: 1.72; color: var(--ink); }
.ep-prose p { margin: 0 0 1.15rem; }
.ep-lead { font-size: 1.3rem; line-height: 1.5; font-weight: 700; color: var(--ink); margin-bottom: 1.3rem; }
.ep-takeaway {
  margin: 1.8rem 0 0; padding: 1.1rem 1.3rem;
  background: var(--day-soft); border-left: 4px solid var(--day-color); border-radius: 6px;
}
.ep-takeaway-label {
  display: block; font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--day-color); margin-bottom: 0.4rem;
}
.ep-takeaway p { margin: 0; font-size: 1.08rem; line-height: 1.6; }
.ep-cta {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin: 2.25rem 0 0; padding-top: 1.75rem; border-top: 1px solid var(--line);
}
.ep-cta-btn {
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 700; font-size: 0.92rem; border-bottom: none;
  padding: 0.7rem 1.15rem; border-radius: 8px;
  border: 1px solid var(--line); color: var(--ink); background: var(--surface);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.ep-cta-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.ep-cta-btn.primary { background: var(--day-color); border-color: var(--day-color); color: #fff; }
.ep-cta-btn.ghost { background: transparent; color: var(--ink-soft); }
.ep-prevnext {
  display: flex; justify-content: space-between; gap: 1rem;
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
}
.ep-nav-link {
  display: flex; flex-direction: column; gap: 0.2rem; max-width: 47%;
  text-decoration: none; border-bottom: none; color: var(--ink);
}
.ep-nav-link.next { text-align: right; align-items: flex-end; }
.ep-nav-link span {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.78rem; font-weight: 700; color: var(--day-color);
}
.ep-nav-link strong { font-size: 0.95rem; line-height: 1.3; font-weight: 700; }
.ep-nav-link:hover strong { color: var(--day-color); }
@media (max-width: 540px) {
  .ep-prose { font-size: 1.05rem; }
  .ep-lead { font-size: 1.18rem; }
  .ep-nav-link { max-width: 48%; }
}

/* =========================================================
   MERCH PAGE — real product photos (2026-05-29)
   Namespaced .shop-* so it never touches the homepage
   .merch-card teaser. Two stacked images per card; the
   second view cross-fades in on hover (desktop) / focus.
   ========================================================= */
.shop-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 1.75rem;
}
.shop-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.shop-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* Photo holder — square-ish window, white to blend with the
   product photos' own white studio background. */
.shop-card .ph {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  border-radius: 0;
}
.shop-card .ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transition: opacity 0.35s ease;
}
.shop-card .ph .ph-b { opacity: 0; }
.shop-card:hover .ph .ph-b,
.shop-card .ph:focus-visible .ph-b { opacity: 1; }
.shop-card:hover .ph .ph-a,
.shop-card .ph:focus-visible .ph-a { opacity: 0; }
/* tiny "2 photos" hint dot */
.shop-card .ph::after {
  content: "";
  position: absolute;
  right: 12px; bottom: 12px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(20,20,20,0.28);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.55);
  transition: background 0.25s ease;
}
.shop-card:hover .ph::after { background: var(--accent); }

.shop-card .shop-body {
  padding: 1.15rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.shop-card .shop-body h3 {
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.08rem;
  margin: 0 0 0.4rem;
  color: var(--ink);
}
.shop-card .shop-body p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
  flex: 1;
}
.shop-card .shop-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}
.shop-card .price {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 1.32rem;
  font-weight: 800;
  color: var(--accent);
}
.shop-card .shop-foot .btn { padding: 0.5rem 1.05rem; font-size: 0.85rem; }

/* On touch / no-hover devices the swap never triggers, so make
   sure the primary photo is always the one shown. */
@media (hover: none) {
  .shop-card .ph .ph-b { display: none; }
  .shop-card .ph::after { display: none; }
}



/* ============================================================
   THE RECALL ROUNDUP  (recalls.html)  — added 2026-06-04
   Namespaced .rr-* ; pulls live NHTSA recall data.
   ============================================================ */
.rr-hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 140% at 50% -10%, #242424 0%, #1a1a1a 55%, #141414 100%);
  color: #f3f4f6; text-align: center;
  padding: 4.5rem 1rem 3.2rem;
  border-bottom: 4px solid var(--accent);
}
.rr-hero-lemons {
  position: absolute; inset: 0; font-size: 3.2rem; line-height: 2.4;
  opacity: 0.06; letter-spacing: 1.2rem; pointer-events: none;
  transform: rotate(-8deg) scale(1.4); user-select: none;
}
.rr-hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.rr-kicker {
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 800; letter-spacing: 0.22em; font-size: 0.72rem;
  color: var(--accent); text-transform: uppercase; margin: 0 0 0.6rem;
}
.rr-kicker::before { content: ""; display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; background: #ff4d3d; margin-right: 0.5em; vertical-align: middle;
  box-shadow: 0 0 0 0 rgba(255,77,61,0.7); animation: rrpulse 1.8s infinite; }
@keyframes rrpulse { 0%{box-shadow:0 0 0 0 rgba(255,77,61,0.6);} 70%{box-shadow:0 0 0 10px rgba(255,77,61,0);} 100%{box-shadow:0 0 0 0 rgba(255,77,61,0);} }
.rr-title {
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 900; font-size: clamp(2.6rem, 8vw, 5rem); line-height: 0.95;
  margin: 0.2rem 0 0.8rem; letter-spacing: -0.02em; text-transform: uppercase;
  color: #f3f4f6;
}
.rr-title span { color: var(--accent); }
.rr-sub { font-size: 1.12rem; color: #cccfd3; max-width: 600px; margin: 0 auto 2rem; line-height: 1.55; }
.rr-stats { display: flex; justify-content: center; gap: 2.4rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.rr-stat { display: flex; flex-direction: column; align-items: center; }
.rr-stat-num {
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 900; font-size: clamp(2rem, 6vw, 3.2rem); color: #fff; line-height: 1;
}
.rr-stat-lbl { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-top: 0.4rem; font-family: "Oswald", system-ui, sans-serif; font-weight: 700; }
.rr-updated { font-size: 0.82rem; color: #8a8a8a; margin: 0; font-family: "Oswald", system-ui, sans-serif; }

.rr-section { padding: 3rem 0; }
.rr-feed-section { background: var(--bg-alt); }
.rr-h2 {
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 900; font-size: clamp(1.6rem, 4vw, 2.4rem); margin: 0 0 0.4rem; letter-spacing: -0.01em;
}
.rr-lead { color: var(--ink-soft); margin: 0 0 1.6rem; max-width: 640px; }
.rr-muted { color: var(--ink-muted); font-style: italic; }

/* Hall of Shame leaderboard */
.rr-board { display: flex; flex-direction: column; gap: 0.5rem; }
.rr-bar-wrap.rr-hidden { display: none; }
.rr-bar-row {
  display: grid; grid-template-columns: 2rem 1fr 5.5rem 4.5rem; align-items: center;
  gap: 0.8rem; width: 100%; text-align: left; cursor: pointer;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.7rem 0.9rem; font: inherit; transition: transform .12s, box-shadow .12s, border-color .12s;
}
.rr-bar-row:hover { transform: translateX(3px); box-shadow: var(--shadow); border-color: var(--accent); }
.rr-bar-rank { font-weight: 900; color: var(--ink-muted); font-family: "Oswald", system-ui, sans-serif; text-align: center; }
.rr-bar-name { font-weight: 700; font-family: "Oswald", system-ui, sans-serif; display: flex; flex-direction: column; gap: 0.1rem; }
.rr-bar-parent { font-size: 0.7rem; color: var(--ink-muted); font-weight: 500; letter-spacing: 0.02em; }
.rr-bar-track { grid-column: 3 / 4; }
.rr-bar-track { background: var(--bg-alt); border-radius: 20px; height: 12px; overflow: hidden; }
.rr-bar-fill { display: block; height: 100%; border-radius: 20px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hot)); }
.rr-bar-count { text-align: right; font-weight: 900; font-family: "Oswald", system-ui, sans-serif; font-size: 1.15rem; }
.rr-bar-count small { display: block; font-size: 0.6rem; font-weight: 600; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.rr-crown { margin-left: 0.4rem; }
.rr-tag-villain { display: inline-block; font-size: 0.62rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.06em; background: var(--accent-hot); color: #fff; padding: 0.05rem 0.4rem;
  border-radius: 20px; margin-left: 0.45rem; vertical-align: middle; }
.rr-bar-row.rr-villain { border-color: var(--accent-hot); background: linear-gradient(90deg, #fff, #f7fbfe); }
.rr-bar-row.rr-villain .rr-bar-fill { background: linear-gradient(90deg, var(--accent-hot), var(--accent-deep)); }
.rr-showall {
  margin-top: 1rem; background: none; border: 1px solid var(--line); color: var(--ink-soft);
  font: inherit; font-weight: 700; padding: 0.55rem 1.1rem; border-radius: 20px; cursor: pointer;
  font-family: "Oswald", system-ui, sans-serif;
}
.rr-showall:hover { border-color: var(--accent); color: var(--accent); }

/* Controls */
.rr-controls { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-bottom: 1rem; }
.rr-search {
  flex: 1 1 260px; padding: 0.7rem 1rem; border: 1px solid var(--line); border-radius: 24px;
  font: inherit; background: var(--surface); color: var(--ink);
}
.rr-search:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.rr-sort { font-family: "Oswald", system-ui, sans-serif; font-size: 0.9rem; color: var(--ink-soft); display: flex; align-items: center; gap: 0.4rem; }
.rr-sort select { padding: 0.5rem 0.6rem; border: 1px solid var(--line); border-radius: 8px; font: inherit; background: var(--surface); color: var(--ink); }
.rr-chips { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1.6rem; }
.rr-chip {
  font-family: "Oswald", system-ui, sans-serif; font-size: 0.8rem; font-weight: 600;
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px;
  padding: 0.4rem 0.8rem; cursor: pointer; color: var(--ink-soft); transition: all .12s;
}
.rr-chip span { font-weight: 800; color: var(--ink-muted); }
.rr-chip:hover { border-color: var(--accent); color: var(--accent); }
.rr-chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.rr-chip.active span { color: var(--accent); }
.rr-chip-villain { border-color: var(--accent-hot); color: var(--accent-hot); }
.rr-chip-villain.active { background: var(--accent-hot); border-color: var(--accent-hot); color: #fff; }
.rr-chip-villain.active span { color: #ffe; }

/* Feed cards */
.rr-count { font-family: "Oswald", system-ui, sans-serif; font-weight: 700; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.75rem; margin: 0 0 1rem; }
.rr-results { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.1rem; }
.rr-results > .rr-count, .rr-results > .rr-muted { grid-column: 1 / -1; }
.rr-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.2rem; box-shadow: var(--shadow); display: flex; flex-direction: column;
  border-top: 4px solid var(--accent);
}
.rr-card-villain { border-top-color: var(--accent-hot); box-shadow: 0 4px 18px rgba(226,59,59,0.14); }
.rr-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.6rem; }
.rr-card-make { font-family: "Oswald", system-ui, sans-serif; font-weight: 900; font-size: 1.18rem; line-height: 1.1; }
.rr-card-yr { display: block; font-size: 0.72rem; font-weight: 600; color: var(--ink-muted); letter-spacing: 0.04em; margin-top: 0.15rem; }
.rr-card-meta { text-align: right; flex-shrink: 0; }
.rr-card-date { display: block; font-size: 0.74rem; color: var(--ink-muted); font-family: "Oswald", system-ui, sans-serif; }
.rr-units { display: inline-block; margin-top: 0.3rem; font-size: 0.68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.04em; background: var(--accent-soft); color: var(--accent-deep); padding: 0.15rem 0.5rem; border-radius: 20px; font-family: "Oswald", system-ui, sans-serif; }
.rr-comp { font-family: "Oswald", system-ui, sans-serif; font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--ink-soft); background: var(--bg-alt); display: inline-block;
  padding: 0.25rem 0.55rem; border-radius: 5px; margin-bottom: 0.8rem; align-self: flex-start; }
.rr-verdict { background: linear-gradient(135deg, var(--accent-soft), #fafcfe); border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 0.8rem 1rem; margin-bottom: 0.9rem; }
.rr-card-villain .rr-verdict { background: linear-gradient(135deg, #fdecec, #f7fbfe); border-left-color: var(--accent-hot); }
.rr-verdict-lbl { display: block; font-family: "Oswald", system-ui, sans-serif; font-weight: 800; font-size: 0.68rem;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent-deep); margin-bottom: 0.25rem; }
.rr-verdict p { margin: 0; font-size: 1.02rem; line-height: 1.45; font-style: italic; }
.rr-official { margin-bottom: 0.8rem; }
.rr-official summary { cursor: pointer; font-family: "Oswald", system-ui, sans-serif; font-size: 0.82rem; font-weight: 700; color: var(--ink-soft); }
.rr-official summary:hover { color: var(--accent); }
.rr-official[open] summary { margin-bottom: 0.5rem; }
.rr-off-p { font-size: 0.86rem; color: var(--ink-soft); line-height: 1.5; margin: 0.4rem 0; }
.rr-card-foot { margin-top: auto; padding-top: 0.8rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; }
.rr-camp { font-family: "Oswald", system-ui, sans-serif; font-size: 0.7rem; color: var(--ink-muted); letter-spacing: 0.03em; }
.rr-camp-link { font-family: "Oswald", system-ui, sans-serif; font-size: 0.78rem; font-weight: 700; border-bottom: none; }
.rr-source-note { margin-top: 1.6rem; font-size: 0.76rem; color: var(--ink-muted); font-family: "Oswald", system-ui, sans-serif; }

/* Disclaimer */
.rr-disclaimer { background: var(--ink); color: #c4c7cb; padding: 2rem 0; }
.rr-disclaimer p { margin: 0; font-size: 0.86rem; line-height: 1.6; font-family: "Oswald", system-ui, sans-serif; max-width: 820px; }
.rr-disclaimer strong { color: #fff; }
.rr-disclaimer a { color: var(--accent); }

@media (max-width: 600px) {
  .rr-bar-row { grid-template-columns: 1.6rem 1fr 3.4rem; }
  .rr-bar-track { display: none; }
  .rr-stats { gap: 1.4rem; }
  .rr-results { grid-template-columns: 1fr; }
}

/* ============================================================
   YIKES  (yikes.html)  — added 2026-06-05
   Namespaced .yk-* ; owner-reported Alliance problems, tallied
   by model. Self-reported + unverified — a tally, not a rating.
   ============================================================ */
.yk-hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 140% at 50% -10%, #242424 0%, #1a1a1a 55%, #141414 100%);
  color: #f3f4f6; text-align: center;
  padding: 4.5rem 1rem 3.2rem;
  border-bottom: 4px solid var(--accent);
}
.yk-hero-bg {
  position: absolute; inset: 0; font-size: 3rem; line-height: 2.6;
  opacity: 0.05; letter-spacing: 1.4rem; pointer-events: none;
  transform: rotate(-8deg) scale(1.4); user-select: none;
}
.yk-hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.yk-kicker {
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 800; letter-spacing: 0.22em; font-size: 0.72rem;
  color: var(--accent); text-transform: uppercase; margin: 0 0 0.6rem;
}
.yk-kicker::before { content: ""; display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; background: #ff4d3d; margin-right: 0.5em; vertical-align: middle;
  box-shadow: 0 0 0 0 rgba(255,77,61,0.7); animation: ykpulse 1.8s infinite; }
@keyframes ykpulse { 0%{box-shadow:0 0 0 0 rgba(255,77,61,0.6);} 70%{box-shadow:0 0 0 10px rgba(255,77,61,0);} 100%{box-shadow:0 0 0 0 rgba(255,77,61,0);} }
.yk-title {
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 900; font-size: clamp(3rem, 10vw, 5.6rem); line-height: 0.95;
  margin: 0.2rem 0 0.8rem; letter-spacing: -0.02em; text-transform: uppercase; color: #f3f4f6;
}
.yk-sub { font-size: 1.1rem; color: #cccfd3; max-width: 620px; margin: 0 auto 2rem; line-height: 1.55; }
.yk-stats { display: flex; justify-content: center; gap: 2.4rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.yk-stat { display: flex; flex-direction: column; align-items: center; }
.yk-stat-num {
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 900; font-size: clamp(2rem, 6vw, 3.2rem); color: #fff; line-height: 1;
}
.yk-stat-lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-top: 0.4rem; font-family: "Oswald", system-ui, sans-serif; font-weight: 700; }
.yk-updated { font-size: 0.82rem; color: #8a8a8a; margin: 0; font-family: "Oswald", system-ui, sans-serif; }

.yk-section { padding: 3rem 0; }
.yk-feed-section { background: var(--bg-alt); }
.yk-h2 {
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 900; font-size: clamp(1.6rem, 4vw, 2.4rem); margin: 0 0 0.4rem; letter-spacing: -0.01em;
}
.yk-lead { color: var(--ink-soft); margin: 0 0 1.6rem; max-width: 680px; }
.yk-muted { color: var(--ink-muted); font-style: italic; }

/* Leaderboard + disclaimer side-by-side */
.yk-board-wrap { display: grid; grid-template-columns: 1.6fr 1fr; gap: 1.6rem; align-items: start; }
.yk-board { display: flex; flex-direction: column; gap: 0.5rem; }
.yk-bar-wrap.yk-hidden { display: none; }
.yk-bar-row {
  display: grid; grid-template-columns: 2rem 1fr 5.5rem 5rem; align-items: center;
  gap: 0.8rem; width: 100%; text-align: left; cursor: pointer;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.7rem 0.9rem; font: inherit; transition: transform .12s, box-shadow .12s, border-color .12s;
}
.yk-bar-row:hover { transform: translateX(3px); box-shadow: var(--shadow); border-color: var(--accent); }
.yk-bar-rank { font-weight: 900; color: var(--ink-muted); font-family: "Oswald", system-ui, sans-serif; text-align: center; }
.yk-bar-name { font-weight: 700; font-family: "Oswald", system-ui, sans-serif; display: flex; flex-direction: column; gap: 0.1rem; }
.yk-bar-sub { font-size: 0.68rem; color: var(--ink-muted); font-weight: 500; letter-spacing: 0.02em; }
.yk-bar-track { grid-column: 3 / 4; background: var(--bg-alt); border-radius: 20px; height: 12px; overflow: hidden; }
.yk-bar-fill { display: block; height: 100%; border-radius: 20px; background: linear-gradient(90deg, var(--accent), var(--accent-hot)); }
.yk-bar-count { text-align: right; font-weight: 900; font-family: "Oswald", system-ui, sans-serif; font-size: 1.15rem; }
.yk-bar-count small { display: block; font-size: 0.58rem; font-weight: 600; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.yk-crown { margin-left: 0.4rem; }
.yk-showall {
  margin-top: 1rem; background: none; border: 1px solid var(--line); color: var(--ink-soft);
  font: inherit; font-weight: 700; padding: 0.55rem 1.1rem; border-radius: 20px; cursor: pointer;
  font-family: "Oswald", system-ui, sans-serif;
}
.yk-showall:hover { border-color: var(--accent); color: var(--accent); }
.yk-board-note { margin: 0.9rem 0 0; font-size: 0.78rem; color: var(--ink-muted); font-style: italic; }

.yk-disclaimer-card {
  background: var(--ink); color: #d6d8db; border-radius: var(--radius); padding: 1.3rem 1.4rem;
  border-top: 4px solid var(--accent-hot); position: sticky; top: 1rem;
}
.yk-disclaimer-card h3 {
  font-family: "Oswald", system-ui, sans-serif; color: #fff; margin: 0 0 0.7rem;
  font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em;
}
.yk-disclaimer-card p { margin: 0 0 0.7rem; font-size: 0.86rem; line-height: 1.55; font-family: "Oswald", system-ui, sans-serif; }
.yk-disclaimer-card strong { color: #fff; }
.yk-disclaimer-foot { color: #9a9a9a !important; font-size: 0.78rem !important; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 0.7rem; margin-bottom: 0 !important; }

/* Controls */
.yk-controls { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-bottom: 1rem; }
.yk-search {
  flex: 1 1 240px; padding: 0.7rem 1rem; border: 1px solid var(--line); border-radius: 24px;
  font: inherit; background: var(--surface); color: var(--ink);
}
.yk-search:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.yk-control { font-family: "Oswald", system-ui, sans-serif; font-size: 0.9rem; color: var(--ink-soft); display: flex; align-items: center; gap: 0.4rem; }
.yk-control select { padding: 0.5rem 0.6rem; border: 1px solid var(--line); border-radius: 8px; font: inherit; background: var(--surface); color: var(--ink); max-width: 60vw; }
.yk-chips { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1.6rem; }
.yk-chip {
  font-family: "Oswald", system-ui, sans-serif; font-size: 0.8rem; font-weight: 600;
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px;
  padding: 0.4rem 0.8rem; cursor: pointer; color: var(--ink-soft); transition: all .12s;
}
.yk-chip span { font-weight: 800; color: var(--ink-muted); }
.yk-chip:hover { border-color: var(--accent); color: var(--accent); }
.yk-chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.yk-chip.active span { color: var(--accent); }

/* Feed */
.yk-count { font-family: "Oswald", system-ui, sans-serif; font-weight: 700; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.75rem; margin: 0 0 1rem; }
.yk-clear { background: none; border: none; color: var(--accent); font: inherit; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; cursor: pointer; border-bottom: 1px solid var(--accent); padding: 0; }
.yk-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.1rem; }
.yk-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.2rem; box-shadow: var(--shadow); display: flex; flex-direction: column;
  border-top: 4px solid var(--accent);
}
.yk-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.7rem; }
.yk-card-model { font-family: "Oswald", system-ui, sans-serif; font-weight: 900; font-size: 1.12rem; line-height: 1.15; }
.yk-card-yr { display: block; font-size: 0.72rem; font-weight: 600; color: var(--ink-muted); letter-spacing: 0.04em; margin-top: 0.15rem; }
.yk-card-summary { margin: 0 0 1rem; font-size: 0.96rem; line-height: 1.5; color: var(--ink); }
.yk-card-foot { margin-top: auto; padding-top: 0.7rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; }
.yk-card-added { font-family: "Oswald", system-ui, sans-serif; font-size: 0.7rem; color: var(--ink-muted); letter-spacing: 0.03em; }
.yk-card-tag { font-family: "Oswald", system-ui, sans-serif; font-size: 0.62rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-muted); background: var(--bg-alt); padding: 0.15rem 0.5rem; border-radius: 20px; }
.yk-source-note { margin-top: 1.6rem; font-size: 0.76rem; color: var(--ink-muted); font-family: "Oswald", system-ui, sans-serif; }

/* Category badge colors */
.yk-cat-badge { flex-shrink: 0; font-family: "Oswald", system-ui, sans-serif; font-size: 0.64rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.05em; padding: 0.28rem 0.55rem; border-radius: 20px; white-space: nowrap;
  background: var(--bg-alt); color: var(--ink-soft); border: 1px solid var(--line); }
.yk-cat-slideout       { background:#e6f7fd; color:#0089b3; border-color:#bfe8fa; }
.yk-cat-electrical     { background:#e7f0ff; color:#1f4ea8; border-color:#cfe0ff; }
.yk-cat-plumbing       { background:#e3f6f4; color:#16726a; border-color:#c4ece8; }
.yk-cat-framestructure { background:#fde3e3; color:#b91c1c; border-color:#fbd0d0; }
.yk-cat-appliances     { background:#f1e9fb; color:#5e3aa8; border-color:#e0d2f5; }
.yk-cat-delamination   { background:#eef9fe; color:#0089b3; border-color:#cfeefb; }
.yk-cat-brakesaxle     { background:#fde0e0; color:#9c1b1b; border-color:#f7c6c6; }
.yk-cat-waterintrusion { background:#e2f0fb; color:#155e96; border-color:#c5e2f6; }
.yk-cat-other          { background:#eceef0; color:#565656; border-color:#dcdee1; }

/* Submission form */
.yk-submit-section { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%); border-top: 1px solid var(--line); }
.yk-submit-inner { max-width: 680px; }
.yk-form { margin-top: 1.4rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
.yk-field { margin-bottom: 1rem; }
.yk-field-row { display: grid; grid-template-columns: 1fr 1.4fr; gap: 1rem; }
.yk-field label { display: block; font-family: "Oswald", system-ui, sans-serif; font-weight: 700; font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 0.35rem; }
.yk-req { color: var(--accent-hot); }
.yk-field input, .yk-field select, .yk-field textarea {
  width: 100%; padding: 0.65rem 0.8rem; border: 1px solid var(--line); border-radius: 8px;
  font: inherit; background: var(--bg); color: var(--ink); box-sizing: border-box;
}
.yk-field textarea { resize: vertical; }
.yk-field input:focus, .yk-field select:focus, .yk-field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); background: var(--surface); }
.yk-hint { margin: 0.35rem 0 0; font-size: 0.74rem; color: var(--ink-muted); }
.yk-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.yk-check { display: flex; gap: 0.55rem; align-items: flex-start; font-family: "Oswald", system-ui, sans-serif; font-size: 0.84rem; color: var(--ink-soft); margin: 0.4rem 0 1.1rem; line-height: 1.4; cursor: pointer; }
.yk-check input { margin-top: 0.15rem; flex-shrink: 0; }
.yk-form-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.yk-form-status { font-family: "Oswald", system-ui, sans-serif; font-size: 0.84rem; }
.yk-form-status.ok { color: #16726a; font-weight: 700; }
.yk-form-status.err { color: var(--accent-hot); font-weight: 600; }

/* Bottom disclaimer */
.yk-bottom-disclaimer { background: var(--ink); color: #c4c7cb; padding: 2rem 0; }
.yk-bottom-disclaimer p { margin: 0; font-size: 0.86rem; line-height: 1.6; font-family: "Oswald", system-ui, sans-serif; max-width: 880px; }
.yk-bottom-disclaimer strong { color: #fff; }
.yk-bottom-disclaimer a { color: var(--accent); }

@media (max-width: 820px) {
  .yk-board-wrap { grid-template-columns: 1fr; }
  .yk-disclaimer-card { position: static; }
}
@media (max-width: 600px) {
  .yk-bar-row { grid-template-columns: 1.6rem 1fr 4rem; }
  .yk-bar-track { display: none; }
  .yk-stats { gap: 1.4rem; }
  .yk-cards { grid-template-columns: 1fr; }
  .yk-field-row { grid-template-columns: 1fr; }
}

/* ========================================================================
   WEBSITE CLEANUP — 2026-06-05b
   Hero email badge · interactive "browse by series" cards · Daily "Drop" PDF
   ======================================================================== */

/* index hero: clickable email badge stacked above the Alliance photo */
.hero-art { flex-direction: column; align-items: center; justify-content: flex-end; gap: 0.85rem; }
.hero-email {
  display: inline-flex; align-items: center; gap: 0.5rem; align-self: center;
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 700; font-size: 0.92rem; color: var(--ink);
  background: var(--surface, #fff); border: 1px solid var(--line);
  border-radius: 999px; padding: 0.5rem 0.95rem;
  text-decoration: none; border-bottom: none;
  box-shadow: 0 2px 10px rgba(20,20,20, 0.08);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease, color .12s ease;
}
.hero-email:hover { transform: translateY(-1px); color: var(--accent); border-color: var(--accent); box-shadow: 0 5px 16px rgba(20,20,20, 0.13); }
.hero-email .hero-email-icon { display: inline-flex; color: var(--accent); }
.hero-email .hero-email-icon svg { display: block; }

/* videos: "Browse by series" cards are now real links into the YouTube channel */
a.card.series-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; border-bottom: none; }
.series-card h3 { color: var(--ink); }
.series-card p { color: var(--ink-soft); flex: 1 1 auto; }
.series-cta { margin-top: 0.85rem; font-family: "Oswald", system-ui, sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--accent); }
.series-card:hover .series-cta { text-decoration: underline; }

/* The Daily — guide cards: "Read it →" + "📄 PDF" actions row */
.ep-actions { display: flex; align-items: center; gap: 0.55rem; margin-top: 0.5rem; flex-wrap: wrap; }
.ep-actions .ep-read { display: inline; margin-top: 0; text-decoration: none; border-bottom: none; }
.ep-pdf {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.02em;
  color: var(--ink-soft); border: 1px solid var(--line); border-radius: 5px;
  padding: 0.12rem 0.45rem; text-decoration: none; border-bottom: none;
}
.ep-pdf:hover { color: var(--day-color); border-color: var(--day-color); }

/* The Daily — per-page (NN-slug.html): PDF download affordances */
.ep-pdf-link { color: var(--day-color); font-weight: 800; border-bottom: none; }
.ep-pdf-link:hover { text-decoration: underline; }
.ep-cta-btn.primary-pdf { background: var(--ink); border-color: var(--ink); color: #fff; }
.ep-cta-btn.primary-pdf:hover { filter: brightness(1.18); }

/* recalls — lookback-window scope line in the dark hero */
.rr-scope { color: rgba(255, 255, 255, 0.78); }

/* ===== Nav "More" dropdown (2026-06-08) ===== */
.nav-more{position:relative;display:inline-block}
.nav-more-btn{background:none;border:none;font:inherit;color:var(--band-soft);cursor:pointer;padding:0.2rem 0.1rem;letter-spacing:inherit}
.nav-more-btn:hover,.nav-more-active .nav-more-btn{color:var(--accent)}
.nav-more-menu{position:absolute;right:0;top:100%;margin-top:0.4rem;background:var(--surface);border:1px solid var(--line);border-radius:10px;box-shadow:0 10px 30px rgba(0,0,0,.18);padding:0.4rem;min-width:170px;display:none;flex-direction:column;z-index:60}
.nav-more:hover .nav-more-menu,.nav-more:focus-within .nav-more-menu{display:flex}
.nav-more-menu a{padding:0.6rem 0.7rem;border-radius:7px;white-space:nowrap;color:var(--ink)}
.nav-more-menu a:hover{background:var(--bg-alt);color:var(--accent)}
@media (max-width:720px){
  .nav-more{display:block;width:100%}
  .nav-more-btn{display:none}
  .nav-more-menu{position:static;display:flex;border:none;box-shadow:none;padding:0;margin:0;min-width:0;background:none}
  .nav-more-menu a{padding:0.85rem 0;border-bottom:1px solid var(--band-line);border-radius:0;color:var(--band-soft)}
}

/* ===== Round 2: a11y + dropdown toggle (2026-06-08b) ===== */
.skip-link{position:absolute;left:-9999px;top:0;z-index:200;background:var(--accent);color:#fff;padding:0.7rem 1rem;border-radius:0 0 8px 0;font-weight:700;text-decoration:none}
.skip-link:focus{left:0}
#main{scroll-margin-top:80px}
.nav-more.open .nav-more-menu{display:flex}
.nav-more-btn{display:inline-flex;align-items:center;gap:0.25rem}
@media (max-width:720px){ .nav-more.open .nav-more-menu,.nav-more .nav-more-menu{display:flex} }

/* Homepage hero tap-tiles (2026-06-28) — premium button cards, mobile-first */
.hero-illustrated { padding: 3.2rem 0 3.2rem; }
.hero-tagline { font-size: 1.05rem; color: var(--band-soft); font-weight: 500; margin: 0.4rem 0 0; }
.hero-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.8rem; }
.hero-tile { position: relative; display: flex; flex-direction: column; gap: 0.2rem;
  padding: 1.3rem 1.25rem 1.35rem; border-radius: 16px;
  background: #202023; border: 1px solid #3a3a3d; box-shadow: 0 6px 20px rgba(0,0,0,0.28);
  text-decoration: none; cursor: pointer;
  transition: transform .14s ease, border-color .15s ease, box-shadow .15s ease, background .15s ease; }
.hero-tile:hover { transform: translateY(-4px); border-color: var(--accent);
  box-shadow: 0 14px 32px rgba(0,176,230,0.20); }
.hero-tile:active { transform: translateY(-1px); }
.ht-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.65rem; }
.ht-ic { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px;
  border-radius: 13px; background: rgba(0,176,230,0.14); font-size: 1.7rem; line-height: 1; }
.ht-go { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px;
  border-radius: 50%; background: rgba(255,255,255,0.07); color: var(--accent);
  font-size: 1.15rem; font-weight: 700; transition: background .15s ease, color .15s ease, transform .15s ease; }
.hero-tile:hover .ht-go { background: var(--accent); color: #06232c; transform: translateX(3px); }
.ht-tl { font-family: "Oswald", system-ui, sans-serif; font-weight: 700; text-transform: uppercase;
  letter-spacing: .02em; font-size: 1.22rem; color: #fff; line-height: 1.05; }
.ht-ds { font-size: 0.85rem; color: var(--band-soft); }
/* warning-themed tiles (recalls / yikes) get a red icon chip */
.hero-tile.t-warn .ht-ic { background: rgba(226,59,59,0.16); }
.hero-tile.t-warn:hover { border-color: #e2563b; box-shadow: 0 14px 32px rgba(226,59,59,0.18); }
.hero-tile.t-warn .ht-go { color: #ff6a4d; }
.hero-tile.t-warn:hover .ht-go { background: #e2563b; color: #fff; }
/* featured tile (Vote) — filled blue */
.hero-tile.feat { background: linear-gradient(150deg, #00b8ef 0%, #0094c6 100%); border-color: transparent;
  box-shadow: 0 10px 26px rgba(0,176,230,0.32); }
.hero-tile.feat:hover { box-shadow: 0 16px 36px rgba(0,176,230,0.42); border-color: transparent; }
.hero-tile.feat .ht-ic { background: rgba(255,255,255,0.22); }
.hero-tile.feat .ht-tl { color: #ffffff; }
.hero-tile.feat .ht-ds { color: rgba(255,255,255,0.92); }
.hero-tile.feat .ht-go { background: rgba(255,255,255,0.25); color: #ffffff; }
.hero-tile.feat:hover .ht-go { background: #fff; color: #0094c6; }
@media (max-width: 720px) {
  .hero-tiles { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; margin-top: 1.5rem; }
  .hero-tile { padding: 1.05rem 1rem 1.1rem; border-radius: 14px; }
  .ht-ic { width: 44px; height: 44px; font-size: 1.5rem; }
  .ht-go { width: 28px; height: 28px; font-size: 1rem; }
  .ht-tl { font-size: 1.08rem; }
  .ht-ds { font-size: 0.8rem; }
}

/* hero tile custom SVG icons */
.ht-ic { color: var(--accent); }
.ht-ic svg { width: 26px; height: 26px; display: block; }
.hero-tile.t-warn .ht-ic { color: #ff6a4d; }
.hero-tile.feat .ht-ic { color: #ffffff; }
@media (max-width: 720px) { .ht-ic svg { width: 23px; height: 23px; } }

/* Hero jingle pill (between headline + tiles) */
.hero-jingle { display: inline-flex; align-items: center; gap: 0.6rem; margin: 1.2rem 0 0;
  padding: 0.45rem 1.1rem 0.45rem 0.45rem; border-radius: 999px;
  background: rgba(255,255,255,0.06); border: 1.5px solid var(--band-line); color: #fff;
  font-family: "Oswald", system-ui, sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: .04em; font-size: 0.9rem; cursor: pointer;
  transition: border-color .15s ease, background .15s ease, transform .12s ease; }
.hero-jingle:hover { border-color: var(--accent); background: rgba(0,176,230,0.12); transform: translateY(-1px); }
.hero-jingle .hj-ic { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px;
  border-radius: 50%; background: var(--accent); color: #06232c; font-size: 0.78rem; line-height: 1; flex-shrink: 0; }
/* Hero action row — jingle + free buyer's guide side by side */
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; align-items: center; margin: 1.2rem 0 0; }
.hero-actions .hero-jingle { margin: 0; text-decoration: none; }
.hero-guide.hero-jingle .hj-ic { background: #ffd14a; color: #2b2b2b; font-size: 0.9rem; }
.hero-guide.hero-jingle:hover { border-color: #ffd14a; background: rgba(255,209,74,0.14); }
