:root {
  --bg: #FAFAF8;
  --surface: #FFFFFF;
  --ink: #1A1A2E;
  --ink-2: #5A5A72;
  --accent: #FF4D29;
  --accent-dim: rgba(255, 77, 41, 0.08);
  --border: rgba(26, 26, 46, 0.1);
  --radius: 12px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 32px;
}
.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: var(--ink);
}

/* ── SECTION BASE ── */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 48px;
}

/* ── HERO ── */
.hero {
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--ink);
  margin-bottom: 28px;
}
.lede {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 28px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.hero-cta:hover { opacity: 0.88; }

/* ── HERO GRAPHIC ── */
.hero-graphic {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}
.coord-node {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}
.node-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.node-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.arrow-line {
  padding-left: 22px;
  height: 24px;
}
.arrow-line svg {
  display: block;
  height: 100%;
  width: 2px;
}

/* ── HOW IT WORKS ── */
.howitworks {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.step {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 20px;
  line-height: 1;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ink);
}
.step p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.65;
}

/* ── FEATURES ── */
.features {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-card {
  padding: 40px;
  background: var(--surface);
  transition: background 0.2s;
}
.feature-card:hover {
  background: var(--accent-dim);
}
.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.65;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 96px 0;
  background: var(--ink);
  color: var(--bg);
}
.manifesto .section-label {
  color: rgba(250,249,248,0.4);
}
.manifesto blockquote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--bg);
  margin-bottom: 32px;
  border-left: 4px solid var(--accent);
  padding-left: 28px;
}
.manifesto p {
  font-size: 17px;
  color: rgba(250,249,248,0.65);
  line-height: 1.75;
  max-width: 640px;
  padding-left: 28px;
}

