/* ============================================================
   Suno Watermark — Spotify-style design system
   Pure black background, Spotify green, Figtree (Circular alt)
   ============================================================ */

:root {
  --black: #000000;
  --bg: #121212;
  --bg-elev: #181818;
  --bg-hover: #282828;
  --bg-card: #1a1a1a;
  --green: #1ED760;
  --green-hover: #1FDF64;
  --green-deep: #169C46;
  --green-text: #1ED760;
  --white: #FFFFFF;
  --text: #FFFFFF;
  --text-soft: #B3B3B3;
  --text-mute: #6A6A6A;
  --rule: rgba(255,255,255,0.1);
  --rule-soft: rgba(255,255,255,0.06);
  --accent-soft: rgba(30,215,96,0.12);
  --pos: #1ED760;
  --neg: #E22134;
  --gold: #FFC862;
  --display: "Figtree", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans: "Figtree", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "JetBrains Mono", "SF Mono", Menlo, monospace;
  --maxw: 1180px;
  --readw: 720px;
  --radius: 8px;
  --radius-card: 8px;
  --radius-pill: 500px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern", "liga", "calt";
}

::selection { background: var(--green); color: var(--black); }

a { color: var(--white); text-decoration: none; border-bottom: 1px solid transparent; transition: color 150ms, border-color 150ms; }
a:hover { color: var(--green); border-bottom-color: var(--green); }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 900; color: var(--text); letter-spacing: -0.04em; line-height: 1.1; }

img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   Header / nav
   ============================================================ */

.site-header { background: var(--black); border-bottom: 0; position: sticky; top: 0; z-index: 50; }
.disclosure-bar { background: linear-gradient(90deg, #1a3d2a 0%, #0d2516 100%); color: var(--white); padding: 10px 24px; font-size: 13px; display: flex; align-items: center; justify-content: center; gap: 14px; }
.disclosure-bar p { margin: 0; }
.disclosure-bar strong { font-weight: 700; color: var(--green); }
.disclosure-close { background: none; border: 0; color: var(--white); cursor: pointer; opacity: 0.5; font-size: 18px; line-height: 1; padding: 0 6px; border-radius: 50%; }
.disclosure-close:hover { opacity: 1; background: rgba(255,255,255,0.1); }

.main-nav { max-width: var(--maxw); margin: 0 auto; padding: 16px 24px; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }

.wordmark { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; border: 0; color: var(--white); }
.wordmark:hover { color: var(--white); border: 0; }
.wordmark-text { font-family: var(--display); font-weight: 900; font-size: 22px; letter-spacing: -0.04em; }
.wordmark-sub { display: none; }

.nav-links { display: flex; gap: 24px; font-size: 14px; font-weight: 700; }
.nav-links a { color: var(--text-soft); border: 0; padding: 8px 0; }
.nav-links a:hover { color: var(--white); border: 0; }

.nav-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--green); color: var(--black); padding: 10px 24px; border-radius: var(--radius-pill); font-weight: 700; font-size: 14px; border: 0; transition: background 150ms, transform 150ms; }
.nav-cta:hover { background: var(--green-hover); color: var(--black); border: 0; transform: scale(1.04); }

/* ============================================================
   Generic content blocks
   ============================================================ */

.eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: var(--radius-pill); font-weight: 700; font-size: 15px; letter-spacing: -0.01em; border: 0; cursor: pointer; transition: background 150ms, transform 150ms, border-color 150ms; text-decoration: none; }
.btn-primary { background: var(--green); color: var(--black); border: 0; }
.btn-primary:hover { background: var(--green-hover); color: var(--black); border: 0; transform: scale(1.04); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.7); }
.btn-ghost:hover { background: transparent; color: var(--white); border: 1px solid var(--white); transform: scale(1.04); }
.btn-small { padding: 10px 22px; font-size: 14px; }

/* ============================================================
   Masthead (Spotify hero with gradient)
   ============================================================ */

