/*
Theme Name: Kirimas
Theme URI: https://kirimas.com
Author: Kirimas
Description: My Side Hustle Lab — Personal blog testing side hustles with profit tracking, income reports, and hustle quiz.
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: kirimas
Tags: blog, personal, premium, editorial
*/

/* ─── Variables ────────────────────────────────────────────────────────────── */
:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface2: #f8f8f6;
  --border: #eaeae8;
  --border2: #d8d8d4;
  --text: #111111;
  --text2: #4a4a48;
  --text3: #8a8a86;
  --gold: #9a7b4f;
  --gold-dim: rgba(154,123,79,.07);
  --gold-border: rgba(154,123,79,.18);
  --green: #1a7a50;
  --green-dim: rgba(26,122,80,.07);
  --red: #b33a2e;
  --red-dim: rgba(179,58,46,.07);
  --amber: #8a6d00;
  --amber-dim: rgba(138,109,0,.07);
  --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.03);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.04);
  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans: 'Inter', system-ui, sans-serif;
  --ff-mono: 'JetBrains Mono', monospace;
  --r: 10px;
  --max-w: 1080px;
}

/* ─── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
::selection { background: rgba(154,123,79,.15); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ─── Animations ───────────────────────────────────────────────────────────── */
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.25} }
@keyframes fadeUp { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }

/* ─── Layout ───────────────────────────────────────────────────────────────── */
.site-wrapper { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.container-sm { max-width: 720px; margin: 0 auto; padding: 0 32px; }

/* ─── Typography ───────────────────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--ff-serif); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; color: var(--text); }
h1 { font-size: clamp(2rem,5vw,3.2rem); }
h2 { font-size: clamp(1.4rem,3vw,2rem); }
h3 { font-size: 1.2rem; }
p { color: var(--text2); margin-bottom: 1.2em; }

.overline {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 7px;
}
.overline::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.overline.green { color: var(--green); }
.overline.green::before { background: var(--green); animation: pulse 2.5s ease infinite; }
.overline.muted { color: var(--text3); }
.overline.muted::before { background: var(--text3); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}
.section-head .titles { display: flex; flex-direction: column; gap: 8px; }
.section-head h2 { font-size: 1.6rem; line-height: 1; margin: 0; }
.section-head .view-all {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text3);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color .15s;
}
.section-head .view-all:hover { color: var(--text); }

hr.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ─── Header ───────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 11px;
}
.logo-mark {
  width: 30px; height: 30px;
  background: var(--text);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 13px;
  color: var(--bg);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; gap: 1px; }
.logo-text .name { font-family: var(--ff-serif); font-weight: 600; font-size: 0.95rem; color: var(--text); letter-spacing: -0.02em; line-height: 1; }
.logo-text .sub  { font-family: var(--ff-mono); font-size: 0.52rem; letter-spacing: 0.1em; color: var(--text3); text-transform: uppercase; line-height: 1; }

.site-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  background: none; border: 1px solid transparent;
  cursor: pointer; padding: 6px 14px; border-radius: 100px;
  font-family: var(--ff-sans); font-size: 0.82rem; font-weight: 400;
  color: var(--text2); transition: all 0.15s;
}
.nav-link:hover, .nav-link.active { background: var(--surface2); border-color: var(--border); color: var(--text); font-weight: 500; }
.nav-link-quiz {
  background: var(--gold); color: #fff; border: none;
  padding: 7px 16px; border-radius: 100px;
  font-family: var(--ff-sans); font-weight: 500; font-size: 0.78rem;
  cursor: pointer; margin-left: 4px; transition: opacity .15s;
}
.nav-link-quiz:hover { opacity: .85; }
.nav-link-cta {
  background: var(--text); color: #fff; border: none;
  padding: 7px 18px; border-radius: 100px;
  font-family: var(--ff-sans); font-weight: 500; font-size: 0.82rem;
  cursor: pointer; margin-left: 4px; transition: opacity .15s;
}
.nav-link-cta:hover { opacity: .85; }
.nav-link-yt {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 100px;
  background: #ff0000; color: #fff; margin-left: 4px;
  transition: opacity .15s;
}
.nav-link-yt:hover { opacity: .85; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; flex-direction: column; gap: 5px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--text); transition: all .3s; }

/* ─── Hero ─────────────────────────────────────────────────────────────────── */
.hero { padding: 96px 0 80px; border-bottom: 1px solid var(--border); }
.hero-inner { max-width: 680px; }
.hero-badges { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.hero-quiz-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold-dim); border: 1px solid var(--gold-border);
  color: var(--gold); padding: 5px 12px; border-radius: 100px;
  font-family: var(--ff-mono); font-size: 0.62rem;
  letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; font-weight: 500;
  text-decoration: none; transition: opacity .15s;
}
.hero-quiz-badge:hover { opacity: .8; }
.hero h1 { margin-bottom: 22px; line-height: 1.1; }
.hero h1 em { font-weight: 400; color: var(--text2); font-style: italic; }
.hero-sub { font-size: 1rem; color: var(--text2); line-height: 1.75; max-width: 500px; margin-bottom: 48px; }
.hero-stats { display: flex; flex-wrap: wrap; }
.hero-stat { padding-right: 40px; border-right: 1px solid var(--border); }
.hero-stat + .hero-stat { padding-left: 40px; }
.hero-stat:last-child { border-right: none; }
.hero-stat .val { font-family: var(--ff-serif); font-weight: 700; font-size: 2.2rem; letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px; color: var(--text); }
.hero-stat .val.pos { color: var(--green); }
.hero-stat .val.neg { color: var(--red); }
.hero-stat .lbl { font-family: var(--ff-mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text3); }

