/* vertical.css — per-vertical landing (C-N84–88) */
body { margin: 0; font-family: Inter, sans-serif; background: #0a0b0e; color: #cfd2d8; }
.vp-top { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; }
.vp-mark { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: #cfd2d8; text-decoration: none; }
.vp-mark span { color: #d4a853; }
.vp-cta { min-height: 44px; padding: 10px 18px; background: linear-gradient(135deg,#d4a853,#b87f30); color: #1a1a1a; border-radius: 8px; text-decoration: none; font-weight: 500; display: inline-flex; align-items: center; }
.vp-hero, .vp-ticker, .vp-cols, .vp-quote, .vp-pricing { max-width: 880px; margin: 0 auto; padding: 0 20px 32px; }
.vp-hero h1 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(28px, 5vw, 40px); line-height: 1.2; }
.vp-lead { color: #9aa0ad; font-size: 16px; line-height: 1.55; }
.vp-eyebrow { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #6b7280; }
.vp-ticker ul { list-style: none; padding: 0; border-left: 2px solid #d4a853; margin: 12px 0; }
.vp-ticker li { padding: 8px 0 8px 16px; font-size: 15px; }
.vp-cols { display: grid; gap: 16px; }
@media (min-width: 700px) { .vp-cols { grid-template-columns: repeat(3, 1fr); } }
.vp-cols h3 { font-size: 16px; color: #d4a853; margin: 0 0 8px; }
.vp-cols p { font-size: 14px; color: #9aa0ad; line-height: 1.5; margin: 0; }
.vp-quote { font-style: italic; color: #9aa0ad; border-left: 3px solid rgba(212,168,83,0.4); padding-left: 16px; }
.vp-pricing { text-align: center; padding-bottom: 48px; }

/* C-N101 — live cluster ticker */
.vp-live {
  max-width: 880px;
  margin: 0 auto 28px;
  padding: 0 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
}
.vp-live-title {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d4a853;
  margin: 0 0 12px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}
.vp-live-rows { display: flex; flex-direction: column; gap: 8px; }
.vp-live-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px 14px;
  align-items: center;
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  min-height: 44px;
}
.vp-live-row:hover { border-color: rgba(212,168,83,0.35); }
.vp-live-urg { color: #d4a853; font-family: 'JetBrains Mono', monospace; font-size: 12px; }
.vp-live-headline { font-size: 15px; line-height: 1.35; }
.vp-live-meta { font-size: 12px; color: #9aa0ad; white-space: nowrap; }
.vp-live-muted { font-size: 14px; color: #9aa0ad; line-height: 1.5; margin: 0 0 12px; }
.vp-live-more { color: #d4a853; font-size: 14px; text-decoration: none; min-height: 44px; display: inline-flex; align-items: center; }
.vp-live-shimmer {
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(212,168,83,0.4), transparent);
  background-size: 200% 100%;
  animation: vp-shimmer 1.2s linear infinite;
  margin-bottom: 10px;
}
@keyframes vp-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@media (max-width: 600px) {
  .vp-live-row { grid-template-columns: 1fr; gap: 4px; }
  .vp-live-meta { white-space: normal; }
}
