/* ==========================================================================
   REICON - NEW CLEAN DESIGN SYSTEM
   Accent Color: #9B8AFB
   Background: Very light whitish accent tint (#FAF8FF)
   Rules:
   - NO GRADIENTS (Pure solid clear colors)
   - NO BORDERS IN FULL WEBSITE (border: none !important)
   - Fully rounded buttons, pills, search bar, and containers
   ========================================================================== */

/* Root Variables */
:root {
  /* Primary Brand Accent */
  --accent: #9B8AFB;
  --accent-hover: #8672F9;
  --accent-dark: #6E54F5;
  --accent-soft: #F0ECFE;
  --accent-ultra-soft: #F7F4FE;
  
  /* Very Light Whitish Background Tint */
  --bg-main: #FCFAFF;
  --bg-header: rgba(252, 250, 255, 0.85);
  --bg-container: #F4F0FD;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FFFFFF;
  --bg-pill: #F2EEFD;
  --bg-pill-hover: #EAE4FE;

  --text-main: #181528;
  --text-muted: #6B6588;
  --text-light: #9B95BD;
  --text-on-accent: #FFFFFF;

  --shadow-sm: 0 2px 10px rgba(155, 138, 251, 0.05);
  --shadow-md: 0 8px 24px rgba(155, 138, 251, 0.08);
  --shadow-lg: 0 16px 40px rgba(155, 138, 251, 0.12);

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-pill: 9999px;
  --radius-card: 14px; /* 12-14px as requested */
  --radius-modal: 20px;

  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Theme Variables (Strictly Whitish-tinted Dark Mode with Accent #9B8AFB) */
[data-theme="dark"] {
  --bg-main: #12101D;
  --bg-header: rgba(18, 16, 29, 0.85);
  --bg-container: #1C192E;
  --bg-card: #221F38;
  --bg-card-hover: #2B2746;
  --bg-pill: #26223E;
  --bg-pill-hover: #332E54;

  --text-main: #F6F4FD;
  --text-muted: #A8A2C7;
  --text-light: #7B74A3;

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 44px rgba(0, 0, 0, 0.5);
}

/* Universal Reset & Global Strict Constraints */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none !important; /* STRICT NO BORDERS IN FULL WEBSITE */
  outline: none;
  background-image: none !important; /* STRICT NO GRADIENTS ANYWHERE */
  -webkit-tap-highlight-color: transparent;
}

[hidden] {
  display: none !important;
}

html, body {
  width: 100%;
  min-height: 100vh;
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Background Scroll Lock when Modal is Open */
html.modal-open, body.modal-open {
  overflow: hidden !important;
  height: 100vh !important;
  touch-action: none;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--accent-soft);
  border-radius: var(--radius-pill);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* Links & Buttons */
a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  background: none;
  color: inherit;
}

/* ==========================================================================
   HEADER NAVIGATION (Clean, Minimalist, High-End Layout)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background-color: var(--bg-header);
  backdrop-filter: blur(12px);
  padding: 16px 0;
  transition: all var(--transition-fast);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo Pill Container */
.brand-logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background-color: var(--bg-pill);
  transition: all var(--transition-fast);
}

.brand-logo-pill:hover {
  transform: translateY(-1px);
  background-color: var(--bg-pill-hover);
}

.header-wordmark {
  height: 18px;
  width: auto;
}

.desktop-logo {
  display: block;
}

.mobile-logo {
  display: none;
}

/* Right Nav Buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 36px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  background-color: var(--bg-pill);
  color: var(--text-main);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.pill-btn:hover {
  transform: translateY(-1px);
  background-color: var(--bg-pill-hover);
}

.pill-btn:active {
  transform: translateY(0);
}

/* GitHub Pill Button */
.github-badge-pill {
  gap: 6px;
  font-weight: 600;
}

.btn-primary {
  background-color: var(--accent) !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(155, 138, 251, 0.4) !important;
}

.btn-primary:hover {
  background-color: var(--accent-hover) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(155, 138, 251, 0.5) !important;
}