/* ─── Pills & Tags ─────────────────────────────────────────────────────────── */
.status-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px 3px 7px; border-radius: 100px;
  font-family: var(--ff-mono); font-size: 0.62rem;
  letter-spacing: 0.07em; text-transform: uppercase; font-weight: 500;
}
.status-pill .dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.status-pill.keep   { background: var(--green-dim); color: var(--green); }
.status-pill.keep .dot   { background: var(--green); }
.status-pill.skip   { background: var(--red-dim); color: var(--red); }
.status-pill.skip .dot   { background: var(--red); }

.type-chip {
  font-family: var(--ff-mono); font-size: 0.61rem; letter-spacing: 0.07em;
  text-transform: uppercase; padding: 3px 9px; border-radius: 100px;
  background: var(--surface2); color: var(--text3); border: 1px solid var(--border); font-weight: 500;
}

.profit-pos { color: var(--green); font-family: var(--ff-mono); font-weight: 600; }
.profit-neg { color: var(--red);   font-family: var(--ff-mono); font-weight: 600; }
.profit-neu { color: var(--text3); font-family: var(--ff-mono); font-weight: 600; }
.profit-lg  { font-size: 1.1rem; }

.eph-badge { font-family: var(--ff-mono); font-size: 0.72rem; padding: 2px 8px; border-radius: 100px; font-weight: 500; }
.eph-high  { background: var(--green-dim); color: var(--green); }
.eph-mid   { background: var(--amber-dim); color: var(--amber); }
.eph-low   { background: var(--red-dim);   color: var(--red); }

.difficulty-dots { display: flex; gap: 3px; align-items: center; }
.difficulty-dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--border); }
.difficulty-dots span.filled { background: var(--text); }

/* ─── Cards ────────────────────────────────────────────────────────────────── */
.post-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 26px;
  display: flex; flex-direction: column; gap: 14px;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--border2); }
