/* Idea Heist 2.0 — TCP Packaging Pyramid aesthetic (cream + red, DM Sans) */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --red: #C8102E;
  --red-hover: #a00d24;
  --red-light: #fef2f2;
  --cream: #f9f6f3;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --green: #16a34a;
  --green-light: #f0fdf4;
  --amber: #d97706;
  --amber-light: #fffbeb;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,.06), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.08), 0 4px 6px rgba(0,0,0,.04);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-btn: 8px;
  --max-width: 1100px;

  /* Aliases used by some component classes */
  --bg: var(--cream);
  --bg-elev: var(--white);
  --card: var(--white);
  --card-hover: var(--gray-50);
  --text: var(--gray-800);
  --text-dim: var(--gray-500);
  --text-faint: var(--gray-400);
  --success: var(--green);
  --error: #ef4444;
  --warn: var(--amber);
  --border: var(--gray-200);
  --border-strong: var(--gray-300);
  --shadow-card: var(--shadow-md);

  /* Accent (was gold; remap to red so existing class refs cascade) */
  --gold: var(--red);
  --gold-bright: var(--red-hover);
  --gold-dim: var(--red-light);
}

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

html, body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--gray-800);
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-hover); text-decoration: underline; }

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

h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; color: var(--gray-900); }
h1 { font-size: 44px; }
h2 { font-size: 32px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }
.eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); }
.text-dim { color: var(--gray-500); }
.text-faint { color: var(--gray-400); }
.small { font-size: 14px; }

/* ── Layout ──────────────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-tight { padding: 48px 0; }

/* ── Nav ──────────────────────────────────────────────────────── */
.app-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 40;
}
.app-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.app-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--gray-900);
  text-decoration: none;
}
.app-brand:hover { text-decoration: none; color: var(--gray-900); }
.app-brand .accent { color: var(--red); }
.app-brand-logo {
  height: 38px;
  width: auto;
  flex-shrink: 0;
}
.app-brand-title-text {
  border-left: 1px solid var(--gray-300);
  padding-left: 10px;
  margin-left: 2px;
}
.app-nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  color: var(--gray-700);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.nav-pill:hover { background: var(--gray-100); color: var(--gray-900); text-decoration: none; }
.nav-pill.active { background: var(--red-light); color: var(--red); }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-btn);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.05s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-hover); color: var(--white); }
.btn-secondary { background: var(--white); color: var(--red); border: 2px solid var(--red); }
.btn-secondary:hover { background: var(--red-light); color: var(--red); }
.btn-ghost { background: transparent; color: var(--gray-500); }
.btn-ghost:hover { background: var(--gray-100); color: var(--gray-900); }
.btn-danger { background: transparent; color: var(--error); border-color: rgba(239, 68, 68, 0.4); }
.btn-danger:hover { background: rgba(239, 68, 68, 0.08); }
.btn-lg { padding: 16px 36px; font-size: 17px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ── Cards ────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.card-tight { padding: 20px; }
.card-hover { transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s; }
.card-hover:hover { border-color: var(--red); box-shadow: var(--shadow-md); transform: translateY(-1px); }

/* ── Inputs ───────────────────────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 13px; font-weight: 700; color: var(--gray-700); }
.field .hint { font-size: 13px; color: var(--gray-500); }
.input, .textarea, .select {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--gray-900);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-light);
}
.textarea { resize: vertical; min-height: 96px; line-height: 1.5; }
.input::placeholder, .textarea::placeholder { color: var(--gray-400); }

.repeater-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.repeater-row .input { flex: 1; }
.icon-btn {
  background: var(--white);
  border: 1px solid var(--gray-300);
  color: var(--gray-500);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-btn:hover { color: var(--error); border-color: var(--error); background: var(--red-light); }
.add-link {
  background: transparent;
  border: 1px dashed var(--gray-300);
  color: var(--red);
  font-family: inherit;
  font-weight: 600;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.add-link:hover { border-color: var(--red); background: var(--red-light); }

/* ── Toggle pill ──────────────────────────────────────────────── */
.toggle-pill {
  display: inline-flex;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 4px;
}
.toggle-pill button {
  background: transparent;
  border: none;
  color: var(--gray-600);
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.toggle-pill button.active { background: var(--red); color: var(--white); }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  padding: 80px 24px 60px;
  text-align: center;
}
.hero h1 { font-size: 48px; font-weight: 800; margin-bottom: 20px; line-height: 1.1; }
.hero h1 .accent { color: var(--red); }
.hero .subhead {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.hero-cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-example {
  margin: 56px auto 0;
  max-width: 780px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: left;
  box-shadow: var(--shadow-md);
}
.hero-example .label { font-size: 12px; color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }

/* ── Feature grid ─────────────────────────────────────────────── */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}
.feature-card .icon {
  width: 44px; height: 44px;
  background: var(--red);
  color: var(--white);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
}
.feature-card h3 { margin-bottom: 8px; font-size: 18px; }
.feature-card p { color: var(--gray-500); font-size: 15px; }

/* ── Steps ────────────────────────────────────────────────────── */
.step { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--gray-200); }
.step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.step h3 { margin-bottom: 6px; font-size: 18px; }
.step p { color: var(--gray-500); }

