/* CSS Design System for The Agency Catalog */

:root {
  --bg-primary: #080b11;
  --bg-secondary: rgba(17, 22, 34, 0.7);
  --bg-card: rgba(22, 28, 45, 0.45);
  --bg-input: rgba(30, 41, 59, 0.5);
  --bg-drawer: #0e1322;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);
  --border-focus: #3b82f6;
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --accent-color: #3b82f6;
  --accent-gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  --success-color: #10b981;
  
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', Courier, monospace;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
  --shadow-neon: 0 0 15px rgba(59, 130, 246, 0.25);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Globals */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

#shape-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* App Container */
.app-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

/* Header */
.app-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2.5rem;
  background-color: var(--bg-secondary);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-emoji {
  font-size: 2.25rem;
  line-height: 1;
}

.logo-text h1 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-text p {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Search Box */
.search-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  justify-self: center;
}

.search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  width: 20px;
  height: 20px;
  pointer-events: none;
}

#search-input {
  width: 100%;
  padding: 0.85rem 1.25rem 0.85rem 3rem;
  background-color: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  outline: none;
  transition: all var(--transition-fast);
}

#search-input:focus {
  border-color: var(--border-focus);
  background-color: rgba(30, 41, 59, 0.7);
  box-shadow: var(--shadow-neon);
}

.clear-btn {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.25rem;
}

.clear-btn:hover {
  color: var(--text-primary);
}

/* Stats Badge */
.stat-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
}

.count-number {
  font-weight: 800;
  color: #3b82f6;
  font-size: 1.1rem;
}

.count-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Main Layout */
.main-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  flex: 1;
}

/* Sidebar & Filters */
.sidebar {
  padding: 2rem;
  background-color: rgba(12, 17, 29, 0.4);
  border-right: 1px solid var(--border-color);
  overflow-y: auto;
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.sidebar-header h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.text-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.text-btn:hover {
  color: var(--accent-color);
}

.division-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.division-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
}

.division-item:hover {
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
}

.division-item.active {
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  font-weight: 600;
}

.div-dot-name {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.div-icon {
  width: 16px;
  height: 16px;
  opacity: 0.8;
}

.div-count {
  font-size: 0.75rem;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  color: var(--text-muted);
}

.division-item.active .div-count {
  background-color: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

/* Content Area */
.content-area {
  padding: 2rem 2.5rem;
  overflow-y: auto;
}

.filter-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(30, 41, 59, 0.3);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.tag-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tag-btn:hover {
  background-color: rgba(239, 68, 68, 0.25);
  border-color: #ef4444;
  color: #fca5a5;
}

/* Agents Grid */
.agents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

/* Loading state */
.loading-state {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem 0;
  color: var(--text-muted);
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(59, 130, 246, 0.1);
  border-top-color: var(--accent-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1.5rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Agent Card */
.agent-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-normal), border-color var(--transition-fast), box-shadow var(--transition-normal);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.agent-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 255, 255, 0.02);
}

/* Color indicator glow */
.card-color-strip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.agent-card-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.agent-emoji-box {
  font-size: 1.75rem;
  background-color: rgba(255, 255, 255, 0.04);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.agent-meta {
  flex: 1;
}

.agent-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 0.35rem;
}

.division-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.agent-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 3.8rem;
}

.agent-vibe-preview {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-muted);
  border-left: 2px solid var(--border-color);
  padding-left: 0.75rem;
}

.agent-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.75rem;
  margin-top: 0.25rem;
}

.footer-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.agent-card:hover .footer-btn {
  color: var(--accent-color);
}

