:root {
  --bg: #0a0a0a;
  --bg-card: #141414;
  --fg: #e8e8e8;
  --fg-muted: #888;
  --accent: #39ff14;
  --accent-dim: rgba(57, 255, 20, 0.12);
  --accent-2: #ffe234;
  --accent-3: #ff6b35;
  --accent-4: #a855f7;
  --radius: 16px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

.highlight {
  color: var(--accent);
}

/* ---- HERO ---- */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 24px 60px;
  position: relative;
  background: radial-gradient(ellipse at 30% 20%, rgba(57, 255, 20, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(168, 85, 247, 0.04) 0%, transparent 50%);
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(57, 255, 20, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--fg-muted);
  max-width: 180px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.08);
}

/* ---- HUSTLES ---- */
.hustles {
  padding: 100px 24px;
}

.hustles-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hustles h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  margin-bottom: 48px;
}

.hustle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.hustle-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.hustle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.card-detail::before { background: var(--accent); }
.card-tiktok::before { background: var(--accent-4); }
.card-resell::before { background: var(--accent-2); }
.card-edit::before { background: var(--accent-3); }

.hustle-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.card-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.hustle-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.card-income {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.card-detail .card-income { color: var(--accent); }
.card-tiktok .card-income { color: var(--accent-4); }
.card-resell .card-income { color: var(--accent-2); }
.card-edit .card-income { color: var(--accent-3); }

.hustle-card p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.card-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-list li {
  font-size: 0.78rem;
  color: var(--fg-muted);
  background: rgba(255,255,255,0.04);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.06);
}

/* ---- STRATEGY ---- */
.strategy {
  padding: 100px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(57, 255, 20, 0.02) 50%, transparent 100%);
}

.strategy-inner {
  max-width: 800px;
  margin: 0 auto;
}

.strategy-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 16px;
}

.strategy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.strategy-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
}

.flow-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(57, 255, 20, 0.2);
  flex-shrink: 0;
  width: 60px;
  line-height: 1;
}

.flow-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.flow-content p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.flow-arrow {
  width: 1px;
  height: 24px;
  background: rgba(57, 255, 20, 0.15);
  margin-left: 30px;
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 24px;
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.closing-text {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 40px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}

.footer-note {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 60px 20px 40px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .hustle-grid {
    grid-template-columns: 1fr;
  }

  .flow-step {
    gap: 16px;
  }

  .flow-num {
    font-size: 1.8rem;
    width: 44px;
  }

  .flow-arrow {
    margin-left: 22px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .hustles, .strategy {
    padding: 60px 20px;
  }

  .closing {
    padding: 80px 20px;
  }
}

/* ════════════════════════════════════════════════════════════
   PLAYBOOK PAGES
════════════════════════════════════════════════════════════ */

/* ---- Nav ---- */
.pb-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 24px;
}
.pb-nav-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pb-nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.pb-nav-back {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.pb-nav-back:hover { color: var(--fg); }

/* ---- Hero ---- */
.pb-hero {
  padding: 80px 24px 60px;
  background: radial-gradient(ellipse at 20% 30%, rgba(57,255,20,0.05) 0%, transparent 60%);
}
.pb-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}
.pb-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--pb-accent, var(--accent));
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.pb-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.pb-income {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--pb-accent, var(--accent));
  margin-bottom: 20px;
}
.pb-desc {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.pb-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.pb-toc-link {
  font-size: 0.88rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.pb-toc-link:hover { color: var(--pb-accent, var(--accent)); }
.pb-toc-dot {
  color: rgba(255,255,255,0.15);
  font-size: 0.9rem;
}

/* ---- Sections ---- */
.pb-section {
  padding: 80px 24px;
}
.pb-section-alt {
  background: rgba(255,255,255,0.015);
}
.pb-section-inner {
  max-width: 900px;
  margin: 0 auto;
}
.pb-section-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--pb-accent, var(--accent));
  margin-bottom: 12px;
}
.pb-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.pb-section-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 36px;
  line-height: 1.6;
}

