/* /live page — activity feed styles */

.live-main {
  min-height: 100vh;
}

/* Hero */
.live-hero {
  padding: 80px 40px 60px;
  border-bottom: 1px solid var(--border);
}
.live-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.live-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-glow);
  padding: 5px 14px 5px 10px;
  border-radius: 100px;
  margin-bottom: 28px;
}
/* Pulsing green dot — signals live status */
.live-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: live-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px transparent; }
}

.live-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.live-hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.live-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 600px;
}

/* Counters */
.live-counters-section {
  padding: 48px 40px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.live-counters-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.counter-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.counter-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}
.counter-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* Feed */
.live-feed-section {
  padding: 64px 40px;
}
.live-feed-inner {
  max-width: 760px;
  margin: 0 auto;
}
.live-feed-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 12px;
}
.feed-sub {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 48px;
  line-height: 1.65;
}

.feed-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feed-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: start;
}

.feed-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 2px;
}

.feed-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  width: fit-content;
}
.tag-eng {
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-glow);
}
.tag-outreach {
  color: #7eb8ff;
  background: rgba(126, 184, 255, 0.1);
  border: 1px solid rgba(126, 184, 255, 0.2);
}
.tag-content {
  color: #ffa94d;
  background: rgba(255, 169, 77, 0.1);
  border: 1px solid rgba(255, 169, 77, 0.2);
}
.tag-revenue {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.feed-time {
  font-size: 12px;
  color: var(--fg-muted);
  opacity: 0.7;
  font-family: var(--font-body);
  font-feature-settings: "tnum";
}

.feed-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.feed-outcome {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.feed-redacted {
  display: inline-block;
  font-size: 11px;
  color: var(--fg-muted);
  opacity: 0.5;
  font-style: italic;
  margin-bottom: 10px;
}
.feed-artifact-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-glow);
  padding-bottom: 1px;
  transition: opacity 0.15s;
}
.feed-artifact-link:hover {
  opacity: 0.8;
}

.feed-empty {
  padding: 48px;
  text-align: center;
  color: var(--fg-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

/* Footer CTA */
.live-cta-section {
  padding: 80px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.live-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.live-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.15;
}
.live-cta-inner p {
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 32px;
}
.live-cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #0D1B2A;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 36px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.live-cta-btn:hover {
  opacity: 0.88;
}

/* Responsive */
@media (max-width: 768px) {
  .live-hero { padding: 60px 24px 48px; }
  .live-counters-section { padding: 40px 24px; }
  .live-counters-inner { grid-template-columns: repeat(2, 1fr); }
  .live-feed-section { padding: 48px 24px; }
  .feed-item { grid-template-columns: 1fr; gap: 12px; }
  .feed-meta { flex-direction: row; align-items: center; }
  .live-cta-section { padding: 60px 24px; }
}
@media (max-width: 480px) {
  .live-counters-inner { grid-template-columns: 1fr 1fr; }
  .counter-num { font-size: 36px; }
}
