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

:root {
  --bg: #0a0a0f;
  --surface: #13131a;
  --surface2: #1c1c27;
  --border: #2a2a3a;
  --accent: #7c3aed;
  --accent2: #a855f7;
  --accent-glow: rgba(124, 58, 237, 0.25);
  --text: #f0f0f8;
  --text-muted: #8888aa;
  --green: #10b981;
  --orange: #f59e0b;
  --pink: #ec4899;
  --blue: #3b82f6;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

#app { min-height: 100vh; }

/* ── SCREENS ── */
.screen { display: none; min-height: 100vh; }
.screen.active { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px; }

/* ── WELCOME ── */
.hero {
  max-width: 620px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: var(--accent-glow);
  border: 1px solid var(--accent);
  color: var(--accent2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.accent {
  background: linear-gradient(135deg, var(--accent2), #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub em { color: var(--text); font-style: normal; font-weight: 600; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 36px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  display: inline-block;
  margin-bottom: 16px;
}

.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }

.hero-note {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── QUIZ ── */
.quiz-container {
  max-width: 640px;
  width: 100%;
}

.progress-bar {
  background: var(--surface2);
  border-radius: 999px;
  height: 6px;
  margin-bottom: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 999px;
  transition: width 0.4s ease;
}

.progress-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
  text-align: right;
}

.question-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  margin-bottom: 24px;
}

.question-number {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent2);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.question-text {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}

.question-hint {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.options-grid {
  display: grid;
  gap: 12px;
}

.option {
  background: var(--surface2);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
}

.option:hover {
  border-color: var(--accent);
  background: rgba(124, 58, 237, 0.08);
}

.option.selected {
  border-color: var(--accent);
  background: rgba(124, 58, 237, 0.15);
}

.option-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}

.option-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.option-text span {
  font-size: 13px;
  color: var(--text-muted);
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-back {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-back:hover { border-color: var(--text-muted); color: var(--text); }

.btn-next {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 28px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  margin-left: auto;
}

.btn-next:disabled { opacity: 0.35; cursor: not-allowed; }
.btn-next:not(:disabled):hover { opacity: 0.9; transform: translateY(-1px); }

/* ── RESULTS ── */
.results-container {
  max-width: 780px;
  width: 100%;
  padding: 12px 0 60px;
}

.results-header {
  text-align: center;
  margin-bottom: 48px;
}

.result-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-glow);
  border: 1px solid var(--accent);
  color: var(--accent2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.results-header h2 {
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.results-header p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.archetype-card {
  border-radius: 24px;
  padding: 36px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.archetype-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--card-color, linear-gradient(90deg, var(--accent), var(--accent2)));
}

.archetype-card.talker { --card-color: linear-gradient(90deg, #7c3aed, #a855f7); background: rgba(124,58,237,0.07); }
.archetype-card.writer { --card-color: linear-gradient(90deg, #3b82f6, #60a5fa); background: rgba(59,130,246,0.07); }
.archetype-card.educator { --card-color: linear-gradient(90deg, #10b981, #34d399); background: rgba(16,185,129,0.07); }
.archetype-card.visual { --card-color: linear-gradient(90deg, #ec4899, #f472b6); background: rgba(236,72,153,0.07); }
.archetype-card.podcaster { --card-color: linear-gradient(90deg, #f59e0b, #fbbf24); background: rgba(245,158,11,0.07); }
.archetype-card.builder { --card-color: linear-gradient(90deg, #ef4444, #f87171); background: rgba(239,68,68,0.07); }
.archetype-card.repurposer { --card-color: linear-gradient(90deg, #06b6d4, #22d3ee); background: rgba(6,182,212,0.07); }

.archetype-emoji { font-size: 48px; margin-bottom: 16px; display: block; }

.archetype-card h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
}

.archetype-card .tagline {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.archetype-card .description {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.section-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 20px;
}

.section-card h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.reality-check {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.reality-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--orange);
  margin-bottom: 6px;
}

.content-formats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0;
}

.format-tag {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
}

.tool-list {
  display: grid;
  gap: 12px;
}

.tool-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--surface2);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.tool-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.tool-info strong { display: block; font-size: 14px; font-weight: 700; }
.tool-info span { font-size: 13px; color: var(--text-muted); }

.creator-list {
  display: grid;
  gap: 12px;
}

.creator-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--surface2);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.creator-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.creator-info strong { display: block; font-size: 14px; font-weight: 700; }
.creator-info span { font-size: 13px; color: var(--text-muted); }

.creator-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(168, 85, 247, 0.4);
  transition: border-color 0.2s, color 0.2s;
}
.creator-link:hover { color: var(--accent2); border-bottom-color: var(--accent2); }

.action-steps {
  counter-reset: steps;
  display: grid;
  gap: 14px;
}

.action-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: var(--surface2);
  border-radius: 14px;
  border: 1px solid var(--border);
}

.step-num {
  counter-increment: steps;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.step-text strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.step-text span { font-size: 13px; color: var(--text-muted); }

.cta-section {
  text-align: center;
  margin-top: 48px;
  padding: 48px 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, var(--accent-glow), transparent 70%);
  pointer-events: none;
}

.cta-section h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-section p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 15px;
}

.btn-restart {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 16px;
}

.btn-restart:hover { border-color: var(--text-muted); color: var(--text); }

.strength-bars { display: grid; gap: 12px; }

.strength-bar-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.bar-label span:last-child { color: var(--text-muted); }

.bar-track {
  background: var(--surface2);
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 1s ease;
}

.bar-fill.talker { background: linear-gradient(90deg, #7c3aed, #a855f7); }
.bar-fill.writer { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.bar-fill.educator { background: linear-gradient(90deg, #10b981, #34d399); }
.bar-fill.visual { background: linear-gradient(90deg, #ec4899, #f472b6); }
.bar-fill.podcaster { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.bar-fill.builder { background: linear-gradient(90deg, #ef4444, #f87171); }
.bar-fill.repurposer { background: linear-gradient(90deg, #06b6d4, #22d3ee); }

/* ── BUSINESS CONTEXT ── */
.business-context { order: -1; }

.context-intro {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.context-insights { display: grid; gap: 14px; }

.context-insight {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--surface2);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.context-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.context-insight p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

.context-insight p strong { color: var(--text); }

/* ── PLAN GATE ── */
.plan-gate-wrapper { position: relative; margin-bottom: 20px; }

.plan-gate {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.plan-gate-preview {
  pointer-events: none;
  user-select: none;
  padding: 28px 32px 0;
}

.preview-week .week-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent2);
  margin-bottom: 12px;
}

.blurred-task { opacity: 0.35; filter: blur(3px); }

.plan-gate-blur {
  position: absolute;
  bottom: 260px;
  left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent, var(--surface));
  pointer-events: none;
}

.plan-gate-form {
  position: relative;
  padding: 32px;
  text-align: center;
  z-index: 2;
}

.gate-icon { font-size: 36px; margin-bottom: 14px; }

.plan-gate-form h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.plan-gate-form p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.gate-fields {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.gate-fields input {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}

.gate-fields input::placeholder { color: var(--text-muted); }
.gate-fields input:focus { border-color: var(--accent); }

.gate-submit {
  width: 100%;
  max-width: 420px;
  padding: 15px;
  font-size: 16px;
}

.gate-note {
  font-size: 12px !important;
  color: var(--text-muted) !important;
  margin-top: 12px !important;
  margin-bottom: 0 !important;
}

.gate-error {
  color: #f87171;
  font-size: 13px;
  margin-top: 10px;
}

/* ── 30-DAY PLAN ── */
.plan30-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 20px;
}

.plan30-header {
  padding: 32px 32px 24px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(124,58,237,0.08), transparent);
}

.plan30-badge {
  display: inline-block;
  background: var(--accent-glow);
  border: 1px solid var(--accent);
  color: var(--accent2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.plan30-header h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.plan30-header p {
  font-size: 14px;
  color: var(--text-muted);
}

.plan30-week {
  border-bottom: 1px solid var(--border);
}

.plan30-week:last-child { border-bottom: none; }

.week-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent2);
  padding: 20px 32px 12px;
  background: rgba(124,58,237,0.04);
}

.week-tasks { padding: 0 32px 20px; }

.week-task {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.week-task:last-child { border-bottom: none; }

.task-day {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 46px;
  padding-top: 2px;
  flex-shrink: 0;
}

.task-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}

/* ── Plan Sections (pillars, rhythm, hooks, prompts) ─────────────────────── */
.plan-section {
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
}
.plan-section:last-child { border-bottom: none; }

.plan-section-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent2);
  margin-bottom: 6px;
}

.plan-section-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.5;
}

/* Weekly Rhythm */
.rhythm-grid { display: flex; flex-direction: column; gap: 8px; }
.rhythm-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.rhythm-day {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent2);
  min-width: 72px;
  padding-top: 1px;
  flex-shrink: 0;
}
.rhythm-task { font-size: 14px; line-height: 1.5; color: var(--text); }

/* Content Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.pillar-card {
  background: rgba(124,58,237,0.06);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 14px;
  padding: 18px 16px;
}
.pillar-number {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent2);
  margin-bottom: 8px;
}
.pillar-icon { font-size: 22px; margin-bottom: 8px; }
.pillar-name { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.pillar-desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* Hook Swipe File */
.hooks-list { display: flex; flex-direction: column; gap: 8px; }
.hook-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.hook-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent2);
  min-width: 20px;
  padding-top: 2px;
  flex-shrink: 0;
}
.hook-text { font-size: 13px; line-height: 1.5; color: var(--text); font-style: italic; }

/* Prompt Templates */
.prompts-list { display: flex; flex-direction: column; gap: 12px; }
.prompt-item {
  padding: 16px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
}
.prompt-num {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent2);
  margin-bottom: 8px;
}
.prompt-text { font-size: 13px; line-height: 1.7; color: var(--text); }

@media (max-width: 600px) {
  .plan30-header { padding: 24px 20px 18px; }
  .week-label { padding: 16px 20px 10px; }
  .week-tasks { padding: 0 20px 16px; }
  .plan-section { padding: 22px 20px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .rhythm-day { min-width: 56px; }
}

@media (max-width: 600px) {
  .question-card { padding: 24px 20px; }
  .archetype-card { padding: 24px 20px; }
  .section-card { padding: 22px 18px; }
}

/* ── Danny's Picks ───────────────────────────────────────────────────────── */
.danny-picks-card {
  border-color: rgba(245, 158, 11, 0.3) !important;
  background: linear-gradient(135deg, rgba(245,158,11,0.06), transparent) !important;
}
.danny-picks-header { margin-bottom: 18px; }
.danny-picks-badge {
  display: inline-block;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.4);
  color: #f59e0b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.danny-picks-header h4 { margin-bottom: 6px; }
.danny-picks-header p { font-size: 13px; color: var(--text-muted); margin: 0; }
.danny-picks-grid { display: flex; flex-direction: column; gap: 12px; }
.danny-pick-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.danny-pick-item:hover {
  border-color: rgba(245,158,11,0.5);
  background: rgba(245,158,11,0.06);
}
.pick-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.pick-info { display: flex; flex-direction: column; gap: 4px; }
.pick-info strong { font-size: 15px; font-weight: 700; }
.pick-info span { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.pick-cta { font-size: 13px; font-weight: 700; color: #f59e0b; margin-top: 6px; }
@media (max-width: 600px) { .danny-pick-item { flex-direction: column; gap: 10px; } }

/* ── Secondary Archetype ─────────────────────────────────────────────────── */
.secondary-archetype {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 16px;
}
.secondary-archetype p { margin: 0; font-size: 14px; color: var(--text-muted); }
.secondary-archetype strong { color: var(--text); }

/* ── Avoid Section ───────────────────────────────────────────────────────── */
.avoid-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.avoid-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(239,68,68,0.05);
  border: 1px solid rgba(239,68,68,0.15);
  border-radius: 10px; padding: 14px 16px;
}
.avoid-icon { font-size: 20px; flex-shrink: 0; }
.avoid-content { flex: 1; }
.avoid-label { font-weight: 600; font-size: 14px; color: #fca5a5; margin-bottom: 3px; }
.avoid-reason { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ── Ideas Grid ──────────────────────────────────────────────────────────── */
.ideas-intro { margin-bottom: 20px; }
.ideas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px;
}
.idea-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
  transition: border-color 0.2s, background 0.2s;
}
.idea-item:hover { background: rgba(124,58,237,0.08); border-color: rgba(124,58,237,0.3); }
.idea-num { font-weight: 700; color: var(--accent2); margin-right: 6px; }
@media (max-width: 600px) { .ideas-grid { grid-template-columns: 1fr; } }

/* ── Share Buttons ───────────────────────────────────────────────────────── */
.share-row {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 12px; justify-content: center;
}
.share-label { font-size: 13px; color: var(--text-muted); margin-right: 4px; }
.share-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 50px; font-size: 14px; font-weight: 700;
  text-decoration: none; transition: transform 0.15s, opacity 0.15s;
  letter-spacing: 0.01em;
}
.share-btn:hover { opacity: 0.9; transform: translateY(-2px); }
.share-btn.share-x { background: #000; color: #fff; border: 1px solid rgba(255,255,255,0.15); }
.share-btn.share-li { background: #0077b5; color: #fff; }
.share-btn.share-fb { background: #1877f2; color: #fff; }
.cta-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 32px 0; }

/* ── Plan Progress Bar ───────────────────────────────────────────────────── */
.plan-progress-wrap { margin-top: 18px; }
.plan-progress-track {
  height: 8px; background: rgba(255,255,255,0.1);
  border-radius: 4px; overflow: hidden; margin-bottom: 8px;
}
.plan-progress-fill {
  height: 100%; width: 0%; background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 4px; transition: width 0.4s ease;
}
.plan-progress-label { font-size: 13px; color: var(--text-muted); }

/* ── Task Checkbox ───────────────────────────────────────────────────────── */
.week-task { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.week-task:last-child { border-bottom: none; }
.task-checkbox-label { cursor: pointer; flex-shrink: 0; padding-top: 2px; position: relative; display: inline-block; width: 20px; height: 20px; }
.task-checkbox { position: absolute; opacity: 0; width: 0; height: 0; }
.task-checkmark {
  position: absolute; top: 0; left: 0; width: 20px; height: 20px;
  background: rgba(255,255,255,0.06); border: 2px solid rgba(255,255,255,0.2);
  border-radius: 5px; transition: background 0.2s, border-color 0.2s;
}
.task-checkbox:checked ~ .task-checkmark {
  background: var(--accent); border-color: var(--accent);
}
.task-checkmark::after {
  content: ''; position: absolute; display: none;
  left: 5px; top: 1px; width: 6px; height: 11px;
  border: solid white; border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.task-checkbox:checked ~ .task-checkmark::after { display: block; }
.task-body { flex: 1; }
.task-done .task-text { text-decoration: line-through; color: var(--text-muted); opacity: 0.6; }
.task-done .task-day { opacity: 0.5; }

/* ── Text Input Question ─────────────────────────────────────────────────── */
.text-input-wrap { margin-top: 16px; }
.quiz-text-input {
  width: 100%; padding: 14px 16px; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
  color: var(--text); font-size: 15px; font-family: inherit;
  outline: none; transition: border-color 0.2s;
  box-sizing: border-box;
}
.quiz-text-input:focus { border-color: var(--accent); }
.quiz-text-input::placeholder { color: var(--text-muted); }
.text-optional-note { font-size: 12px; color: var(--text-muted); margin-top: 8px; }

/* ── Section Intro ───────────────────────────────────────────────────────── */
.section-intro { font-size: 14px; color: var(--text-muted); margin: 0 0 18px; line-height: 1.6; }

/* ── Readiness Score ─────────────────────────────────────────────────────── */
.readiness-score-wrap { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 24px; flex-wrap: wrap; }
.readiness-ring { flex-shrink: 0; width: 120px; }
.ring-svg { width: 120px; height: 120px; transform: rotate(0deg); }
.readiness-info { flex: 1; min-width: 200px; }
.readiness-tier { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.readiness-info p { font-size: 14px; color: var(--text-muted); margin: 0 0 12px; line-height: 1.6; }
.readiness-next { font-size: 13px; background: rgba(255,255,255,0.04); border-left: 3px solid var(--accent); padding: 10px 14px; border-radius: 0 8px 8px 0; line-height: 1.6; }
.readiness-bars { display: flex; flex-direction: column; gap: 10px; }
.readiness-bar-row { display: flex; align-items: center; gap: 10px; }
.readiness-bar-label { font-size: 12px; color: var(--text-muted); width: 160px; flex-shrink: 0; text-transform: capitalize; }
.readiness-bar-track { flex: 1; height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.readiness-bar-fill { height: 100%; width: 0%; border-radius: 3px; transition: width 0.6s ease; }
.readiness-bar-pct { font-size: 12px; color: var(--text-muted); width: 32px; text-align: right; flex-shrink: 0; }

/* ── Bottleneck Card ─────────────────────────────────────────────────────── */
.bottleneck-card { border-left: 3px solid #ef4444 !important; }
.bottleneck-card h4 { color: #fca5a5; }
.bottleneck-card > p { font-size: 14px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.6; }
.bottleneck-fix { background: rgba(239,68,68,0.06); border: 1px solid rgba(239,68,68,0.15); border-radius: 10px; padding: 14px 16px; font-size: 14px; line-height: 1.7; }

/* ── Platform Recommendations ────────────────────────────────────────────── */
.platform-list { display: flex; flex-direction: column; gap: 10px; }
.platform-item { padding: 14px 16px; border-radius: 10px; }
.platform-primary { background: rgba(124,58,237,0.08); border: 1px solid rgba(124,58,237,0.25); }
.platform-secondary { background: rgba(59,130,246,0.06); border: 1px solid rgba(59,130,246,0.2); }
.platform-avoid { background: rgba(239,68,68,0.04); border: 1px solid rgba(239,68,68,0.15); }
.platform-badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 2px 8px; border-radius: 4px; background: rgba(255,255,255,0.1); color: var(--text-muted); margin-bottom: 6px; }
.platform-badge-avoid { background: rgba(239,68,68,0.15); color: #fca5a5; }
.platform-item strong { display: block; font-size: 15px; margin-bottom: 4px; }
.platform-item p { margin: 0; font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── Radar Chart ─────────────────────────────────────────────────────────── */
.radar-wrap { display: flex; gap: 24px; align-items: flex-start; flex-wrap: wrap; }
.radar-svg { width: 100%; max-width: 300px; flex-shrink: 0; }
.radar-legend { flex: 1; min-width: 180px; display: flex; flex-direction: column; gap: 10px; justify-content: center; }
.radar-legend-item { display: flex; align-items: center; gap: 8px; }
.radar-legend-label { font-size: 12px; color: var(--text-muted); width: 80px; flex-shrink: 0; text-transform: capitalize; }
.radar-legend-bar { flex: 1; height: 5px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.radar-legend-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent2)); border-radius: 3px; }
.radar-legend-pct { font-size: 11px; color: var(--text-muted); width: 28px; text-align: right; flex-shrink: 0; }

/* ── Content Personality ─────────────────────────────────────────────────── */
.personality-inner { display: flex; gap: 16px; align-items: flex-start; }
.personality-icon { font-size: 40px; flex-shrink: 0; }
.personality-name { font-size: 18px; font-weight: 800; display: block; margin-bottom: 8px; color: var(--accent2); }
.personality-text p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 0 0 12px; }
.personality-tags { display: flex; flex-direction: column; gap: 8px; }
.personality-tag { font-size: 13px; line-height: 1.6; padding: 8px 12px; border-radius: 8px; }
.personality-tag.strength { background: rgba(16,185,129,0.07); border: 1px solid rgba(16,185,129,0.2); }
.personality-tag.watch { background: rgba(245,158,11,0.07); border: 1px solid rgba(245,158,11,0.2); }

/* ── Admired Creator ─────────────────────────────────────────────────────── */
.admire-card { background: rgba(168,85,247,0.05); border: 1px solid rgba(168,85,247,0.2) !important; }
.admire-questions { padding-left: 20px; margin: 10px 0 14px; display: flex; flex-direction: column; gap: 6px; }
.admire-questions li { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.admire-note { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ── Content Cadence ─────────────────────────────────────────────────────── */
.cadence-week { display: flex; flex-direction: column; gap: 0; border-radius: 10px; overflow: hidden; border: 1px solid rgba(255,255,255,0.07); margin-bottom: 14px; }
.cadence-item { display: flex; align-items: center; gap: 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.cadence-item:last-child { border-bottom: none; }
.cadence-day { background: rgba(124,58,237,0.15); color: var(--accent2); font-weight: 700; font-size: 13px; padding: 12px 16px; width: 60px; flex-shrink: 0; border-right: 1px solid rgba(255,255,255,0.05); text-align: center; }
.cadence-task { font-size: 14px; padding: 12px 16px; color: var(--text); line-height: 1.5; }
.cadence-note { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }

@media (max-width: 600px) {
  .readiness-score-wrap { flex-direction: column; }
  .readiness-bar-label { width: 110px; font-size: 11px; }
  .radar-wrap { flex-direction: column; }
  .radar-svg { max-width: 100%; }
  .personality-inner { flex-direction: column; }
}