/* ── Pricing ──────────────────────────────────────────────────── */
.pricing-card { text-align: center; padding: 36px 28px; position: relative; border: 2px solid var(--gray-200); }
.pricing-card.featured { border-color: var(--red); }
.pricing-card.featured::before {
  content: 'Most popular';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
  padding: 4px 14px; border-radius: 999px;
  text-transform: uppercase;
}
.pricing-card .plan-name { font-size: 18px; font-weight: 800; color: var(--gray-900); margin-bottom: 8px; }
.pricing-card .plan-price { font-size: 38px; font-weight: 800; color: var(--red); margin-bottom: 4px; }
.pricing-card .plan-price small { font-size: 16px; color: var(--gray-400); font-weight: 500; }
.pricing-card ul { list-style: none; text-align: left; margin: 24px 0; }
.pricing-card li { padding: 6px 0; color: var(--gray-700); font-size: 14px; padding-left: 24px; position: relative; }
.pricing-card li::before { content: '✓'; color: var(--green); font-weight: 800; position: absolute; left: 0; }

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 4px 0;
}
.faq-q {
  width: 100%; text-align: left;
  background: transparent; border: none;
  color: var(--gray-900); font-family: inherit;
  font-size: 16px; font-weight: 700;
  padding: 20px 0;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-q::after { content: '+'; color: var(--red); font-size: 22px; font-weight: 400; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  display: none;
  padding: 0 0 20px;
  color: var(--gray-500);
  line-height: 1.6;
  font-size: 15px;
}
.faq-item.open .faq-a { display: block; }

/* ── Forms / auth ─────────────────────────────────────────────── */
.auth-wrap {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}
.auth-card { width: 100%; max-width: 440px; }
.auth-card h1 { font-size: 28px; margin-bottom: 8px; }
.auth-card .subtitle { color: var(--gray-500); margin-bottom: 28px; }
.auth-divider { text-align: center; color: var(--gray-400); font-size: 12px; margin: 22px 0; position: relative; }
.auth-divider::before, .auth-divider::after { content: ''; position: absolute; top: 50%; width: calc(50% - 30px); height: 1px; background: var(--gray-200); }
.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }
.auth-card .footer-link { text-align: center; margin-top: 18px; font-size: 14px; color: var(--gray-500); }

/* ── Heist breakdown sections ─────────────────────────────────── */
.video-info {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.video-info img { width: 240px; aspect-ratio: 16/9; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.video-info .meta { display: flex; flex-direction: column; gap: 4px; }
.video-info .title { font-size: 18px; font-weight: 700; margin-bottom: 4px; color: var(--gray-900); }
.video-info .stat { color: var(--gray-500); font-size: 14px; }
.outlier-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--red); color: var(--white);
  padding: 4px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
  margin-top: 8px;
  align-self: flex-start;
}
@media (max-width: 720px) {
  .video-info { flex-direction: column; }
  .video-info img { width: 100%; }
}

.breakdown-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
@media (max-width: 720px) { .breakdown-2x2 { grid-template-columns: 1fr; } }
.breakdown-cell {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.breakdown-cell .label { font-size: 11px; color: var(--red); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 8px; }
.breakdown-cell .value { font-size: 16px; line-height: 1.5; color: var(--gray-900); }

.section-title {
  display: flex; align-items: baseline; justify-content: space-between;
  margin: 32px 0 16px;
}
.section-title h2 { font-size: 22px; }

.bullet-list { list-style: none; padding: 0; }
.bullet-list li {
  padding-left: 28px; position: relative;
  margin-bottom: 12px;
  color: var(--gray-800);
  line-height: 1.55;
}
.bullet-list li::before {
  content: '→'; color: var(--red);
  position: absolute; left: 0; top: 0;
  font-weight: 700;
}

.bucket-row {
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
}
.bucket-row .bucket-name { font-weight: 700; color: var(--red); margin-bottom: 4px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; }
.bucket-row .bucket-app { color: var(--gray-700); font-size: 15px; line-height: 1.55; }

.anchor-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.anchor-yes { background: var(--green-light); color: var(--green); }
.anchor-no { background: var(--amber-light); color: var(--amber); }

.variation-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 14px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.variation-card .vnum {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: var(--red); color: var(--white);
  border-radius: 50%; font-weight: 800; font-size: 13px;
  margin-bottom: 12px;
}
.variation-card .field-label { font-size: 11px; color: var(--red); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 4px; }
.variation-card .field-value { font-size: 16px; line-height: 1.55; margin-bottom: 12px; color: var(--gray-900); }
.variation-card .field-value:last-child { margin-bottom: 0; }

/* ── Loading ──────────────────────────────────────────────────── */
.loading-dots {
  display: inline-flex; gap: 6px; align-items: center;
}
.loading-dots span {
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 1.2s ease-in-out infinite;
}
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes pulse-dot {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1); }
}
.loading-block {
  text-align: center;
  padding: 80px 24px;
}
.loading-block h3 { margin: 24px 0 8px; }
.loading-block p { color: var(--gray-500); }