.masthead {
  padding: 88px 24px 64px;
  background: linear-gradient(180deg, #1f3b2c 0%, #0c1612 60%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.masthead::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 400px at 20% 0%, rgba(30,215,96,0.25), transparent 60%);
  pointer-events: none;
}
.masthead-inner { max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 1; }
.masthead-meta { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-soft); display: flex; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; font-weight: 700; }
.masthead-meta strong { color: var(--green); font-weight: 700; }
.masthead h1 {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 1;
  margin: 0 0 24px;
  letter-spacing: -0.06em;
  color: var(--white);
}
.masthead h1 em { font-style: normal; color: var(--green); font-weight: 900; }
.masthead .lede { font-size: clamp(18px, 1.6vw, 21px); color: var(--text-soft); line-height: 1.5; max-width: 720px; margin: 0 0 32px; font-weight: 400; }
.masthead .byline { font-size: 13px; color: var(--text-mute); margin-bottom: 32px; font-weight: 500; }
.masthead .byline span { color: var(--text-soft); font-weight: 700; }

.contents-card { background: var(--bg-elev); border: 0; border-radius: var(--radius-card); padding: 24px 28px; margin-top: 38px; max-width: 540px; transition: background 150ms; }
.contents-card:hover { background: var(--bg-hover); }
.contents-card-title { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 16px; font-weight: 700; }
.contents-card ol { list-style: none; padding: 0; margin: 0; counter-reset: contents; }
.contents-card li { counter-increment: contents; padding-left: 38px; position: relative; padding-bottom: 10px; font-size: 15px; font-weight: 500; }
.contents-card li::before { content: counter(contents, decimal-leading-zero); position: absolute; left: 0; font-variant-numeric: tabular-nums; color: var(--green); font-weight: 700; font-size: 13px; top: 2px; }
.contents-card a { color: var(--white); border: 0; }
.contents-card a:hover { color: var(--green); border: 0; }

/* ============================================================
   Verdict block (No. 1 pick)
   ============================================================ */

.verdict-block {
  padding: 80px 24px;
  background: linear-gradient(135deg, #122e1f 0%, #0a1a12 100%);
  border-bottom: 0;
  position: relative;
  overflow: hidden;
}
.verdict-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.verdict-rank { font-family: var(--display); font-weight: 900; font-size: 144px; line-height: 1; color: var(--green); margin-bottom: 8px; letter-spacing: -0.07em; }
.verdict-rank-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 20px; font-weight: 700; }
.verdict-name { font-size: 56px; font-weight: 900; margin: 0 0 8px; letter-spacing: -0.05em; color: var(--white); }
.verdict-tagline { font-size: 15px; color: var(--text-soft); margin-bottom: 28px; }
.verdict-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; padding: 28px; background: rgba(0,0,0,0.4); border-radius: var(--radius-card); }
.verdict-stat strong { display: block; font-family: var(--display); font-size: 32px; font-weight: 900; color: var(--green); line-height: 1; letter-spacing: -0.04em; margin-bottom: 6px; }
.verdict-stat span { font-size: 11px; letter-spacing: 0.06em; color: var(--text-soft); text-transform: uppercase; font-weight: 700; line-height: 1.3; display: block; }
.verdict-quote { font-style: normal; font-size: 20px; line-height: 1.5; color: var(--white); padding: 0; margin: 0 0 28px; font-weight: 500; border: 0; }
.verdict-quote::before { content: "“"; color: var(--green); font-size: 48px; line-height: 0.4; vertical-align: -16px; margin-right: 4px; font-family: var(--display); }
.verdict-cta-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; font-size: 13px; color: var(--text-soft); }

/* ============================================================
   Piece (longform homepage sections)
   ============================================================ */