.post-card .card-meta { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.post-card .card-age { margin-left: auto; font-family: var(--ff-mono); font-size: 0.62rem; color: var(--text3); }
.post-card h3 { font-family: var(--ff-serif); font-weight: 600; font-size: 1.05rem; line-height: 1.4; letter-spacing: -0.01em; color: var(--text); transition: color .15s; margin: 0; }
.post-card:hover h3 { color: #000; }
.post-card .excerpt { font-size: 0.82rem; color: var(--text3); line-height: 1.65; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-footer { display: flex; align-items: center; gap: 8px; padding-top: 12px; border-top: 1px solid var(--border); margin-top: auto; flex-wrap: wrap; }
.card-footer .card-profit { margin-left: auto; display: flex; gap: 8px; align-items: center; }
.card-read { font-family: var(--ff-mono); font-size: 0.7rem; letter-spacing: 0.04em; color: var(--text3); transition: color .15s; }
.post-card:hover .card-read { color: var(--gold); }

.posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 16px; }

/* ─── Sections ─────────────────────────────────────────────────────────────── */
.section { padding: 72px 0; border-bottom: 1px solid var(--border); }
.section:last-child { border-bottom: none; }

/* ─── Live Feed ────────────────────────────────────────────────────────────── */
.live-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 12px; }
.live-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 20px 22px; box-shadow: var(--shadow-sm);
}
.live-card .live-header { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s ease infinite; flex-shrink: 0; }
.live-label { font-family: var(--ff-mono); font-size: 0.62rem; color: var(--green); letter-spacing: 0.08em; text-transform: uppercase; }
.live-started { font-family: var(--ff-mono); font-size: 0.62rem; color: var(--text3); margin-left: auto; }
.live-title { font-weight: 500; font-size: 0.88rem; color: var(--text); margin-bottom: 10px; line-height: 1.4; }
.live-note { background: var(--surface2); border-radius: 6px; padding: 8px 12px; font-family: var(--ff-mono); font-size: 0.68rem; color: var(--text2); line-height: 1.5; }
.live-footer-note { font-size: 0.8rem; color: var(--text3); margin-top: 18px; font-family: var(--ff-mono); letter-spacing: 0.04em; }

/* ─── Leaderboard ──────────────────────────────────────────────────────────── */
.leaderboard { display: flex; flex-direction: column; gap: 2px; }
.leaderboard-row {
  display: grid; grid-template-columns: 44px 1fr 110px;
  align-items: center; gap: 20px; padding: 16px 20px;
  background: var(--surface); border-radius: var(--r); cursor: pointer;
  border: 1px solid transparent; transition: all 0.15s; box-shadow: var(--shadow-sm);
}
.leaderboard-row:hover { border-color: var(--border); box-shadow: var(--shadow-md); }
.leaderboard-rank { display: flex; align-items: center; justify-content: center; }
.leaderboard-rank .num { font-family: var(--ff-mono); font-size: 0.72rem; color: var(--text3); font-weight: 500; }
.leaderboard-rank .medal { font-size: 1.15rem; }
.leaderboard-body .row-title { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; flex-wrap: wrap; }
.leaderboard-body .row-title span { font-weight: 500; font-size: 0.9rem; color: var(--text); }
.progress-bar { height: 3px; background: var(--surface2); border-radius: 2px; }
.progress-bar-fill { height: 100%; border-radius: 2px; }
.leaderboard-profit { text-align: right; }
.leaderboard-profit .time { display: block; font-family: var(--ff-mono); font-size: 0.6rem; color: var(--text3); margin-top: 3px; }

/* ─── Chart container ──────────────────────────────────────────────────────── */
.chart-wrap { height: 210px; }

/* ─── Tracker table ────────────────────────────────────────────────────────── */
.tracker-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); }
.tracker-table { width: 100%; border-collapse: collapse; font-size: 0.84rem; }
.tracker-table thead tr { border-bottom: 1px solid var(--border); background: var(--surface2); }
.tracker-table thead th { text-align: left; padding: 11px 16px; font-family: var(--ff-mono); font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text3); font-weight: 500; white-space: nowrap; }
.tracker-table tbody tr { border-bottom: 1px solid var(--border); cursor: pointer; transition: background .12s; }
.tracker-table tbody tr:hover { background: var(--surface2); }
.tracker-table tbody tr:last-child { border-bottom: none; }
.tracker-table td { padding: 13px 16px; color: var(--text2); vertical-align: middle; }
.tracker-table .td-title { font-weight: 500; color: var(--text); font-size: 0.84rem; line-height: 1.3; display: block; }
.tracker-table .td-type { font-family: var(--ff-mono); font-size: 0.6rem; color: var(--text3); text-transform: uppercase; letter-spacing: 0.06em; display: block; }
.tracker-table .td-mono { font-family: var(--ff-mono); font-size: 0.72rem; }