/* ── FOOTER ── */
.footer {
  padding: 56px 0;
  border-top: 1px solid var(--border);
}
.footer .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .wordmark {
  font-size: 22px;
  display: block;
  margin-bottom: 8px;
}
.footer .tagline {
  font-size: 13px;
  color: var(--ink-2);
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* ── DEMO SECTION ── */
.demo {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.demo-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: flex-start;
}
.demo-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin-bottom: 16px;
}
.demo-sub {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 28px;
}
.demo-examples {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.examples-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 4px;
}
.example-pill {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 12px;
  font-family: var(--font-body);
  color: var(--ink-2);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  text-align: left;
}
.example-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
.demo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}
.brief-textarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  line-height: 1.65;
  resize: vertical;
  min-height: 110px;
  transition: border-color 0.15s;
  outline: none;
}
.brief-textarea:focus {
  border-color: var(--accent);
}
.brief-textarea::placeholder {
  color: rgba(90,90,114,0.5);
}
.brief-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}
.char-count {
  font-size: 12px;
  color: var(--ink-2);
}
.btn-analyze {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px 22px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
}
.btn-analyze:hover { opacity: 0.88; }
.btn-analyze:active { transform: scale(0.98); }
.btn-analyze:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn-analyze.loading .btn-text { display: none; }
.btn-analyze.loading .btn-spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── PLAN OUTPUT ── */
.plan-output {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.plan-section {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}
.plan-section:last-child {
  border-bottom: none;
}
.plan-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.plan-row-2col .plan-section {
  border-bottom: none;
}
.plan-row-2col .plan-section:first-child {
  border-right: 1px solid var(--border);
}
.plan-section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.plan-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.plan-list li {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.6;
  padding: 4px 0 4px 18px;
  position: relative;
}
.plan-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
  top: 5px;
}
.plan-list-q li::before {
  content: '?';
  font-weight: 700;
}
.talent-role {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.talent-seniority {
  font-size: 12px;
  color: var(--ink-2);
  margin-bottom: 12px;
}
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.skill-tag {
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
}
.milestone-row {
  display: flex;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.milestone-row:last-child {
  border-bottom: none;
}
.milestone-week {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  width: 36px;
  flex-shrink: 0;
  padding-top: 2px;
}
.milestone-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.milestone-desc {
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.5;
}
.revision-rounds {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
}
.revision-process {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.6;
}
.capture-bar {
  padding: 24px 28px;
  background: var(--accent-dim);
}
.capture-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.capture-form {
  display: flex;
  gap: 10px;
}
.capture-email-input {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s;
}
.capture-email-input:focus { border-color: var(--accent); }
.btn-capture {
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.btn-capture:hover { opacity: 0.82; }
.btn-capture:disabled { opacity: 0.5; cursor: not-allowed; }
.capture-confirm {
  font-size: 13px;
  color: var(--ink);
  font-weight: 600;
  margin-top: 10px;
}
.plan-error {
  background: #fff0ee;
  border: 1px solid rgba(255,77,41,0.2);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--accent);
  margin-top: 8px;
}

/* ── RUN PROJECT BAR (demo CTA) ── */
.run-project-bar {
  padding: 20px 28px;
  background: var(--ink);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-run-project {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s, transform 0.1s;
  letter-spacing: 0.01em;
}
.btn-run-project:hover { opacity: 0.88; }
.btn-run-project:active { transform: scale(0.98); }
.run-project-sub {
  font-size: 13px;
  color: rgba(250,249,248,0.55);
  margin: 0;
}

/* ── PRICING PAGE ── */
.pricing-hero {
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--border);
}
.pricing-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--ink);
  margin-bottom: 20px;
}
.pricing-sub {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 480px;
}
.pricing-tiers {
  padding: 64px 0 80px;
}
.tiers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.tier-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.tier-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.tier-badge {
  position: absolute;
  top: -12px;
  left: 40px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.tier-name {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.tier-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -2px;
  line-height: 1;
}
.tier-cadence {
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 400;
}
.tier-desc {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0;
}
.tier-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.tier-features li {
  font-size: 14px;
  color: var(--ink);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.tier-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
  top: 1px;
}
.btn-tier {
  display: block;
  text-align: center;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.15s;
  margin-top: auto;
  letter-spacing: 0.01em;
}
.btn-tier:hover { opacity: 0.82; }
.btn-tier--featured {
  background: var(--accent);
}
.pricing-fine {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.pricing-fine p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.65;
}

/* ── WELCOME PAGE ── */
.welcome-hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}
.welcome-inner {
  max-width: 560px;
  width: 100%;
  text-align: center;
}
.welcome-check {
  font-size: 56px;
  margin-bottom: 20px;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
}
.welcome-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.welcome-sub {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 10px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.welcome-email-note {
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 36px;
}
.welcome-next {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  text-align: left;
  margin-bottom: 32px;
}
.welcome-next-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.welcome-steps-list {
  padding-left: 20px;
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.9;
}
.welcome-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-welcome-primary {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.btn-welcome-primary:hover { opacity: 0.88; }
.btn-welcome-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--ink-2);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 20px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.15s, color 0.15s;
}
.btn-welcome-secondary:hover { border-color: var(--ink); color: var(--ink); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 64px 0 56px;
  }
  .manifesto blockquote,
  .manifesto p {
    padding-left: 0;
  }
  .footer .section-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .section-inner, .hero-inner {
    padding: 0 20px;
  }
  .demo-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .plan-row-2col {
    grid-template-columns: 1fr;
  }
  .plan-row-2col .plan-section:first-child {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .capture-form {
    flex-direction: column;
  }
  .tiers-grid {
    grid-template-columns: 1fr;
  }
  .run-project-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .welcome-next {
    padding: 20px;
  }
  .project-layout {
    grid-template-columns: 1fr;
    padding: 24px 16px;
    gap: 24px;
  }
  .project-progress {
    flex-wrap: wrap;
    gap: 8px;
  }
  .progress-line { display: none; }
}

/* ── Project Workspace ─────────────────────────────────────────────────────── */

.welcome-banner {
  background: #1a1a2e;
  color: #fff;
  padding: 14px 24px;
}
.welcome-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  line-height: 1.6;
}
.welcome-banner-icon { font-size: 20px; flex-shrink: 0; }
.welcome-banner-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  font-size: 16px;
  margin-left: auto;
  flex-shrink: 0;
  padding: 0 4px;
}

.project-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  padding: 40px 24px 80px;
}

.project-header { margin-bottom: 28px; }
.project-header-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.project-title {
  font-family: 'Syne', Arial, sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.5px;
}
.project-meta { font-size: 14px; color: var(--ink-2); margin: 0; }

