/* Summary Showcase Section Styles */
.hidden {
  display: none !important;
}

.summary-showcase {
  padding: 8rem 0;
  position: relative;
}

.summary-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.tab-button {
  background: var(--dark-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 1rem 2rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.tab-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-purple), var(--primary-cyan));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tab-button:hover::before,
.tab-button.active::before {
  transform: scaleX(1);
}

.tab-button:hover,
.tab-button.active {
  color: var(--text-primary);
  border-color: var(--primary-purple);
  background: rgba(139, 92, 246, 0.1);
  transform: translateY(-2px);
}

.tab-button .tab-icon {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.tab-button .tab-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.tab-button.active .tab-label,
.tab-button:hover .tab-label {
  color: var(--primary-cyan);
}

.summary-demo {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.summary-demo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-purple), var(--primary-cyan), var(--accent-pink));
}

.demo-scenario {
  background: var(--dark-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-cyan);
}

.scenario-label {
  color: var(--primary-cyan);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.scenario-text {
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.5;
}

.summary-content {
  /* Use ZenBriefr app styling instead of website theme */
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1rem;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

.summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding: 0;
  border: none;
}

.summary-type {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.type-icon {
  display: none; /* Hide fancy icons for app authenticity */
}

.type-label {
  color: #1f2937;
  font-weight: 600;
  font-size: 1.25rem;
  margin: 0;
}

.type-description {
  display: none; /* Simplify for app look */
}

.summary-meta {
  display: flex;
  gap: 0.5rem;
  font-size: 0.75rem;
}

.meta-badge {
  background: #f3f4f6;
  color: #6b7280;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  border: none;
  font-family: monospace;
  font-size: 11px;
}

.summary-text {
  background: #f9fafb;
  padding: 0.5rem;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.875rem;
  line-height: 1.5;
  white-space: pre-wrap;
  color: #374151;
  margin: 1rem 0;
}

.summary-text h4 {
  display: none; /* Remove website-style headers */
}

.summary-text ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.summary-text li {
  padding: 0;
  margin: 0;
  position: static;
  padding-left: 0;
  color: inherit;
}

.summary-text li::before {
  display: none; /* Remove bullet points for plain text look */
}

.summary-actions {
  margin-top: 1rem;
  padding-top: 0;
  border-top: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.action-buttons {
  display: flex;
  gap: 0.5rem;
}

.action-btn {
  padding: 0.25rem 0.75rem;
  background: #3b82f6;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.15s ease;
}

.action-btn:hover {
  background: #2563eb;
}

.action-btn:nth-child(2) {
  background: #10b981;
}

.action-btn:nth-child(2):hover {
  background: #059669;
}

.action-btn:nth-child(3) {
  background: #6b7280;
}

.action-btn:nth-child(3):hover {
  background: #4b5563;
}

.summary-stats {
  color: #9ca3af;
  font-size: 0.75rem;
  font-family: monospace;
}

.highlight-feature {
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: center;
}

.highlight-feature .feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.highlight-feature h3 {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.highlight-feature p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 768px) {
  .summary-showcase {
    padding: 6rem 0;
  }
  
  .summary-tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .tab-button {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  
  .summary-demo {
    padding: 2rem;
  }
  
  .summary-actions {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  
  .action-buttons {
    justify-content: center;
  }
}