/* Homepage lean layout — less text, more action */

.hero .lead + .lead { display: none; }
.hero .lead strong { display: block; font-size: 1.05rem; margin-bottom: 0.35rem; }

.home-quick {
  padding: 0.5rem 0 0.25rem;
}

.home-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.home-quick-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(11, 18, 32, 0.98));
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
  min-height: 100%;
}

.home-quick-tile:hover {
  border-color: rgba(56, 189, 248, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.35);
  color: inherit;
}

.home-quick-tile i {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(56, 189, 248, 0.12);
  color: #7dd3fc;
  font-size: 1rem;
}

.home-quick-tile strong {
  font-family: var(--font-display, "Sora", system-ui, sans-serif);
  font-size: 0.95rem;
  color: #e2e8f0;
}

.home-quick-tile span {
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.35;
}

.home-quick-tile--liq i { background: rgba(248, 113, 113, 0.12); color: #fca5a5; }
.home-quick-tile--tap i { background: rgba(167, 139, 250, 0.12); color: #c4b5fd; }

.section.compact { padding: 1.75rem 0; }
.section.compact .section-head { margin-bottom: 1rem; }
.section.compact .section-head p { max-width: 640px; }

#chart .feature-list { gap: 0.45rem; }
#chart .feature-list li { font-size: 0.9rem; }

.tap-b6-panel ul { margin-bottom: 0.5rem; }
.tap-b6-panel li { font-size: 0.85rem; }
.tap-b6-branding.compact .tap-b6-panel p { display: none; }
.tap-b6-branding.compact .tap-seo-note { display: none; }

#tools .section-head p { max-width: 560px; }

@media (max-width: 900px) {
  .home-quick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
  .home-quick-grid { grid-template-columns: 1fr; }
}

/* 6-step research workflow (after quick tiles) */
.home-workflow-pipeline {
  font-family: var(--font-display, "Sora", system-ui, sans-serif);
  font-size: 0.92rem;
  font-weight: 600;
  color: #7dd3fc;
  letter-spacing: 0.02em;
  margin: 0 0 0.65rem;
  line-height: 1.4;
}

.home-workflow-steps .home-workflow-step {
  cursor: pointer;
}

.home-workflow-steps .home-workflow-step h3 {
  color: #e2e8f0;
}

@media (max-width: 1200px) {
  .home-workflow-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .home-workflow-pipeline { font-size: 0.82rem; }
}
