* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
    background: #0a0a0a; color: #e0e0e0; line-height: 1.6; padding: 20px;
}
.container { max-width: 1100px; margin: 0 auto; }
header { border-bottom: 2px solid #4ade80; padding-bottom: 16px; margin-bottom: 24px; }
h1 { color: #4ade80; font-size: 28px; }
h1::before { content: '$ '; color: #64748b; }
.tagline { color: #64748b; font-size: 14px; margin-top: 4px; }
nav { margin: 20px 0; }
nav a {
    color: #60a5fa; text-decoration: none; margin-right: 12px;
    padding: 8px 12px; border: 1px solid #1e3a5f; border-radius: 4px;
    display: inline-block;
}
nav a:hover { background: #1e3a5f; }
nav a.active { background: #1e3a5f; color: #4ade80; border-color: #4ade80; }
.alert {
    background: #422006; border-left: 4px solid #ea580c;
    padding: 12px 16px; margin: 16px 0; border-radius: 4px;
}
.panel, .hero-panel {
    background: #171717; border: 1px solid #262626;
    padding: 24px; border-radius: 8px; margin: 24px 0;
}
.hero-panel { border-color: #a855f7; }
.hero-panel h2 { color: #c084fc; margin-bottom: 12px; }
.panel h2 { color: #fbbf24; margin-bottom: 16px; font-size: 18px; }
.panel h2::before { content: '// '; color: #64748b; }
.muted { color: #94a3b8; font-size: 13px; }
.phase-preview { list-style: none; margin-top: 16px; }
.phase-preview li {
    padding: 8px 0; border-bottom: 1px solid #262626; font-size: 13px;
}
.phase-num {
    display: inline-block; width: 24px; height: 24px; line-height: 24px;
    text-align: center; background: #4c1d95; color: #e9d5ff;
    border-radius: 50%; font-size: 11px; margin-right: 10px;
}
.starter-form .form-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px;
}
.starter-form label { display: flex; flex-direction: column; gap: 6px; font-size: 12px; color: #94a3b8; }
.starter-form .full-width { display: block; margin: 12px 0; font-size: 12px; color: #94a3b8; }
.starter-form input, .starter-form textarea {
    background: #0a0a0a; color: #e0e0e0; border: 1px solid #404040;
    padding: 12px; border-radius: 4px; font-family: inherit; font-size: 14px;
}
.starter-form input:focus, .starter-form textarea:focus { outline: none; border-color: #a855f7; }
.btn-starter {
    width: 100%; margin-top: 16px; padding: 18px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #fff; border: none; border-radius: 8px;
    font-family: inherit; font-size: 18px; font-weight: bold; cursor: pointer;
}
.btn-starter:hover { filter: brightness(1.1); }
.btn-starter:disabled { background: #404040; color: #64748b; cursor: not-allowed; }
.phase-steps { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.phase-step {
    display: flex; align-items: center; gap: 12px; padding: 10px 12px;
    background: #0a0a0a; border-radius: 6px; border: 1px solid #262626;
    font-size: 13px;
}
.phase-step.done { border-color: #4ade80; }
.phase-step.active { border-color: #a855f7; }
.phase-step.error { border-color: #dc2626; }
.phase-step .icon { width: 28px; text-align: center; }
.hidden { display: none !important; }
.loading { color: #fbbf24; text-align: center; padding: 16px; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 10px; text-align: left; border-bottom: 1px solid #262626; font-size: 13px; }
th { color: #fbbf24; font-size: 11px; text-transform: uppercase; }
a { color: #60a5fa; }
.badge-completed { color: #4ade80; }
.badge-failed { color: #f87171; }
.badge-running { color: #fbbf24; }
.result-header { text-align: center; margin: 24px 0; }
.score-ring {
    font-size: 56px; font-weight: bold; color: #a855f7;
}
.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.tab-btn {
    background: #0a0a0a; border: 1px solid #404040; color: #94a3b8;
    padding: 8px 14px; border-radius: 4px; cursor: pointer; font-family: inherit;
}
.tab-btn.active { border-color: #a855f7; color: #e9d5ff; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.task-row {
    padding: 10px 12px; margin: 6px 0; border-left: 3px solid #404040;
    background: #0a0a0a; border-radius: 4px; font-size: 13px;
}
.task-row.done { border-color: #4ade80; }
.task-row.todo { border-color: #fbbf24; }
.task-row.manual { border-color: #60a5fa; }
.template-box {
    background: #0a0a0a; border: 1px solid #262626; padding: 14px;
    margin: 10px 0; border-radius: 6px; white-space: pre-wrap; font-size: 12px;
}
.copy-btn {
    background: #1e3a5f; color: #60a5fa; border: none; padding: 6px 12px;
    border-radius: 4px; cursor: pointer; font-family: inherit; font-size: 11px;
    margin-top: 8px;
}
.review-card {
    background: #0a0a0a; padding: 12px; margin: 8px 0; border-radius: 6px;
    border: 1px solid #262626;
}
.photo-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px;
}
.photo-slot {
    background: #0a0a0a; border: 1px dashed #404040; padding: 12px; border-radius: 6px;
}
.photo-slot.uploaded { border-color: #4ade80; border-style: solid; }
.qr-img { max-width: 220px; border-radius: 8px; margin: 12px 0; }
.btn-link {
    display: inline-block; background: #4ade80; color: #0a0a0a;
    padding: 10px 18px; border-radius: 4px; text-decoration: none;
    font-weight: bold; margin: 8px 8px 8px 0;
}
.btn-secondary {
    display: inline-block; background: #1e3a5f; color: #60a5fa;
    padding: 8px 14px; border-radius: 4px; text-decoration: none; font-size: 12px;
}
.btn-row { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 12px; }
.api-panel { border-color: #404040; }
.api-pill {
    display: inline-block; padding: 4px 10px; border-radius: 12px;
    font-size: 11px; margin-right: 8px; border: 1px solid #404040;
}
.api-pill.ok { border-color: #4ade80; color: #4ade80; }
.api-pill.miss { border-color: #ea580c; color: #ea580c; }
.api-help summary { cursor: pointer; color: #60a5fa; margin-top: 8px; }
.env-hint {
    background: #0a0a0a; padding: 12px; margin: 8px 0;
    font-size: 11px; border-radius: 4px; overflow-x: auto;
}
.roadmap-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px;
}
.roadmap-col { background: #0a0a0a; padding: 12px; border-radius: 6px; border: 1px solid #262626; }
.roadmap-col h3 { font-size: 12px; color: #a855f7; margin-bottom: 8px; }
.roadmap-col li { font-size: 11px; color: #94a3b8; padding: 4px 0; list-style: none; }
.roadmap-col li::before { content: '✓ '; color: #4ade80; }
.check-row {
    display: flex; align-items: center; gap: 10px; padding: 10px 12px;
    margin: 6px 0; background: #0a0a0a; border-radius: 6px; cursor: pointer;
}
.check-row.done span { text-decoration: line-through; color: #64748b; }
.check-row input { accent-color: #a855f7; width: 18px; height: 18px; }
.review-live-box {
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
    padding: 16px; background: #0a0a0a; border-radius: 8px; margin-bottom: 12px;
}
.live-count { font-size: 36px; font-weight: bold; color: #4ade80; }
.badge-resp { font-size: 10px; background: #422006; color: #ea580c; padding: 2px 6px; border-radius: 4px; margin-left: 8px; }
.badge-resp.done { background: #14532d; color: #4ade80; }
.section-list { margin: 8px 0 0 16px; font-size: 12px; color: #94a3b8; }
.alert-inline { color: #ea580c; font-size: 12px; margin: 8px 0; }
.gbp-push { font-size: 11px; color: #94a3b8; display: flex; align-items: center; gap: 6px; margin: 6px 0; }
.btn-upload {
    font-size: 11px; padding: 6px 10px; background: #7c3aed; color: #fff;
    border: none; border-radius: 4px; cursor: pointer; font-family: inherit;
}
.template-entry { margin-top: 20px; padding-top: 16px; border-top: 1px solid #262626; }