/* ---- Calculator ---- */
.calc-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
}
.calc-items {
  padding: 8px 0;
}
.calc-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.calc-item:last-child { border-bottom: none; }
.calc-item:hover { background: rgba(255,255,255,0.03); }
.calc-item.is-owned { opacity: 0.5; }
.calc-item.is-owned .calc-own-tag { opacity: 1; color: var(--accent); }
.calc-check-wrap {
  position: relative;
  flex-shrink: 0;
}
.calc-own-checkbox {
  position: absolute;
  opacity: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
  z-index: 1;
}
.calc-check-box {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  background: transparent;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calc-own-checkbox:checked + .calc-check-box {
  background: var(--accent);
  border-color: var(--accent);
}
.calc-own-checkbox:checked + .calc-check-box::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid #000;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}
.calc-item-info {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.calc-item-label {
  font-size: 0.95rem;
}
.calc-item-cost {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg-muted);
  flex-shrink: 0;
}
.calc-item-cost.free {
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.calc-own-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--fg-muted);
  opacity: 0;
  transition: opacity 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.calc-summary {
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.calc-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: var(--fg-muted);
}
.calc-total-num { font-family: var(--font-display); font-weight: 600; color: var(--fg); }
.calc-owned-num { font-family: var(--font-display); font-weight: 600; color: var(--accent); }
.calc-need-label { font-weight: 600; color: var(--fg); }
.calc-need-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}
.calc-summary-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 4px 0;
}
.calc-note {
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-style: italic;
  min-height: 1.4em;
}

/* ---- Pricing Table ---- */
.pricing-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.07);
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.pricing-table thead {
  background: rgba(255,255,255,0.03);
}
.pricing-table th {
  padding: 14px 20px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pricing-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.92rem;
  vertical-align: top;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: rgba(255,255,255,0.02); }
.pt-service {
  font-weight: 600;
  color: var(--fg);
  min-width: 180px;
}
.pt-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--pb-accent, var(--accent));
  white-space: nowrap;
  min-width: 120px;
}
.pt-time {
  color: var(--fg-muted);
  white-space: nowrap;
  min-width: 100px;
}
.pt-notes { color: var(--fg-muted); }

/* ---- Checklist ---- */
.checklist-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
}
.checklist-progress-wrap {
  padding: 20px 24px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.checklist-progress-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  overflow: hidden;
}
.checklist-progress-fill {
  height: 100%;
  background: var(--pb-accent, var(--accent));
  border-radius: 3px;
  transition: width 0.3s ease;
}
.checklist-progress-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg-muted);
  white-space: nowrap;
}
.checklist-list {
  list-style: none;
  padding: 8px 0;
}
.checklist-item {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.15s;
}
.checklist-item:last-child { border-bottom: none; }
.checklist-item.is-done { opacity: 0.45; }
.checklist-item.is-done .cli-text { text-decoration: line-through; }
.checklist-label {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 24px;
  cursor: pointer;
}
.checklist-label:hover { background: rgba(255,255,255,0.02); }
.cli-check-wrap {
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}
.cli-checkbox {
  position: absolute;
  opacity: 0;
  width: 22px;
  height: 22px;
  cursor: pointer;
  z-index: 1;
}
.cli-check-box {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  background: transparent;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cli-checkbox:checked + .cli-check-box {
  background: var(--pb-accent, var(--accent));
  border-color: var(--pb-accent, var(--accent));
}
.cli-checkbox:checked + .cli-check-box::after {
  content: '';
  display: block;
  width: 6px;
  height: 10px;
  border: 2px solid #000;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}
.cli-content {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex: 1;
}
.cli-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.18);
  flex-shrink: 0;
}
.cli-text {
  font-size: 0.93rem;
  line-height: 1.5;
}
.checklist-footer {
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(0,0,0,0.15);
}
.checklist-reset {
  font-size: 0.8rem;
  color: var(--fg-muted);
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 100px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  font-family: var(--font-body);
}
.checklist-reset:hover { border-color: rgba(255,255,255,0.25); color: var(--fg); }
.checklist-persist-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ---- Revenue Projection ---- */
.proj-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.proj-slider-section { display: flex; flex-direction: column; gap: 12px; }
.proj-slider-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  color: var(--fg-muted);
}
.proj-slider-val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pb-accent, var(--accent));
}
.proj-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.1);
  outline: none;
  cursor: pointer;
}
.proj-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pb-accent, var(--accent));
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(57,255,20,0.12);
  transition: box-shadow 0.2s;
}
.proj-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 6px rgba(57,255,20,0.2);
}
.proj-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pb-accent, var(--accent));
  cursor: pointer;
  border: none;
}
.proj-slider-range {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}
.proj-output {
  display: flex;
  gap: 32px;
  align-items: flex-end;
}
.proj-bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 120px;
  flex-shrink: 0;
}
.proj-bar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  height: 100%;
}
.proj-bar {
  width: 40px;
  border-radius: 6px 6px 0 0;
  background: var(--pb-accent, var(--accent));
  opacity: 0.7;
  transition: height 0.4s ease;
  min-height: 4px;
}
.proj-bar-dim { opacity: 0.45; }
.proj-bar-bright { opacity: 1; }
.proj-bar-label {
  font-size: 0.72rem;
  color: var(--fg-muted);
  white-space: nowrap;
}
.proj-numbers {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.proj-num-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.proj-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--fg-muted);
}
.proj-num-highlight .proj-num {
  font-size: 2.6rem;
  color: var(--pb-accent, var(--accent));
}
.proj-num-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.proj-growth {
  color: rgba(255,255,255,0.25);
}

