/* Landing page — aligned with dashboard / terminal (sleek.css, base_terminal) */

.landing-top-link-active {
  color: #fff;
  background: rgba(79, 70, 229, 0.22);
  border: 1px solid rgba(129, 140, 248, 0.35);
}

/* Rallies-style nav pill for current marketing page */
.landing-nav-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Feature showcase (cv-card-adjacent) */
.landing-showcase {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.landing-tab-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.35rem;
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(17, 24, 39, 0.65);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.landing-tab-btn {
  flex: 0 0 auto;
  padding: 0.5rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}
.landing-tab-btn:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
}
.landing-tab-btn.landing-tab-active {
  color: #fff;
  background: rgba(79, 70, 229, 0.55);
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.25);
}

.landing-panel {
  display: none;
  padding: 1.25rem 1.25rem 1.5rem;
}
.landing-panel.landing-panel-visible {
  display: block;
}

.landing-preview-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #111827;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.landing-preview-frame img,
.landing-preview-frame object {
  display: block;
  width: 100%;
  height: auto;
}

.landing-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #818cf8;
}

.landing-tool-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) {
  .landing-tool-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.landing-tool-chip {
  font-size: 0.75rem;
  color: #9ca3af;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}