.piece { padding: 80px 24px; background: var(--bg); }
.piece-inner { max-width: var(--readw); margin: 0 auto; }
.piece h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 900; margin: 56px 0 20px; letter-spacing: -0.04em; line-height: 1.05; color: var(--white); }
.piece h2:first-child { margin-top: 0; }
.piece h2 .num { display: block; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); font-weight: 700; margin-bottom: 12px; }
.piece h3 { font-size: 24px; font-weight: 900; margin: 36px 0 14px; letter-spacing: -0.03em; }
.piece p { font-size: 17px; line-height: 1.6; margin: 0 0 18px; color: var(--text-soft); }
.piece p.dropcap::first-letter { font-family: var(--display); font-size: 72px; line-height: 0.8; float: left; padding: 6px 14px 0 0; font-weight: 900; color: var(--green); }
.piece strong { color: var(--white); font-weight: 700; }
.piece em { font-style: normal; color: var(--green); font-weight: 700; }
.piece a { color: var(--green); border-bottom: 1px solid rgba(30,215,96,0.4); }
.piece a:hover { border-bottom-color: var(--green); color: var(--green-hover); }
.piece ul, .piece ol { padding-left: 22px; margin: 0 0 22px; font-size: 17px; line-height: 1.6; color: var(--text-soft); }
.piece li { margin-bottom: 8px; }
.piece li::marker { color: var(--green); }
.piece blockquote { border-left: 4px solid var(--green); padding: 6px 0 6px 22px; margin: 28px 0; color: var(--white); font-size: 20px; line-height: 1.5; font-weight: 500; }
.piece hr { border: 0; border-top: 1px solid var(--rule); margin: 48px 0; }

/* ============================================================
   Benchmark table — Spotify card style
   ============================================================ */

.benchmark { background: var(--bg); padding: 80px 24px; border: 0; }
.benchmark-inner { max-width: var(--maxw); margin: 0 auto; }
.benchmark h2 { font-size: clamp(32px, 4vw, 48px); margin: 0 0 12px; font-weight: 900; letter-spacing: -0.04em; color: var(--white); }
.benchmark-sub { font-size: 17px; color: var(--text-soft); margin-bottom: 36px; max-width: 720px; }
.benchmark-table-wrap { background: var(--bg-elev); border-radius: 12px; overflow: hidden; overflow-x: auto; }
.benchmark-table { width: 100%; border-collapse: collapse; font-size: 14px; background: transparent; min-width: 700px; }
.benchmark-table th, .benchmark-table td { padding: 18px 20px; text-align: left; border-bottom: 1px solid var(--rule-soft); vertical-align: middle; }
.benchmark-table th { background: transparent; color: var(--text-mute); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; }
.benchmark-table th.numeric, .benchmark-table td.numeric { text-align: right; font-variant-numeric: tabular-nums; }
.benchmark-table tr.winner { background: rgba(30,215,96,0.08); }
.benchmark-table tr.winner td:first-child { border-left: 3px solid var(--green); padding-left: 17px; }
.benchmark-table tr.winner .tool-name { color: var(--green); }
.benchmark-table tr:last-child td { border-bottom: 0; }
.benchmark-table tr:hover { background: rgba(255,255,255,0.04); }
.benchmark-table tr.winner:hover { background: rgba(30,215,96,0.12); }
.benchmark-table .tool-name { font-size: 16px; font-weight: 700; color: var(--white); }
.benchmark-table .tool-name small { display: block; font-size: 11px; font-weight: 500; color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.04em; margin-top: 2px; }
.benchmark-table .score-num { font-size: 18px; font-weight: 700; color: var(--white); }
.benchmark-foot { font-size: 12px; color: var(--text-mute); margin-top: 18px; line-height: 1.5; }

/* ============================================================
   Methodology — Spotify card grid
   ============================================================ */

.methodology-section { padding: 80px 24px; background: var(--bg); }
.methodology-inner { max-width: var(--maxw); margin: 0 auto; }
.methodology-section h2 { font-size: clamp(32px, 4vw, 48px); margin: 0 0 36px; max-width: 760px; font-weight: 900; letter-spacing: -0.04em; color: var(--white); }
.methodology-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.methodology-card { background: var(--bg-elev); padding: 24px; border-radius: var(--radius-card); transition: background 150ms; cursor: default; }
.methodology-card:hover { background: var(--bg-hover); }
.methodology-num { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green); font-weight: 700; margin-bottom: 12px; }
.methodology-card-title { font-size: 17px; font-weight: 700; line-height: 1.25; margin-bottom: 10px; color: var(--white); letter-spacing: -0.02em; }
.methodology-card-body { font-size: 14px; line-height: 1.55; color: var(--text-soft); }