/* ---- CTA ---- */
.pb-cta {
  padding: 100px 24px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 100%, rgba(57,255,20,0.05) 0%, transparent 70%);
}
.pb-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}
.pb-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.pb-cta p {
  color: var(--fg-muted);
  font-size: 1rem;
  margin-bottom: 36px;
  line-height: 1.6;
}
.pb-cta-btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
  border: 1px solid rgba(57,255,20,0.3);
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.pb-cta-btn:hover {
  background: rgba(57,255,20,0.08);
  border-color: rgba(57,255,20,0.5);
}

/* ---- Responsive (playbook pages) ---- */
@media (max-width: 600px) {
  .pb-hero { padding: 60px 20px 40px; }
  .pb-section { padding: 60px 20px; }
  .calc-item { padding: 12px 16px; }
  .checklist-label { padding: 14px 16px; }
  .checklist-footer { flex-direction: column; align-items: flex-start; }
  .proj-output { flex-direction: column; }
  .proj-bars { height: 80px; }
  .proj-bar { width: 32px; }
  .proj-numbers { gap: 16px; }
  .proj-num { font-size: 1.5rem; }
  .proj-num-highlight .proj-num { font-size: 2rem; }
  .proj-card { padding: 20px 16px; }
}

/* Hustle cards — link overlay */
.hustle-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.hustle-card-link .hustle-card {
  cursor: pointer;
}
.hustle-card-cta {
  margin-top: 20px;
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--fg-muted);
  transition: border-color 0.2s, color 0.2s;
}
.hustle-card-link:hover .hustle-card-cta {
  border-color: rgba(255,255,255,0.25);
  color: var(--fg);
}

/* ---- New playbook card accent colors ---- */
.card-wash::before    { background: #22d3ee; }
.card-youtube::before { background: #f43f5e; }
.card-thumbs::before  { background: #8b5cf6; }

.card-wash .card-income    { color: #22d3ee; }
.card-youtube .card-income { color: #f43f5e; }
.card-thumbs .card-income  { color: #8b5cf6; }

/* 7 cards: switch from 2-col to 3-col auto-fill */
@media (min-width: 900px) {
  .hustle-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---- Email Capture Section ---- */
.email-capture-section {
  padding: 60px 24px;
  background: linear-gradient(135deg, rgba(57,255,20,0.04) 0%, rgba(168,85,247,0.04) 100%);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.email-capture-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.email-capture-inner h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.email-capture-inner p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  margin-bottom: 24px;
}
.email-box {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
}
.email-box input[type="email"] {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 12px 20px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s;
}
.email-box input[type="email"]::placeholder { color: var(--fg-muted); }
.email-box input[type="email"]:focus { border-color: var(--pb-accent, var(--accent)); }
.email-box button {
  background: var(--pb-accent, var(--accent));
  color: #000;
  border: none;
  border-radius: 100px;
  padding: 12px 22px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.email-box button:hover { opacity: 0.85; }
.email-box button:disabled { opacity: 0.5; cursor: default; }
.email-capture-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--pb-accent, var(--accent));
  margin-top: 4px;
  font-weight: 500;
}
.email-capture-logged {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 4px;
}
.email-capture-logged span { color: var(--pb-accent, var(--accent)); font-weight: 600; }
.email-capture-error { color: #f87171; font-size: 0.82rem; margin-top: 8px; }

@media (max-width: 600px) {
  .email-box { flex-direction: column; }
  .email-box button { border-radius: 100px; }
}