/* ─── Verdict card ─────────────────────────────────────────────────────────── */
.verdict-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 22px 24px; margin-bottom: 32px; box-shadow: var(--shadow-sm);
}
.verdict-card.pos { border-top: 2px solid var(--green); }
.verdict-card.neg { border-top: 2px solid var(--red); }
.verdict-card.neu { border-top: 2px solid var(--border2); }
.verdict-quote { font-family: var(--ff-serif); font-size: 1.05rem; font-weight: 600; color: var(--text); line-height: 1.5; margin: 12px 0 20px; letter-spacing: -0.01em; font-style: italic; }
.verdict-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px,1fr)); gap: 16px; margin-bottom: 18px; }
.verdict-item .vi-label { font-family: var(--ff-mono); font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text3); display: block; margin-bottom: 5px; }
.verdict-start { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 14px; }
.verdict-start .vs-label { font-family: var(--ff-mono); font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text3); display: block; margin-bottom: 4px; }
.verdict-start .vs-val { font-size: 0.8rem; color: var(--text2); line-height: 1.4; }
.verdict-for .vf-label { font-family: var(--ff-mono); font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text3); display: block; margin-bottom: 4px; }
.verdict-for .vf-val { font-size: 0.82rem; color: var(--text2); }

/* ─── Post content ─────────────────────────────────────────────────────────── */
.post-content { color: var(--text2); line-height: 1.9; font-size: 0.96rem; }
.post-content p { margin-bottom: 1.6em; }
.post-content h2 { font-size: 1.3rem; margin: 2em 0 .7em; color: var(--text); }
.post-content h3 { font-size: 1.1rem; margin: 1.6em 0 .6em; color: var(--text); }
.post-content blockquote {
  border-left: 2px solid var(--gold); background: var(--gold-dim);
  padding: 16px 20px; margin: 2em 0; border-radius: 0 8px 8px 0;
}
.post-content blockquote p { color: var(--text); font-style: italic; margin: 0; }
.post-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.post-content ul, .post-content ol { padding-left: 1.4em; margin-bottom: 1.5em; }
.post-content li { color: var(--text2); margin-bottom: .5em; }
.post-content img { border-radius: var(--r); margin: 2em 0; border: 1px solid var(--border); }

/* ─── Mid-article capture ──────────────────────────────────────────────────── */
.mid-capture {
  margin: 2.5em 0; padding: 24px 28px;
  background: var(--surface); border: 1px solid var(--border);
  border-left: 2px solid var(--gold); border-radius: var(--r); box-shadow: var(--shadow-sm);
}
.mid-capture h4 { font-family: var(--ff-serif); font-size: 1rem; margin-bottom: 6px; color: var(--text); }
.mid-capture p { font-size: 0.82rem; color: var(--text2); margin-bottom: 16px; line-height: 1.6; }
.capture-form { display: flex; gap: 8px; flex-wrap: wrap; }
.capture-form input { flex: 1; min-width: 180px; background: var(--bg); border: 1px solid var(--border); color: var(--text); padding: 9px 14px; border-radius: 8px; font-family: var(--ff-sans); font-size: 0.82rem; outline: none; }
.capture-form input:focus { border-color: var(--gold); }
.btn-primary { background: var(--text); color: var(--bg); border: none; padding: 9px 18px; border-radius: 8px; font-family: var(--ff-sans); font-weight: 500; font-size: 0.82rem; cursor: pointer; transition: opacity .15s; }
.btn-primary:hover { opacity: .85; }
.btn-gold { background: var(--gold); color: #fff; border: none; padding: 9px 18px; border-radius: 8px; font-family: var(--ff-sans); font-weight: 500; font-size: 0.82rem; cursor: pointer; transition: opacity .15s; }
.btn-gold:hover { opacity: .85; }

/* ─── Similar hustles ──────────────────────────────────────────────────────── */
.similar-section { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--border); }
.similar-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 12px; }
.similar-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r);
  padding: 18px 20px; cursor: pointer; transition: all .15s; box-shadow: var(--shadow-sm);
  text-decoration: none; color: inherit; display: block;
}
.similar-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.similar-card h4 { font-family: var(--ff-sans); font-weight: 500; font-size: 0.85rem; color: var(--text); line-height: 1.4; margin: 8px 0 10px; }
.similar-profits { display: flex; gap: 8px; align-items: center; }