.btn-secondary {
  background-color: var(--accent-soft) !important;
  color: var(--accent-dark) !important;
  font-weight: 700 !important;
}

.btn-secondary:hover {
  background-color: var(--accent) !important;
  color: #FFFFFF !important;
}

/* ==========================================================================
   HERO BANNER & SEARCH SECTION
   ========================================================================== */
.hero-section {
  text-align: center;
  max-width: 1100px;
  margin: 36px auto 28px;
  padding: 0 20px;
}

.hero-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  line-height: 1.3;
}

.hero-title-text, .hero-by-text {
  color: var(--text-main);
}

.hero-brand-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-reicon-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-pill);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  vertical-align: middle;
  transform: translateY(2px);
  transition: all var(--transition-fast);
}

.hero-reicon-brand:hover {
  background-color: var(--bg-pill-hover);
  transform: translateY(0px);
}

.hero-wordmark-img {
  height: 22px;
  width: auto;
  display: block;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* Clean Compact Search Bar */
.search-container {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  width: 100%;
}

.search-box-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 48px;
  background-color: var(--bg-pill);
  padding: 0 16px 0 20px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
  position: relative;
}

.search-box-pill:focus-within {
  background-color: var(--bg-card);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.search-svg {
  color: var(--text-muted);
  flex-shrink: 0;
}

.search-box-pill input {
  flex: 1;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-main);
  background: transparent;
  width: 100%;
  min-width: 0;
}

.search-box-pill input::placeholder {
  color: var(--text-light);
}

.clear-btn {
  font-size: 13px;
  color: var(--text-light);
  padding: 3px 6px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}

.clear-btn:hover {
  color: var(--text-main);
  background-color: var(--accent-soft);
}

/* ==========================================================================
   MAIN CONTENT AREA
   ========================================================================== */
.main-content {
  max-width: 1240px;
  margin: 0 auto 60px;
  padding: 0 24px;
}

/* ==========================================================================
   CATEGORY CHIPS SCROLLBAR (Centered & Responsive)
   ========================================================================== */
.categories-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
  overflow-x: auto;
  padding: 4px 0 10px;
  width: 100%;
  scrollbar-width: none; /* Hide standard scrollbars */
}

.categories-wrapper::-webkit-scrollbar {
  display: none;
}

.category-chips-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: max-content;
  margin: 0 auto;
}

.chip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 34px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background-color: var(--bg-pill);
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.chip-btn:hover {
  color: var(--text-main);
  background-color: var(--bg-pill-hover);
}

.chip-btn.active {
  background-color: #12101C;
  color: #FFFFFF;
  font-weight: 600;
}

.chip-btn.active:hover {
  background-color: #000000;
  color: #FFFFFF;
}

.chip-more-btn {
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.chip-btn.active .chip-count {
  background-color: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
}

/* ==========================================================================
   ICON GRID & CARDS (Clean White Cards on Light Whitish Tint)
   ========================================================================== */
.icons-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 16px;
  transition: all var(--transition-normal);
}

/* Icon Card */
.icon-card-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 12px 14px;
  background-color: var(--bg-card);
  border-radius: 14px; /* 12-14px border-radius */
  box-shadow: 0 2px 8px rgba(155, 138, 251, 0.05);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
  user-select: none;
}

.icon-card-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(155, 138, 251, 0.12);
  background-color: var(--bg-card-hover);
}

.icon-svg-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--text-main);
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.icon-card-item:hover .icon-svg-wrapper {
  transform: scale(1.15);
  color: var(--accent);
}

.icon-svg-wrapper svg {
  width: 32px;
  height: 32px;
}

.icon-card-label {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 4px;
}

.icon-card-item:hover .icon-card-label {
  color: var(--text-main);
}

/* Quick Copy Floating Pill */
.quick-hover-actions {
  position: absolute;
  top: 8px;
  right: 8px;
  opacity: 0;
  transform: translateY(-4px);
  transition: all var(--transition-fast);
}

.icon-card-item:hover .quick-hover-actions {
  opacity: 1;
  transform: translateY(0);
}

