@import url('/css/app.css?v=20260525a');

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.hero p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.6; max-width: 52ch; }
.cta-row { margin-top: 24px; }
.cta-btn { font-size: 14px; padding: 0 18px; min-height: 40px; }

.hero-split {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 32px;
  align-items: start;
}

.hero-kpis { display: grid; gap: 8px; }
.kpi-mini {
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.kpi-mini span { display: block; color: var(--muted); font-size: 12px; font-weight: 500; margin-bottom: 4px; }
.kpi-mini strong { font-size: 20px; font-weight: 600; letter-spacing: -0.03em; color: var(--ink); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stats-grid { margin-top: 20px; margin-bottom: 8px; }
.stat .sub { color: var(--muted); margin-top: 6px; font-size: 14px; }

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  margin-right: 6px;
  box-shadow: 0 0 0 rgba(34, 197, 94, 0.4);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.35); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.latest-title { margin: 0 0 12px; font-size: 20px; font-weight: 600; color: var(--ink); letter-spacing: -0.03em; }
.latest-item {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  margin-bottom: 8px;
}
.latest-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
}
.latest-stats { display: flex; gap: 14px; align-items: center; margin-bottom: 8px; }
.latest-stats strong { font-size: 14px; font-weight: 600; color: var(--ink); }
.latest-item .meta { color: var(--muted); font-size: 13px; }
.latest-open {
  display: inline-block;
  margin-top: 8px;
  color: var(--ink);
  font-weight: 500;
  font-size: 14px;
  border-bottom: 1px solid var(--border-strong);
}
.latest-open:hover { border-bottom-color: var(--ink); }

.feature-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.feature-card,
.plan-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.feature-card h3,
.plan-card h3 { margin: 0 0 8px; font-size: 15px; font-weight: 600; color: var(--ink); }
.plan-card h3 span { display: block; font-size: 13px; color: var(--muted); margin-top: 4px; font-weight: 500; }
.feature-card p,
.plan-card p { margin: 0 0 8px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.plan-pro {
  border-color: var(--border-strong);
  background: var(--surface-2);
}

.live-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
}
.live-strip strong { color: var(--ink); font-weight: 500; }

.blur-link { filter: blur(3px); pointer-events: none; user-select: none; }
.login-btn {
  display: inline-block;
  margin-top: 8px;
  text-decoration: none;
  color: var(--accent-text);
  background: var(--accent);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 14px;
  border: 1px solid var(--accent);
}
.login-btn:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

.landing-feed-empty {
  margin: 0;
  padding: 12px 0 4px;
}

@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; gap: 24px; }
  .wrap { padding: 24px 16px 48px; }
}