/* ─── Single post hero ─────────────────────────────────────────────────────── */
.single-hero { padding: 56px 0 40px; border-bottom: 1px solid var(--border); }
.single-breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.single-breadcrumb .back { font-family: var(--ff-mono); font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text3); transition: color .15s; }
.single-breadcrumb .back:hover { color: var(--text); }
.single-breadcrumb .sep { color: var(--border); }
.single-breadcrumb .age { margin-left: auto; font-family: var(--ff-mono); font-size: 0.65rem; color: var(--text3); }
.single-title { max-width: 740px; font-size: clamp(1.8rem,4vw,2.6rem); line-height: 1.18; }

/* ─── Content + sidebar ────────────────────────────────────────────────────── */
.content-sidebar { display: grid; grid-template-columns: 1fr 260px; gap: 56px; padding-top: 48px; align-items: start; }
.sidebar-widget { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 20px 22px; margin-bottom: 16px; box-shadow: var(--shadow-sm); }
.sidebar-widget .widget-overline { margin-bottom: 14px; }
.sidebar-list { margin-top: 14px; }
.sidebar-list-item { padding: 10px 0; border-bottom: 1px solid var(--border); }
.sidebar-list-item:last-child { border-bottom: none; }
.sidebar-list-item .sl-title { display: block; font-size: 0.82rem; color: var(--text); line-height: 1.4; margin-bottom: 4px; cursor: pointer; transition: color .15s; }
.sidebar-list-item .sl-title:hover { color: var(--gold); }
.sidebar-list-item .sl-meta { display: flex; gap: 7px; align-items: center; }
.sidebar-email input { width: 100%; background: var(--bg); border: 1px solid var(--border); color: var(--text); padding: 9px 12px; border-radius: 7px; font-family: var(--ff-sans); font-size: 0.82rem; outline: none; margin-bottom: 8px; display: block; }
.sidebar-email input:focus { border-color: var(--gold); }
.sidebar-email button { width: 100%; }
.sidebar-quiz { background: var(--gold-dim); border: 1px solid var(--gold-border); border-radius: var(--r); padding: 18px 20px; }
.sidebar-quiz h4 { font-family: var(--ff-sans); font-weight: 500; font-size: 0.85rem; color: var(--text); margin-bottom: 6px; }
.sidebar-quiz p { font-size: 0.78rem; color: var(--text2); margin-bottom: 12px; line-height: 1.5; }

/* ─── Income Reports ───────────────────────────────────────────────────────── */
.reports-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 16px; }
.report-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r);
  padding: 24px 26px; cursor: pointer; transition: all .15s; box-shadow: var(--shadow-sm);
  text-decoration: none; color: inherit; display: block;
}
.report-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.report-card-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.report-card .rc-label { font-family: var(--ff-mono); font-size: 0.62rem; color: var(--text3); text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 4px; }
.report-card .rc-month { font-family: var(--ff-serif); font-weight: 600; font-size: 1.05rem; color: var(--text); }
.change-badge { font-family: var(--ff-mono); font-size: 0.75rem; font-weight: 600; padding: 3px 8px; border-radius: 100px; }
.change-pos { color: var(--green); background: var(--green-dim); }
.change-neg { color: var(--red); background: var(--red-dim); }
.report-total { font-family: var(--ff-serif); font-weight: 700; font-size: 1.6rem; letter-spacing: -0.03em; line-height: 1; }
.report-total-label { font-family: var(--ff-mono); font-size: 0.62rem; color: var(--text3); text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-top: 4px; }
.report-highlight { font-size: 0.8rem; color: var(--text2); line-height: 1.6; font-style: italic; }

/* ─── Report detail ────────────────────────────────────────────────────────── */
.report-summary { display: grid; grid-template-columns: repeat(3,1fr); background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; margin-bottom: 32px; box-shadow: var(--shadow-sm); }
.report-summary-item { padding: 20px 22px; border-right: 1px solid var(--border); }
.report-summary-item:last-child { border-right: none; }
.report-summary-item .rs-label { font-family: var(--ff-mono); font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text3); display: block; margin-bottom: 8px; }
.report-summary-item .rs-val { font-family: var(--ff-mono); font-size: 1.3rem; font-weight: 600; }
.report-pull { background: var(--gold-dim); border: 1px solid var(--gold-border); border-left: 2px solid var(--gold); padding: 14px 18px; margin-bottom: 32px; border-radius: 0 8px 8px 0; }
.report-pull blockquote { font-family: var(--ff-serif); font-style: italic; font-size: 0.95rem; color: var(--text); line-height: 1.6; }
.report-breakdown { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); }
.rb-row { display: flex; justify-content: space-between; align-items: center; padding: 13px 18px; border-bottom: 1px solid var(--border); }
.rb-row:last-child { border-bottom: none; }
.rb-hustle { font-size: 0.88rem; color: var(--text); }