.quick-copy {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.quick-copy:hover {
  background-color: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

/* Drawer / Modal styling */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(4, 6, 10, 0.85);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  z-index: 998;
  transition: opacity var(--transition-normal);
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: -580px;
  width: 560px;
  height: 100vh;
  background-color: var(--bg-drawer);
  border-left: 1px solid var(--border-color);
  z-index: 999;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.6);
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer.open {
  right: 0;
}

.drawer-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-title-area {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.drawer-emoji {
  font-size: 2.25rem;
  background-color: rgba(255, 255, 255, 0.04);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.drawer-title-meta h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.division-pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  color: var(--text-secondary);
}

.close-drawer {
  background: none;
  border: none;
  color: var(--text-muted);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.close-drawer:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

.drawer-content {
  padding: 2rem;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.drawer-vibe {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-secondary);
  border-left: 3px solid var(--accent-color);
  padding-left: 1rem;
  line-height: 1.6;
}

.drawer-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  flex: 1;
}

.btn-icon {
  width: 16px;
  height: 16px;
}

.btn-primary {
  background: var(--accent-gradient);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.45);
}

.btn-primary.success {
  background: var(--success-color);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: var(--border-color);
  color: var(--text-primary);
  text-decoration: none;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

/* Prompt Preview Box */
.prompt-preview-container {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: rgba(12, 17, 29, 0.5);
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(12, 17, 29, 0.8);
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.format-badge {
  font-size: 0.7rem;
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--accent-color);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}

.prompt-body {
  padding: 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
  user-select: text;
}

/* Basic Markdown rendering styles */
.prompt-body h1, .prompt-body h2, .prompt-body h3, .prompt-body h4 {
  color: var(--text-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.prompt-body h1 { font-size: 1.4rem; border-bottom: 1px solid var(--border-color); padding-bottom: 0.35rem; }
.prompt-body h2 { font-size: 1.2rem; }
.prompt-body h3 { font-size: 1.05rem; }
.prompt-body h4 { font-size: 0.95rem; }

.prompt-body p {
  margin-bottom: 1rem;
}

.prompt-body ul, .prompt-body ol {
  margin-bottom: 1.25rem;
  padding-left: 1.25rem;
}

.prompt-body li {
  margin-bottom: 0.35rem;
}

.prompt-body code {
  font-family: var(--font-mono);
  background-color: rgba(255, 255, 255, 0.06);
  padding: 0.15rem 0.35rem;
  border-radius: 4px;
  font-size: 0.85em;
  color: #ff79c6;
}

.prompt-body pre {
  background-color: #05070c;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1rem;
  overflow-x: auto;
  margin-bottom: 1.25rem;
  margin-top: 0.5rem;
}

.prompt-body pre code {
  background-color: transparent;
  padding: 0;
  font-size: 0.8rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.prompt-body blockquote {
  border-left: 3px solid var(--text-muted);
  padding-left: 1rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Empty search result */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 0;
  color: var(--text-muted);
}

.no-results i {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
}

.no-results h4 {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .main-layout {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    position: static;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
  }
  
  .division-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .division-item {
    padding: 0.5rem 0.85rem;
  }
}

@media (max-width: 768px) {
  .app-header {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
  }
  
  .logo-area {
    justify-content: center;
  }
  
  .search-container {
    max-width: 100%;
    order: 3;
  }
  
  .stat-badge {
    justify-self: center;
    order: 2;
  }
  
  .content-area {
    padding: 1.5rem;
  }
  
  .drawer {
    width: 100%;
    right: -100%;
  }
}

/* Hero Section Styling */
.hero-section {
  position: relative;
  padding: 3rem 2.5rem;
  background: rgba(22, 28, 45, 0.2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  margin-bottom: 2.5rem;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.05) 50%, transparent 100%);
  filter: blur(50px);
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-left {
  display: flex;
  flex-direction: column;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
}

.badge-icon {
  width: 14px;
  height: 14px;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-buttons .btn {
  flex: none;
  min-width: 170px;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-widget {
  background: rgba(30, 41, 59, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-fast);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.hero-widget:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(30, 41, 59, 0.6);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Category Widget */
.category-widget .widget-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.category-widget .widget-title i {
  width: 14px;
  height: 14px;
  color: var(--accent-color);
}

.widget-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.widget-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.widget-tag:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  color: var(--text-primary);
  transform: translateY(-1px);
}

.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

/* Featured Widget */
.featured-widget {
  border-left: 3px solid var(--accent-color);
}

.featured-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  font-size: 0.6rem;
  font-weight: 800;
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

.featured-agent-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.featured-emoji {
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.featured-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.featured-division {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

.featured-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 1.15rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
}

.btn-icon-sm {
  width: 14px;
  height: 14px;
}

/* Responsive Grid adjustment for Hero */
@media (max-width: 1200px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