@media (pointer: coarse) {
  .quick-hover-actions {
    display: none !important;
  }
}

.quick-svg-btn {
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 700;
  background-color: var(--accent-soft);
  color: var(--accent-dark);
  border-radius: var(--radius-pill);
}

.quick-svg-btn:hover {
  background-color: var(--accent);
  color: #FFFFFF;
}

/* Empty State */
.empty-results:not([hidden]) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  background-color: var(--bg-card);
  border-radius: 14px; /* 12-14px border-radius */
  box-shadow: 0 2px 12px rgba(155, 138, 251, 0.05);
  margin: 30px auto;
  max-width: 520px;
  width: 100%;
}

.empty-circle {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-pill);
  background-color: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.empty-results h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-main);
}

.empty-results p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* ==========================================================================
   MODAL DIALOG (Icon Detail Inspector)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: rgba(20, 18, 33, 0.45);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: opacity var(--transition-normal);
}

.modal-backdrop:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  position: relative;
  width: 100%;
  max-width: 760px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  overscroll-behavior: contain;
  background-color: var(--bg-card);
  border-radius: var(--radius-modal);
  box-shadow: var(--shadow-lg);
  padding: 30px;
  margin: auto;
  transform: scale(0.95);
  transition: transform var(--transition-normal);
}

.modal-backdrop:not([hidden]) .modal-dialog {
  transform: scale(1);
}

.modal-close-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  background-color: var(--bg-pill);
  color: var(--text-main);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 50;
  cursor: pointer;
}

.modal-close-icon:hover {
  background-color: var(--accent);
  color: #FFFFFF;
  transform: scale(1.05);
}

.modal-grid-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 32px;
}

/* Left Column Preview */
.modal-left-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-svg-display {
  width: 100%;
  height: 230px;
  border-radius: 20px;
  background-color: var(--bg-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 0;
}

/* Right Column Info & Customizer */
.modal-right-col {
  display: flex;
  flex-direction: column;
}

.modal-header-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 6px;
  padding-right: 44px; /* Safe distance to prevent collision with close button */
}

.modal-header-meta h2 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  word-break: break-word;
}

.cat-badge-pill {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-dark);
  background-color: var(--accent-soft);
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  text-transform: capitalize;
  white-space: nowrap;
  flex-shrink: 0;
}

.desc-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.desc-tag-pill {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background-color: var(--bg-pill);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
}

.desc-tag-pill:hover {
  color: var(--text-main);
  background-color: var(--bg-pill-hover);
}

/* Customizer Panel */
.customizer-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background-color: var(--bg-pill);
  padding: 16px 20px;
  border-radius: 18px;
  margin-bottom: 20px;
}

.custom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
}

.custom-row input[type="range"] {
  accent-color: var(--accent);
  cursor: pointer;
  height: 6px;
}

.color-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.color-dot {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.color-dot:hover {
  transform: scale(1.25);
}

.color-dot.active {
  box-shadow: 0 0 0 3px var(--bg-card), 0 0 0 5px var(--accent);
}

#customColorInput {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  background: none;
}

/* Code Snippet Box */
.code-viewer {
  margin-bottom: 20px;
}

.code-tabs-list {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.format-tab {
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  background-color: var(--bg-pill);
}

.format-tab.active {
  background-color: var(--accent-soft);
  color: var(--accent-dark);
}

.code-pre-box {
  background-color: var(--bg-pill);
  padding: 12px 16px;
  border-radius: 16px;
  max-height: 90px;
  overflow: auto;
}

.code-pre-box code {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-main);
  word-break: break-all;
  white-space: pre-wrap;
}

/* Modal Actions */
.modal-cta-row {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.modal-action-btn {
  flex: 1;
  padding: 12px;
}

/* ==========================================================================
   TOAST NOTIFICATION (Floating Pill)
   ========================================================================== */
.toast-wrapper {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 9999; /* Ensure toast stays above inspector modal */
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-normal);
  max-width: 90vw;
}