/* ============================================================
   Pricing — Spotify tier cards
   ============================================================ */

.pricing-section { padding: 80px 24px; background: var(--black); }
.pricing-inner { max-width: var(--maxw); margin: 0 auto; }
.pricing-section .eyebrow { color: var(--green); }
.pricing-section h2 { color: var(--white); font-size: clamp(32px, 4vw, 48px); margin: 0 0 14px; font-weight: 900; letter-spacing: -0.04em; }
.pricing-section .pricing-sub { color: var(--text-soft); font-size: 17px; max-width: 720px; margin-bottom: 28px; }
.pricing-banner { background: var(--green); color: var(--black); padding: 8px 18px; display: inline-block; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; margin-bottom: 32px; border-radius: var(--radius-pill); }
.pricing-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.tier { background: var(--bg-elev); border: 0; padding: 32px 28px; position: relative; border-radius: var(--radius-card); transition: background 150ms; }
.tier:hover { background: var(--bg-hover); }
.tier.popular { background: linear-gradient(180deg, #1a4d2e 0%, #0a2818 100%); }
.tier.popular:hover { background: linear-gradient(180deg, #1f5a36 0%, #0d301d 100%); }
.tier-flag { position: absolute; top: -12px; right: 22px; background: var(--green); color: var(--black); padding: 6px 14px; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; border-radius: var(--radius-pill); }
.tier-name { font-size: 22px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.02em; color: var(--white); }
.tier-price { font-family: var(--display); font-size: 56px; font-weight: 900; line-height: 1; letter-spacing: -0.05em; color: var(--white); }
.tier-price small { font-size: 16px; font-weight: 500; color: var(--text-soft); }
.tier-period { font-size: 12px; color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.08em; margin: 6px 0 18px; font-weight: 700; }
.tier-features { list-style: none; padding: 0; margin: 0 0 24px; }
.tier-features li { padding: 10px 0; padding-left: 26px; position: relative; font-size: 14px; color: var(--text-soft); border-bottom: 1px solid var(--rule-soft); }
.tier-features li:last-child { border-bottom: 0; }
.tier-features li::before { content: ""; position: absolute; left: 0; top: 14px; width: 14px; height: 14px; background: var(--green); border-radius: 50%; opacity: 0.9; }
.tier-features li::after { content: ""; position: absolute; left: 3px; top: 18px; width: 8px; height: 4px; border-left: 2px solid var(--black); border-bottom: 2px solid var(--black); transform: rotate(-45deg); }
.tier-cta { display: block; text-align: center; background: var(--green); color: var(--black); padding: 14px; font-weight: 700; font-size: 14px; text-decoration: none; border: 0; border-radius: var(--radius-pill); transition: background 150ms, transform 150ms; }
.tier-cta:hover { background: var(--green-hover); color: var(--black); border: 0; transform: scale(1.04); }
.tier.popular .tier-cta { background: var(--white); }
.tier.popular .tier-cta:hover { background: var(--white); transform: scale(1.04); }
.tier-urgency { font-size: 12px; color: var(--green); margin-bottom: 14px; padding: 8px 12px; background: rgba(30,215,96,0.14); display: inline-block; border-radius: var(--radius-pill); font-weight: 700; }
.pricing-note { font-size: 12px; color: var(--text-mute); margin-top: 28px; line-height: 1.5; }
.pricing-note a { color: var(--green); border-bottom: 1px solid rgba(30,215,96,0.4); }

/* ============================================================
   Guides grid — Spotify horizontal cards
   ============================================================ */

.guides-section { padding: 80px 24px; background: var(--bg); }
.guides-inner { max-width: var(--maxw); margin: 0 auto; }
.guides-section h2 { font-size: clamp(32px, 4vw, 48px); margin: 0 0 14px; font-weight: 900; letter-spacing: -0.04em; color: var(--white); }
.guides-sub { font-size: 17px; color: var(--text-soft); max-width: 720px; margin-bottom: 36px; }
.guides-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.guide-card {
  background: var(--bg-elev);
  padding: 22px 22px 24px;
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  border: 0;
  transition: background 200ms;
  position: relative;
}
.guide-card:hover { background: var(--bg-hover); color: var(--white); border: 0; }
.guide-card-tag { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); font-weight: 700; }
.guide-card-title { font-size: 17px; font-weight: 700; line-height: 1.25; color: var(--white); letter-spacing: -0.02em; }
.guide-card-desc { font-size: 13px; color: var(--text-soft); line-height: 1.5; }
.guide-card-cta { margin-top: auto; font-size: 12px; color: var(--green); letter-spacing: 0.02em; padding-top: 14px; font-weight: 700; opacity: 0; transition: opacity 200ms; }
.guide-card:hover .guide-card-cta { opacity: 1; }

/* ============================================================
   Testimonials — Spotify card style
   ============================================================ */

.testimonials { padding: 80px 24px; background: var(--bg); border: 0; }
.testimonials-inner { max-width: var(--maxw); margin: 0 auto; }
.testimonials h2 { font-size: clamp(32px, 4vw, 48px); margin: 0 0 36px; max-width: 720px; font-weight: 900; letter-spacing: -0.04em; color: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.testimonial { background: var(--bg-elev); padding: 28px 26px; border-radius: var(--radius-card); border: 0; transition: background 150ms; }
.testimonial:hover { background: var(--bg-hover); }
.testimonial-quote { font-style: normal; font-size: 16px; line-height: 1.55; color: var(--white); margin: 0 0 22px; font-weight: 500; }
.testimonial-quote::before { content: "“"; font-family: var(--display); font-size: 48px; color: var(--green); line-height: 0.4; vertical-align: -18px; margin-right: 4px; }
.testimonial-name { font-weight: 700; font-size: 14px; color: var(--white); }
.testimonial-detail { font-size: 12px; color: var(--text-mute); margin-top: 2px; }
.testimonial-result { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--black); margin-top: 12px; padding: 4px 10px; background: var(--green); border-radius: var(--radius-pill); }

/* ============================================================
   FAQ — Spotify style
   ============================================================ */

.faq-section { padding: 80px 24px; background: var(--bg); }
.faq-section-inner { max-width: var(--readw); margin: 0 auto; }
.faq-section h2 { font-size: clamp(32px, 4vw, 48px); margin: 0 0 36px; font-weight: 900; letter-spacing: -0.04em; color: var(--white); }
.faq-list { }
.faq-item { background: var(--bg-elev); border-radius: var(--radius-card); margin-bottom: 8px; overflow: hidden; transition: background 150ms; }
.faq-item:hover { background: var(--bg-hover); }
.faq-button { width: 100%; text-align: left; background: none; border: 0; padding: 22px 24px; cursor: pointer; display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; font-size: 17px; font-weight: 700; color: var(--white); font-family: var(--display); letter-spacing: -0.02em; }
.faq-q { flex: 1; }
.faq-chev { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; transition: transform 300ms; color: var(--green); }
.faq-item.open .faq-chev { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 350ms; }
.faq-item.open .faq-answer { max-height: 800px; }
.faq-answer p { font-size: 15px; line-height: 1.6; color: var(--text-soft); padding: 0 24px 22px; margin: 0; }

/* ============================================================
   Final CTA
   ============================================================ */

.final-cta { padding: 120px 24px; text-align: center; background: linear-gradient(135deg, #122e1f 0%, #0a1a12 100%); position: relative; overflow: hidden; }
.final-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 600px 400px at 50% 0%, rgba(30,215,96,0.2), transparent 70%); pointer-events: none; }
.final-cta > div { position: relative; z-index: 1; }
.final-cta h2 { color: var(--white); font-size: clamp(40px, 6vw, 72px); font-weight: 900; letter-spacing: -0.05em; margin: 0 0 20px; line-height: 1; }
.final-cta h2 em { font-style: normal; color: var(--green); }
.final-cta p { font-size: 19px; color: var(--text-soft); max-width: 580px; margin: 0 auto 36px; line-height: 1.5; }
.final-cta .btn-primary { background: var(--green); color: var(--black); }
.final-cta .btn-primary:hover { background: var(--green-hover); color: var(--black); transform: scale(1.04); }
.final-cta-note { font-size: 12px; color: var(--text-mute); margin-top: 28px; }

/* ============================================================
   Pillar / article pages
   ============================================================ */

.pillar-main { padding: 0; background: var(--bg); }
.pillar-hero { padding: 64px 24px 40px; border-bottom: 1px solid var(--rule-soft); background: linear-gradient(180deg, #1a3026 0%, var(--bg) 100%); }
.pillar-hero-inner { max-width: var(--readw); margin: 0 auto; }
.breadcrumbs { font-size: 12px; letter-spacing: 0.06em; color: var(--text-mute); text-transform: uppercase; margin-bottom: 28px; display: flex; flex-wrap: wrap; gap: 8px; font-weight: 700; }
.breadcrumbs a { color: var(--text-soft); border: 0; }
.breadcrumbs a:hover { color: var(--green); border: 0; }
.breadcrumbs span.sep { color: var(--text-mute); opacity: 0.5; }
.pillar-hero h1 { font-size: clamp(40px, 6vw, 64px); font-weight: 900; line-height: 1.05; letter-spacing: -0.05em; margin: 0 0 20px; color: var(--white); }
.pillar-hero .lede { font-size: 21px; color: var(--text-soft); line-height: 1.5; font-style: normal; margin: 0 0 28px; max-width: 660px; font-weight: 400; }
.pillar-hero-meta { font-size: 12px; color: var(--text-mute); letter-spacing: 0.04em; display: flex; gap: 24px; flex-wrap: wrap; font-weight: 600; }
.pillar-hero-meta strong { color: var(--text-soft); font-weight: 700; }
.pillar-hero-meta a { color: var(--text-soft); border-bottom: 1px solid var(--rule); }
.pillar-hero-meta a:hover { color: var(--green); border-bottom-color: var(--green); }

.takeaway { background: var(--bg-elev); border-left: 4px solid var(--green); padding: 24px 28px; margin: 36px auto; max-width: var(--readw); border-radius: 0 var(--radius-card) var(--radius-card) 0; }
.takeaway-title { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
.takeaway ul { list-style: none; padding: 0; margin: 0; }
.takeaway li { font-size: 15px; color: var(--white); line-height: 1.5; padding-left: 22px; position: relative; margin-bottom: 10px; }
.takeaway li::before { content: "▶"; position: absolute; left: 0; color: var(--green); font-size: 10px; top: 6px; }

.toc { background: transparent; border: 0; padding: 0; margin: 24px auto 40px; max-width: var(--readw); }
.toc-title { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 14px; padding-top: 20px; border-top: 1px solid var(--rule-soft); }
.toc ol { list-style: none; padding: 0; margin: 0; counter-reset: toc; columns: 2; column-gap: 32px; }
.toc li { counter-increment: toc; padding: 6px 0 6px 32px; position: relative; font-size: 14px; break-inside: avoid; }
.toc li::before { content: counter(toc, decimal-leading-zero); position: absolute; left: 0; color: var(--green); font-weight: 700; font-size: 12px; }
.toc a { color: var(--text-soft); border: 0; }
.toc a:hover { color: var(--green); border: 0; }

.pillar-body { padding: 40px 24px 64px; max-width: var(--readw); margin: 0 auto; background: var(--bg); }
.pillar-body figure { margin: 40px 0; }
.pillar-body figure img { width: 100%; height: auto; border: 0; border-radius: var(--radius-card); }
.pillar-body figcaption { font-size: 13px; color: var(--text-mute); margin-top: 12px; padding-left: 0; border: 0; line-height: 1.5; }
.pillar-body h2 { font-size: clamp(28px, 3.6vw, 36px); font-weight: 900; line-height: 1.1; letter-spacing: -0.04em; margin: 56px 0 16px; color: var(--white); scroll-margin-top: 90px; }
.pillar-body h2:first-child { margin-top: 0; }
.pillar-body h2::before { content: ""; display: inline-block; width: 6px; height: 32px; background: var(--green); border-radius: 3px; vertical-align: -4px; margin-right: 14px; }
.pillar-body h3 { font-size: 22px; font-weight: 900; margin: 36px 0 12px; letter-spacing: -0.03em; color: var(--white); }
.pillar-body p { font-size: 17px; color: var(--text-soft); line-height: 1.65; margin: 0 0 18px; }
.pillar-body > p:first-of-type::first-letter { font-family: var(--display); font-size: 64px; line-height: 0.8; float: left; padding: 6px 14px 0 0; font-weight: 900; color: var(--green); }
.pillar-body strong { color: var(--white); font-weight: 700; }
.pillar-body em { font-style: normal; color: var(--green); font-weight: 700; }
.pillar-body a { color: var(--green); border-bottom: 1px solid rgba(30,215,96,0.4); }
.pillar-body a:hover { border-bottom-color: var(--green); color: var(--green-hover); }
.pillar-body ul, .pillar-body ol { padding-left: 22px; margin: 0 0 22px; font-size: 17px; line-height: 1.65; color: var(--text-soft); }
.pillar-body li { margin-bottom: 8px; }
.pillar-body li::marker { color: var(--green); }
.pillar-body blockquote { border-left: 4px solid var(--green); padding: 6px 0 6px 22px; margin: 28px 0; color: var(--white); font-size: 19px; line-height: 1.5; font-weight: 500; }
.pillar-body code { background: rgba(255,255,255,0.08); border: 0; border-radius: 4px; padding: 2px 8px; font-family: var(--mono); font-size: 14px; color: var(--green); }
.pillar-body pre { background: var(--black); color: var(--text-soft); border: 0; border-radius: var(--radius-card); padding: 20px 24px; overflow-x: auto; margin: 22px 0; font-family: var(--mono); font-size: 13px; }
.pillar-body table { width: 100%; border-collapse: collapse; margin: 30px 0; font-size: 14px; background: var(--bg-elev); border-radius: var(--radius-card); overflow: hidden; }
.pillar-body th, .pillar-body td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--rule-soft); color: var(--text-soft); }
.pillar-body th { background: rgba(0,0,0,0.4); color: var(--white); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; }
.pillar-body tr:hover { background: rgba(255,255,255,0.03); }
.pillar-body hr { border: 0; border-top: 1px solid var(--rule); margin: 48px 0; }

/* Override inline CTA blocks from existing content files to fit Spotify dark */
.pillar-body aside.callout {
  background: var(--bg-elev) !important;
  border: 0 !important;
  border-left: 4px solid var(--green) !important;
  border-radius: 0 var(--radius-card) var(--radius-card) 0 !important;
  padding: 26px 30px !important;
  margin: 36px 0 !important;
}
.pillar-body aside.callout > p { color: var(--text-soft) !important; font-family: var(--sans) !important; font-size: 16px !important; line-height: 1.55 !important; }
.pillar-body aside.callout > p strong { color: var(--white) !important; }
.pillar-body aside.callout > p:first-child { color: var(--green) !important; font-family: var(--sans) !important; font-weight: 700 !important; font-size: 11px !important; letter-spacing: 0.16em !important; text-transform: uppercase !important; }
.pillar-body aside.callout > p:last-child a { background: var(--green) !important; color: var(--black) !important; padding: 12px 24px !important; border-radius: var(--radius-pill) !important; font-family: var(--sans) !important; font-weight: 700 !important; font-size: 14px !important; text-decoration: none !important; border-bottom: 0 !important; display: inline-block !important; transition: background 150ms, transform 150ms !important; }
.pillar-body aside.callout > p:last-child a:hover { background: var(--green-hover) !important; transform: scale(1.04) !important; }

.callout { background: var(--bg-elev); border: 0; border-left: 4px solid var(--green); padding: 22px 26px; margin: 28px 0; border-radius: 0 var(--radius-card) var(--radius-card) 0; }
.callout p { font-size: 15px; color: var(--text-soft); line-height: 1.55; margin: 0; }

.pillar-cta { padding: 80px 24px; background: linear-gradient(135deg, #122e1f 0%, #0a1a12 100%); color: var(--white); text-align: center; position: relative; overflow: hidden; }
.pillar-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 600px 400px at 50% 0%, rgba(30,215,96,0.18), transparent 70%); pointer-events: none; }
.pillar-cta > * { position: relative; z-index: 1; }
.pillar-cta h2 { color: var(--white); font-size: clamp(32px, 5vw, 52px); font-weight: 900; margin: 0 0 18px; letter-spacing: -0.05em; line-height: 1.05; }
.pillar-cta h2 em { font-style: normal; color: var(--green); }
.pillar-cta p { font-size: 18px; color: var(--text-soft); max-width: 540px; margin: 0 auto 32px; line-height: 1.55; }
.pillar-cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.pillar-cta .btn-primary { background: var(--green); color: var(--black); }
.pillar-cta .btn-primary:hover { background: var(--green-hover); color: var(--black); transform: scale(1.04); }
.pillar-cta .btn-ghost { color: var(--white); border-color: rgba(255,255,255,0.7); }
.pillar-cta .btn-ghost:hover { background: transparent; color: var(--white); border-color: var(--white); transform: scale(1.04); }

.related-strip { padding: 64px 24px; background: var(--bg); }
.related-strip-inner { max-width: var(--maxw); margin: 0 auto; }
.related-strip h2 { font-size: 24px; font-weight: 900; margin: 0 0 24px; letter-spacing: -0.03em; color: var(--white); }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.related-card { display: flex; flex-direction: column; gap: 8px; text-decoration: none; color: var(--white); border: 0; padding: 20px; background: var(--bg-elev); border-radius: var(--radius-card); transition: background 200ms; }
.related-card:hover { background: var(--bg-hover); color: var(--white); border: 0; }
.related-card-tag { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); font-weight: 700; }
.related-card-title { font-size: 17px; font-weight: 700; line-height: 1.25; letter-spacing: -0.02em; color: var(--white); }
.related-card-desc { font-size: 13px; color: var(--text-soft); line-height: 1.5; }
.related-card-cta { font-size: 12px; color: var(--green); margin-top: 6px; font-weight: 700; }

/* ============================================================
   Footer — Spotify style
   ============================================================ */

.site-footer { background: var(--black); color: var(--text-soft); border-top: 0; padding: 64px 24px 28px; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid var(--rule-soft); }
.footer-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; font-weight: 900; font-size: 22px; color: var(--white); letter-spacing: -0.04em; }
.footer-brand-row svg { display: none; }
.footer-tagline { font-size: 14px; color: var(--text-mute); margin: 0; }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { font-size: 14px; line-height: 1.6; padding: 4px 0; }
.footer-col a { color: var(--text-soft); border: 0; font-weight: 500; }
.footer-col a:hover { color: var(--white); border: 0; }
.footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 12px; color: var(--text-mute); }
.footer-bottom p { margin: 0; }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .verdict-inner { grid-template-columns: 1fr; gap: 32px; }
  .verdict-rank { font-size: 96px; }
  .verdict-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  body { font-size: 15px; }
  .footer-top { grid-template-columns: 1fr; }
  .masthead { padding: 64px 20px 48px; }
  .verdict-block { padding: 56px 20px; }
  .piece { padding: 56px 20px; }
  .nav-links { display: none; }
  .toc ol { columns: 1; }
}