/* ─── Quiz ─────────────────────────────────────────────────────────────────── */
.quiz-progress { height: 3px; background: var(--border); border-radius: 2px; margin: 14px 0 40px; overflow: hidden; }
.quiz-progress-fill { height: 100%; background: var(--gold); border-radius: 2px; transition: width .4s ease; }
.quiz-question { font-family: var(--ff-serif); font-weight: 700; font-size: 1.8rem; letter-spacing: -0.02em; margin-bottom: 32px; line-height: 1.3; }
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-option {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r);
  padding: 16px 20px; cursor: pointer; text-align: left;
  font-family: var(--ff-sans); font-size: 0.9rem; color: var(--text);
  transition: all .15s; box-shadow: var(--shadow-sm); width: 100%;
}
.quiz-option:hover { border-color: var(--text); background: var(--surface2); }
.quiz-results { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.quiz-result-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r);
  padding: 20px 22px; cursor: pointer; display: grid;
  grid-template-columns: 32px 1fr auto; gap: 16px; align-items: center;
  box-shadow: var(--shadow-sm); transition: all .15s;
}
.quiz-result-card:hover { box-shadow: var(--shadow-md); border-color: var(--border2); }
.quiz-rank { font-family: var(--ff-serif); font-weight: 700; font-size: 1.4rem; color: var(--text); opacity: .35; }
.quiz-result-title { font-weight: 500; font-size: 0.9rem; color: var(--text); margin-bottom: 6px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.quiz-result-meta { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.quiz-result-meta .budget { font-family: var(--ff-mono); font-size: 0.72rem; color: var(--text3); }
.quiz-result-profit { text-align: right; }
.quiz-result-profit .qr-time { display: block; font-family: var(--ff-mono); font-size: 0.6rem; color: var(--text3); margin-top: 3px; }
.btn-retake { font-family: var(--ff-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text3); background: none; border: 1px solid var(--border); padding: 9px 18px; border-radius: 100px; cursor: pointer; transition: all .15s; }
.btn-retake:hover { border-color: var(--text); color: var(--text); }

/* ─── Archive ──────────────────────────────────────────────────────────────── */
.archive-header { padding: 64px 0 48px; }
.archive-filters { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn { font-family: var(--ff-mono); font-size: 0.65rem; letter-spacing: 0.07em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; cursor: pointer; border: 1px solid var(--border); background: transparent; color: var(--text2); transition: all .15s; }
.filter-btn.active, .filter-btn:hover { border-color: var(--text); background: var(--text); color: var(--bg); }

/* ─── 404 ──────────────────────────────────────────────────────────────────── */
.error-page { padding: 120px 0; text-align: center; }
.error-code { font-family: var(--ff-serif); font-size: 8rem; font-weight: 800; color: var(--border2); line-height: 1; margin-bottom: 16px; }

/* ─── Footer ───────────────────────────────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--border); padding: 56px 0 40px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .tagline { font-size: 0.84rem; color: var(--text2); line-height: 1.7; max-width: 260px; margin-top: 12px; }
.footer-col h4 { font-family: var(--ff-mono); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text3); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.84rem; color: var(--text2); transition: color .15s; }
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-family: var(--ff-mono); font-size: 0.65rem; color: var(--text3); letter-spacing: 0.04em; }

/* ─── Pagination ───────────────────────────────────────────────────────────── */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 48px 0; }
.page-numbers { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: var(--r); font-family: var(--ff-mono); font-size: 0.78rem; border: 1px solid var(--border); color: var(--text2); transition: all .15s; }
.page-numbers:hover, .page-numbers.current { background: var(--text); border-color: var(--text); color: var(--bg); }

/* ─── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .content-sidebar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .verdict-start { grid-template-columns: 1fr 1fr; }
  .report-summary { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .container, .container-sm { padding: 0 20px; }
  .site-nav { display: none; }
  .site-nav.open { display: flex; position: absolute; top: 62px; left: 0; right: 0; flex-direction: column; background: var(--bg); border-bottom: 1px solid var(--border); padding: 20px; gap: 8px; z-index: 99; }
  .menu-toggle { display: flex; }
  .hero-stat { padding-right: 24px; }
  .hero-stat + .hero-stat { padding-left: 24px; }
  .posts-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .leaderboard-row { grid-template-columns: 36px 1fr; }
  .leaderboard-profit { display: none; }
  .report-summary { grid-template-columns: 1fr; }
  .verdict-start { grid-template-columns: 1fr; }
  .quiz-question { font-size: 1.4rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOMEPAGE — NEW DESIGN
═══════════════════════════════════════════════════════════════════════════ */

/* Buttons */
.btn-green {
  display: inline-block; background: #1a7a50; color: #fff; border: none;
  padding: 12px 24px; border-radius: 8px; font-family: var(--ff-sans);
  font-weight: 600; font-size: 0.88rem; cursor: pointer; text-decoration: none;
  transition: opacity .15s;
}
.btn-green:hover { opacity: .88; }
.btn-outline {
  display: inline-block; background: none; color: var(--text);
  border: 1px solid var(--border2); padding: 12px 24px; border-radius: 8px;
  font-family: var(--ff-sans); font-weight: 500; font-size: 0.88rem;
  cursor: pointer; text-decoration: none; transition: all .15s;
}
.btn-outline:hover { border-color: var(--text); background: var(--surface2); }

/* Hero */
.hp-hero { padding: 64px 0 56px; border-bottom: 1px solid var(--border); }
.hp-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hp-headline { font-family: var(--ff-serif); font-weight: 700; font-size: clamp(2rem,4vw,2.8rem); letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 16px; }
.hp-sub { color: var(--text2); font-size: 0.95rem; line-height: 1.75; margin-bottom: 28px; max-width: 460px; }
.hp-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Stats dashboard card */
.hp-stats-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-md); overflow: hidden; }
.hp-stats-grid { display: grid; grid-template-columns: 1fr 1fr; }
.hp-stat-box { padding: 24px; text-align: center; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); }
.hp-stat-box:nth-child(2n) { border-right: none; }
.hp-stat-box:nth-child(n+3) { border-bottom: none; }
.hp-stat-icon { font-size: 1.4rem; margin-bottom: 8px; }
.hp-stat-value { font-family: var(--ff-serif); font-weight: 700; font-size: 1.8rem; letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px; color: var(--text); }
.hp-stat-label { font-family: var(--ff-mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text3); }
.hp-stats-footer { padding: 12px 20px; text-align: center; font-family: var(--ff-mono); font-size: 0.68rem; color: var(--text3); border-top: 1px solid var(--border); background: var(--surface2); }