.toast-wrapper.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast-card-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--bg-card);
  color: var(--text-main);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .site-header {
    padding: 12px 0;
  }
  .header-inner {
    padding: 0 16px;
  }
  .hero-section {
    margin: 24px auto 20px;
    padding: 0 16px;
  }
  .hero-title {
    font-size: 28px;
  }
  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .main-content {
    padding: 0 16px;
    margin-bottom: 40px;
  }
  .categories-wrapper {
    justify-content: flex-start;
  }
  .modal-dialog {
    padding: 22px 18px;
    max-width: 100%;
    border-radius: 20px;
  }
  .modal-grid-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .modal-svg-display {
    height: 160px;
    border-radius: 16px;
  }
}

@media (max-width: 640px) {
  .desktop-logo {
    display: none !important;
  }
  .mobile-logo {
    display: block !important;
    height: 20px;
    width: auto;
  }
  .brand-logo-pill {
    padding: 0 10px;
    height: 32px;
  }
  .hero-title {
    font-size: 22px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    white-space: normal;
    gap: 8px;
  }
  .hero-brand-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .hero-reicon-brand {
    padding: 5px 12px;
    transform: translateY(0);
  }
  .hero-wordmark-img {
    height: 18px;
  }
  .icons-grid-container {
    grid-template-columns: repeat(auto-fill, minmax(95px, 1fr));
    gap: 10px;
  }
  .icon-card-item {
    padding: 16px 8px 12px;
  }
  .icon-svg-wrapper {
    width: 38px;
    height: 38px;
  }
  .icon-svg-wrapper svg {
    width: 26px;
    height: 26px;
  }
  .icon-card-label {
    font-size: 11px;
    margin-top: 10px;
  }
  .quick-hover-actions {
    display: none !important; /* Hide hover quick copy button on mobile/touch screens to prevent collision */
  }

  /* Compact Mobile Modal */
  .modal-backdrop {
    padding: 12px 10px;
  }
  .modal-dialog {
    padding: 16px 14px;
    border-radius: 18px;
    max-height: 88vh;
  }
  .modal-grid-layout {
    gap: 10px;
  }
  .modal-svg-display {
    height: 110px;
    border-radius: 14px;
  }
  .modal-close-icon {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
  .modal-header-meta {
    margin-bottom: 2px;
    padding-right: 34px;
  }
  .modal-header-meta h2 {
    font-size: 18px;
  }
  .cat-badge-pill {
    padding: 2px 8px;
    font-size: 11px;
  }
  .desc-tags-list {
    gap: 4px;
    margin-bottom: 8px;
  }
  .desc-tag-pill {
    padding: 2px 8px;
    font-size: 11px;
  }
  .customizer-box {
    padding: 10px 12px;
    gap: 8px;
    border-radius: 12px;
    margin-bottom: 8px;
  }
  .custom-row {
    flex-wrap: wrap;
    gap: 4px 10px;
    font-size: 12px;
  }
  .color-dots {
    flex-wrap: wrap;
    gap: 6px;
  }
  .color-dot {
    width: 20px;
    height: 20px;
  }
  #customColorInput {
    width: 22px;
    height: 22px;
  }
  .code-viewer {
    margin-bottom: 10px;
  }
  .code-pre-box {
    padding: 8px 10px;
    max-height: 58px;
    font-size: 11px;
    border-radius: 10px;
  }
  .modal-cta-row {
    flex-direction: row;
    gap: 6px;
  }
  .modal-action-btn {
    flex: 1;
    height: 36px;
    padding: 0 6px;
    font-size: 11.5px;
    font-weight: 700;
  }
  .toast-wrapper {
    bottom: 20px;
  }
  .toast-card-pill {
    padding: 9px 16px;
    font-size: 12px;
    gap: 8px;
  }
}

/* ==========================================================================
   AGENTIC ENVIRONMENT & GUIDE STYLING
   ========================================================================== */
.hero-feature-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
  margin-bottom: 24px;
}

.agent-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--bg-pill);
  color: var(--text-main);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
}