/* Status pill */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.02em;
  background: var(--surface-2);
  color: var(--ink-2);
}
.status-pill--matching    { background: #fff3e0; color: #e65100; }
.status-pill--in_progress { background: #e3f2fd; color: #1565c0; }
.status-pill--in_review   { background: #f3e5f5; color: #7b1fa2; }
.status-pill--delivered   { background: #e8f5e9; color: #2e7d32; }

/* Progress stepper */
.project-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
}
.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.35;
}
.progress-step--done, .progress-step--active { opacity: 1; }
.progress-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 2px solid transparent;
}
.progress-step--active .progress-dot {
  border-color: var(--accent);
  background: #fff3f0;
}
.progress-step--done .progress-dot { background: #e8f5e9; }
.progress-label { font-size: 11px; font-weight: 600; color: var(--ink-2); white-space: nowrap; }
.progress-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 4px;
  margin-bottom: 22px;
}
.progress-line--done { background: var(--accent); }

/* Project cards */
.project-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 20px;
}
.project-card-title {
  font-family: 'Syne', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 16px;
}

/* Deliverables list */
.project-list {
  margin: 0;
  padding: 0 0 0 20px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 2;
}

/* Milestone timeline */
.milestone-list { display: flex; flex-direction: column; gap: 12px; }
.milestone-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.milestone-week {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: #fff3f0;
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
  margin-top: 2px;
}
.milestone-name { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.milestone-desc { font-size: 13px; color: var(--ink-3); }

/* Notes */
.note-textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 14px;
  color: var(--ink);
  resize: vertical;
  box-sizing: border-box;
  background: var(--surface);
  transition: border-color 0.15s;
}
.note-textarea:focus { outline: none; border-color: var(--accent); }

.btn-project-action {
  margin-top: 12px;
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Syne', Arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: opacity 0.15s;
}
.btn-project-action:hover { opacity: 0.88; }
.btn-project-action:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-project-action--secondary {
  background: var(--surface-2);
  color: var(--ink);
}
.btn-project-action--secondary:hover { background: var(--border); }

.notes-history { margin-top: 20px; border-top: 1px solid var(--border); padding-top: 16px; }
.note-item { margin-bottom: 12px; }
.note-meta { font-size: 11px; color: var(--ink-3); margin-bottom: 4px; }
.note-body { font-size: 14px; color: var(--ink-2); line-height: 1.5; }

/* Sidebar talent card */
.project-sidebar { }

.talent-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
}
.talent-card--pending { background: var(--surface); }
.talent-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.talent-name {
  font-family: 'Syne', Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}
.talent-role { font-size: 13px; color: var(--ink-2); margin-bottom: 12px; }
.talent-bio { font-size: 13px; color: var(--ink-2); line-height: 1.6; margin: 0 0 14px; }

.talent-score { margin: 14px 0; }
.score-bar-wrap {
  background: var(--surface-2);
  border-radius: 4px;
  height: 6px;
  margin-bottom: 6px;
}
.score-bar { background: var(--accent); height: 6px; border-radius: 4px; }
.score-label { font-size: 12px; color: var(--ink-3); }

.fit-flags { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0; }
.fit-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--surface-2);
  color: var(--ink-2);
}
.fit-tag--yes { background: #e8f5e9; color: #2e7d32; }

.talent-skills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.skill-chip {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  background: #f0f0f8;
  color: var(--ink-2);
}

/* Event log */
.event-log {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
}
.event-log-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.event-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.event-item:last-child { border-bottom: none; }
.event-kind { color: var(--ink-2); text-transform: capitalize; }
.event-time { font-size: 11px; color: var(--ink-3); }

/* ── Proof Strip ─────────────────────────────────────────────────────────── */
.proof-strip {
  padding: 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.proof-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.proof-tile {
  flex: 1;
  max-width: 200px;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.proof-divider {
  width: 1px;
  background: var(--border);
  margin: 16px 0;
  flex-shrink: 0;
}
.proof-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -1.5px;
  line-height: 1;
}
.proof-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
}

/* Loading skeleton */
.proof-strip--skeleton .proof-number { display: none; }
.proof-skel-number {
  width: 72px;
  height: 36px;
  background: var(--border);
  border-radius: 6px;
  animation: skel-pulse 1.4s ease-in-out infinite;
}
.proof-skel-label {
  width: 80px;
  height: 10px;
  background: var(--border);
  border-radius: 4px;
  margin-top: 8px;
  animation: skel-pulse 1.4s ease-in-out infinite 0.2s;
}
@keyframes skel-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@media (max-width: 768px) {
  .proof-strip-inner {
    padding: 0 20px;
    flex-wrap: wrap;
  }
  .proof-tile {
    flex: 0 0 50%;
    max-width: none;
    padding: 18px 0;
  }
  .proof-divider { display: none; }
  .proof-number { font-size: 28px; }
}