/* How the lab works */
.hp-how { padding: 56px 0; border-bottom: 1px solid var(--border); }
.hp-section-title { font-family: var(--ff-serif); font-weight: 700; font-size: 1.5rem; text-align: center; letter-spacing: -0.02em; margin-bottom: 32px; }
.hp-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.hp-step {
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
  padding: 24px 18px; text-align: center; position: relative; box-shadow: var(--shadow-sm);
}
.hp-step-num {
  position: absolute; top: -10px; left: -6px; width: 24px; height: 24px;
  background: #1a7a50; color: #fff; border-radius: 50%; font-family: var(--ff-mono);
  font-size: 0.7rem; font-weight: 700; display: flex; align-items: center;
  justify-content: center;
}
.hp-step-icon { font-size: 1.8rem; margin-bottom: 12px; }
.hp-step-text { font-size: 0.85rem; color: var(--text2); line-height: 1.5; }

/* Scoreboard */
.hp-scoreboard { padding: 56px 0; border-bottom: 1px solid var(--border); }
.hp-score-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.hp-score-card {
  background: var(--surface); border-radius: 10px; padding: 20px 22px;
  text-decoration: none; color: inherit; display: block;
  transition: all .2s; box-shadow: var(--shadow-sm);
}
.hp-score-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.hp-score-card.score-keep { border: 1px solid rgba(26,122,80,.25); }
.hp-score-card.score-skip { border: 1px solid rgba(179,58,46,.2); }
.score-card-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; margin-bottom: 14px; }
.score-card-title { font-family: var(--ff-sans); font-weight: 600; font-size: 0.88rem; color: var(--text); line-height: 1.3; }
.score-card-profit { margin-bottom: 6px; }
.profit-xl { font-size: 1.5rem !important; font-weight: 700 !important; }
.score-card-period { font-family: var(--ff-mono); font-size: 0.72rem; color: var(--text3); }
.score-card-detail { font-family: var(--ff-mono); font-size: 0.75rem; color: var(--text3); margin-bottom: 10px; }
.score-card-meta { font-family: var(--ff-mono); font-size: 0.72rem; color: var(--text3); margin-bottom: 4px; }
.score-card-verdict { font-size: 0.78rem; color: var(--text2); line-height: 1.5; margin-top: 8px; }

