.company-page { display: flex; flex-direction: column; gap: 18px; }
.company-hero { display: flex; justify-content: space-between; gap: 18px; align-items: flex-start; padding: 24px; }
.company-hero h1 { margin: 4px 0 8px; font-size: 32px; color: var(--navy); }
.company-headline { max-width: 760px; color: var(--muted); font-size: 15px; line-height: 1.55; }
.company-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.company-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-sm); }
.company-card.full { grid-column: 1 / -1; }
.company-card h3 { margin: 0 0 12px; color: var(--navy); font-size: 16px; }
.company-card ul { margin: 0; padding-left: 18px; display: flex; flex-direction: column; gap: 8px; }
.company-card li, .company-card p { color: var(--text); line-height: 1.5; font-size: 14px; }
.company-card.warning { border-left: 4px solid #f59e0b; }
.company-card.priority { border-left: 4px solid var(--signal); }
.company-sources { display: flex; flex-direction: column; gap: 8px; }
.company-sources a { color: var(--navy); text-decoration: none; font-size: 14px; }
.company-sources a:hover { text-decoration: underline; }
.copy-context { border: 1px solid var(--border); background: var(--navy); color: white; border-radius: 10px; padding: 9px 12px; white-space: nowrap; }
.agent-note pre { margin-top: 12px; padding: 14px; border-radius: 12px; background: #0f172a; color: #dbeafe; white-space: pre-wrap; font-size: 12px; line-height: 1.45; max-height: 260px; overflow: auto; }
@media (max-width: 900px) { .company-grid { grid-template-columns: 1fr; } .company-hero { flex-direction: column; } }

/* Goals card */
.company-card.highlight { border-left: 3px solid #34d399; grid-column: 1 / -1; }
.goals-section { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.goals-revenue h4, .goals-focus h4 { margin: 0 0 .6rem; font-size: .85rem; text-transform: uppercase; letter-spacing: .04em; opacity: .7; }
.goal-row { display: flex; justify-content: space-between; padding: .4rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.goal-label { font-size: .82rem; opacity: .7; }
.goal-value { font-size: .85rem; font-weight: 600; }
.goal-row.current .goal-value { color: #94a3b8; }
.goal-row.near .goal-value { color: #34d399; }
.goal-row.long .goal-value { color: #60a5fa; }
@media (max-width: 600px) { .goals-section { grid-template-columns: 1fr; } }