.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 0%, var(--gray-200) 50%, var(--gray-100) 100%);
  background-size: 200% 100%;
  animation: skeleton 1.4s ease-in-out infinite;
  border-radius: 8px;
}
@keyframes skeleton { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ── Banners ──────────────────────────────────────────────────── */
.banner {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 14px;
  border: 1px solid;
}
.banner-error { background: var(--red-light); border-color: rgba(200, 16, 46, 0.3); color: var(--red); }
.banner-success { background: var(--green-light); border-color: rgba(22, 163, 74, 0.3); color: var(--green); }
.banner-info { background: var(--red-light); border-color: rgba(200, 16, 46, 0.3); color: var(--red); }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  padding: 32px 24px;
  border-top: 1px solid var(--gray-200);
  margin-top: 60px;
  text-align: center;
  color: var(--gray-400);
  font-size: 13px;
}
.footer a { color: var(--gray-500); margin: 0 12px; }
.footer a:hover { color: var(--red); }

/* ── Channel cards on dashboard ──────────────────────────────── */
.channel-card { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.channel-card .meta h3 { font-size: 18px; margin-bottom: 4px; }
.channel-card .meta .sub { color: var(--gray-500); font-size: 13px; }
.channel-card .actions { display: flex; gap: 8px; flex-shrink: 0; }

.stat-row { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 32px; }
.stat-pill {
  background: var(--white); border: 1px solid var(--gray-200);
  padding: 18px 22px; border-radius: var(--radius-lg);
  flex: 1; min-width: 180px;
  box-shadow: var(--shadow-sm);
}
.stat-pill .label { font-size: 11px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; font-weight: 700; }
.stat-pill .value { font-size: 26px; font-weight: 800; color: var(--red); }

/* ── Empty state ──────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 64px 24px;
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-lg);
  background: var(--white);
}
.empty-state h3 { margin-bottom: 8px; }
.empty-state p { color: var(--gray-500); margin-bottom: 20px; }

/* ── Heist results — condensed breakdown + 10 idea cards + voting ────────── */
.breakdown-summary {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  margin-top: 20px;
  box-shadow: var(--shadow-sm);
}
.breakdown-summary .row {
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 6px;
  color: var(--gray-800);
}
.breakdown-summary .row strong { color: var(--red); margin-right: 6px; }
.breakdown-summary .row:last-child { margin-bottom: 0; }

.saved-panel {
  background: var(--cream);
  border: 1px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  margin-top: 24px;
}
.saved-panel .saved-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.saved-panel .saved-list {
  display: flex; flex-direction: column; gap: 8px;
}
.saved-panel .saved-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--white);
  padding: 8px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.saved-panel .saved-text {
  font-size: 14px;
  color: var(--gray-800);
  flex: 1;
}

#ideas-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.idea-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s, transform 0.05s;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.idea-card:hover { border-color: var(--gray-300); }
.idea-card.voted-up { border-color: var(--green); background: var(--green-light); }
.idea-card.voted-down { border-color: var(--gray-300); opacity: 0.5; }

.idea-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 4px;
}
.bucket-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  background: var(--red-light);
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.bucket-pill.small { font-size: 10px; padding: 2px 8px; }

.vote-row { display: flex; gap: 4px; }
.vote-btn {
  background: transparent;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  width: 30px; height: 30px;
  cursor: pointer;
  font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.15s, border-color 0.15s;
  padding: 0;
}
.vote-btn:hover { background: var(--gray-100); }
.vote-btn.active { background: var(--gray-900); border-color: var(--gray-900); }

.idea-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.35;
}
.idea-hook {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.4;
}
.idea-meta {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
}
.idea-meta strong { color: var(--gray-800); font-weight: 600; }

.regen-block {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-top: 8px;
  box-shadow: var(--shadow-sm);
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 720px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  .hero { padding: 60px 20px 50px; }
  .hero h1 { font-size: 34px; }
  .hero .subhead { font-size: 17px; }
  .section { padding: 56px 0; }
  .app-brand-title-text { font-size: 16px; }
}