/* Latest reports */
.hp-latest { padding: 56px 0; border-bottom: 1px solid var(--border); }
.hp-reports-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.hp-report-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; text-decoration: none; color: inherit; display: block;
  transition: all .2s; box-shadow: var(--shadow-sm);
}
.hp-report-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.hp-report-thumb { width: 100%; aspect-ratio: 16/10; overflow: hidden; background: var(--surface2); }
.hp-report-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hp-report-thumb-empty { background: linear-gradient(135deg, var(--surface2) 0%, var(--border) 100%); }
.hp-report-meta { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px 0; }
.hp-report-cat {
  font-family: var(--ff-mono); font-size: 0.58rem; letter-spacing: 0.08em;
  text-transform: uppercase; background: #1a7a50; color: #fff;
  padding: 3px 8px; border-radius: 4px; font-weight: 600;
}
.hp-report-date { font-family: var(--ff-mono); font-size: 0.65rem; color: var(--text3); }
.hp-report-title { font-family: var(--ff-serif); font-weight: 600; font-size: 0.95rem; line-height: 1.35; padding: 10px 16px 6px; color: var(--text); letter-spacing: -0.01em; margin: 0; }
.hp-report-excerpt { font-size: 0.78rem; color: var(--text3); line-height: 1.5; padding: 0 16px 8px; margin: 0; }
.hp-report-result { font-family: var(--ff-mono); font-size: 0.78rem; font-weight: 600; padding: 10px 16px 16px; }

/* Newsletter banner */
.hp-newsletter { padding: 48px 0; }
.hp-nl-inner {
  background: var(--text); color: #fff; border-radius: 14px;
  padding: 36px 40px; display: flex; align-items: center; gap: 24px;
  box-shadow: var(--shadow-lg); flex-wrap: wrap;
}
.hp-nl-icon { font-size: 2.2rem; flex-shrink: 0; }
.hp-nl-text { flex: 1; min-width: 240px; }
.hp-nl-text h3 { font-family: var(--ff-serif); font-weight: 700; font-size: 1.15rem; margin-bottom: 4px; letter-spacing: -0.01em; color: #fff; }
.hp-nl-text p { font-size: 0.82rem; color: rgba(255,255,255,.65); margin: 0; }
.hp-nl-form { flex-shrink: 0; min-width: 300px; }
.hp-nl-form input[type="email"] {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: #fff; padding: 10px 14px; border-radius: 8px; font-family: var(--ff-sans);
  font-size: 0.85rem; outline: none; width: 100%;
}
.hp-nl-form input[type="email"]::placeholder { color: rgba(255,255,255,.45); }
.hp-nl-form input[type="email"]:focus { border-color: rgba(255,255,255,.5); }

/* ─── Homepage responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hp-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hp-steps { grid-template-columns: 1fr 1fr; }
  .hp-score-grid { grid-template-columns: 1fr 1fr; }
  .hp-reports-grid { grid-template-columns: 1fr 1fr; }
  .hp-nl-inner { flex-direction: column; text-align: center; }
  .hp-nl-form { width: 100%; min-width: 0; }
}
@media (max-width: 640px) {
  .hp-hero { padding: 40px 0 36px; }
  .hp-steps { grid-template-columns: 1fr; }
  .hp-score-grid { grid-template-columns: 1fr; }
  .hp-reports-grid { grid-template-columns: 1fr; }
  .hp-hero-btns { flex-direction: column; }
  .hp-hero-btns .btn-green, .hp-hero-btns .btn-outline { text-align: center; }
  .hp-nl-inner { padding: 28px 24px; }
}
