/* ==========================================================================
   DataKnits Corporate Design System & Stylesheet
   ========================================================================== */

/* Google Fonts Integration */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

/* Brand Design Tokens */
:root {
  color-scheme: dark;
  /* Color Palettes - Custom HSL System */
  --bg-base: hsl(220, 24%, 6%);
  --bg-surface: hsla(220, 20%, 11%, 0.7);
  --bg-surface-elevated: hsla(220, 20%, 15%, 0.85);
  --section-contrast-bg: hsl(220, 25%, 3%);
  --code-panel-bg: rgba(17, 19, 26, 0.85);
  --code-panel-header-bg: rgba(11, 12, 16, 0.9);
  --data-stream-opacity: 1;
  --header-bg: rgba(11, 12, 16, 0.8);
  --header-bg-scrolled: rgba(11, 12, 16, 0.95);
  --dropdown-bg: hsl(220, 24%, 8%);
  --scrollbar-thumb: hsl(220, 20%, 18%);

  --color-primary: hsl(250, 84%, 63%);
  /* Electric Indigo (#6366F1) */
  --color-primary-hover: hsl(250, 84%, 68%);
  --color-secondary: hsl(190, 90%, 50%);
  /* Cyber Cyan (#06B6D4) */
  --color-secondary-hover: hsl(190, 90%, 58%);
  --color-accent: hsl(280, 85%, 60%);
  /* Tech Violet (#A855F7) */

  /* Text System */
  --text-primary: hsl(210, 38%, 96%);
  --text-secondary: hsl(215, 15%, 68%);
  --text-muted: hsl(215, 12%, 48%);

  /* Borders & Shadows */
  --border-subtle: hsla(220, 20%, 100%, 0.08);
  --border-glow: hsla(250, 84%, 63%, 0.3);
  --border-cyan-glow: hsla(190, 90%, 50%, 0.3);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 25px hsla(250, 84%, 63%, 0.2);

  /* Layout Constants */
  --container-width: 1280px;
  --header-height: 80px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Fonts */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html[data-theme="light"] {
  color-scheme: light;
  --bg-base: hsl(210, 32%, 97%);
  --bg-surface: hsla(0, 0%, 100%, 0.78);
  --bg-surface-elevated: hsla(210, 35%, 99%, 0.94);
  --section-contrast-bg: hsl(216, 45%, 95%);
  --code-panel-bg: rgba(28, 35, 48, 0.9);
  --code-panel-header-bg: rgba(17, 24, 39, 0.96);
  --data-stream-opacity: 0.5;
  --header-bg: rgba(255, 255, 255, 0.82);
  --header-bg-scrolled: rgba(255, 255, 255, 0.96);
  --dropdown-bg: hsl(210, 35%, 99%);
  --scrollbar-thumb: hsl(214, 18%, 72%);

  --color-primary: hsl(242, 72%, 52%);
  --color-primary-hover: hsl(242, 72%, 46%);
  --color-secondary: hsl(190, 82%, 42%);
  --color-secondary-hover: hsl(190, 82%, 36%);
  --color-accent: hsl(280, 72%, 48%);

  --text-primary: hsl(222, 35%, 12%);
  --text-secondary: hsl(218, 18%, 38%);
  --text-muted: hsl(218, 13%, 55%);

  --border-subtle: hsla(220, 22%, 14%, 0.13);
  --border-glow: hsla(242, 72%, 52%, 0.24);
  --border-cyan-glow: hsla(190, 82%, 42%, 0.22);

  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.16);
  --shadow-glow: 0 0 25px hsla(242, 72%, 52%, 0.16);
}

/* ==========================================================================
   Base & Resets
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html[data-theme],
html[data-theme] body {
  background-color: var(--bg-base) !important;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  line-height: 1.6;
}

body>* {
  position: relative;
  z-index: 1;
}

#data-stream-bg {
  z-index: 0 !important;
  opacity: var(--data-stream-opacity);
}



a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: var(--radius-full);
  border: 2px solid var(--bg-base);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* ==========================================================================
   Typography & Hierarchy
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.2rem;
}

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: hsla(250, 84%, 63%, 0.1);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-full);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  width: max-content;
}

.highlight-badge.cyan {
  background: hsla(190, 90%, 50%, 0.08);
  border: 1px solid var(--border-cyan-glow);
  color: var(--color-secondary);
}

/* ==========================================================================
   Layout Utilities
   ========================================================================== */
.container {
  width: min(94%, var(--container-width));
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.section-padding {
  padding: 6rem 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.grid-2>*,
.grid-3>*,
.grid-4>* {
  min-width: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-padding {
    padding: 4rem 0;
  }
}

/* ==========================================================================
   Components: Header & Navigation
   ========================================================================== */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  transition: var(--transition-normal);
  overflow: visible;
}

.header-wrapper + * {
  margin-top: var(--header-height);
}

.header-wrapper.scrolled {
  height: 70px;
  background-color: var(--header-bg-scrolled);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: flex-start;
  flex-wrap: nowrap;
  height: 100%;
  gap: 1.25rem;
}

.nav-container>nav {
  height: 100%;
  display: flex;
  align-items: center;
  flex: 1 1 0%;
  min-width: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-width: 0;
  flex: 1 1 0%;
  flex-wrap: nowrap;
  overflow: hidden;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 1.5vw, 1.6rem);
  font-weight: 800;
  color: var(--text-primary);
  flex-shrink: 0;
}

.logo-icon {
  width: 32px;
  height: 32px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(0.55rem, 0.85vw, 1.1rem);
  list-style: none;
  user-select: none;
  height: 100%;
  min-width: 0;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  font-size: clamp(0.82rem, 0.82vw, 0.9rem);
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-primary);
  background: color-mix(in srgb, var(--color-primary) 8%, transparent);
}

.nav-link.active {
  color: var(--color-primary);
  font-weight: 600;
  background: color-mix(in srgb, var(--color-primary) 10%, transparent);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-full);
}

/* Dropdown Menu styling */
.nav-dropdown {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 260px;
  max-width: calc(100vw - 2rem);
  background: var(--dropdown-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
  z-index: 1100;
}

.nav-item:has(.nav-dropdown)::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 260px;
  top: 100%;
  height: 10px;
  transform: translateX(-50%);
  z-index: 1099;
}

.nav-item:hover .nav-dropdown,
.nav-item.dropdown-open .nav-dropdown,
.nav-dropdown:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: flex;
  flex-direction: column;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.dropdown-link:hover {
  background-color: var(--bg-surface-elevated);
}

.dropdown-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.dropdown-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-cta.mobile-visible {
  display: none;
}

.nav-cta .btn {
  min-width: 84px;
  white-space: nowrap;
  padding: 0.65rem 1.25rem;
  font-size: 0.88rem;
}

/* Compress nav between 1300–1450px so everything fits before hamburger kicks in */
@media (max-width: 1450px) {
  .nav-cta { gap: 0.5rem; }
  .nav-cta .btn {
    min-width: 72px;
    padding: 0.5rem 0.9rem;
    font-size: 0.82rem;
  }
  .nav-menu { gap: clamp(0.3rem, 0.5vw, 0.75rem); }
  .nav-link  { font-size: clamp(0.78rem, 0.78vw, 0.88rem); padding: 0.4rem 0.6rem; }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  min-height: 42px;
}

.theme-toggle {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.btn {
  white-space: nowrap;
}

.theme-toggle:hover {
  border-color: var(--border-glow);
  background: var(--bg-surface-elevated);
  transform: translateY(-1px);
}

.theme-toggle-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 18%, transparent);
  position: relative;
}

html[data-theme="dark"] .theme-toggle-icon::after,
:root:not([data-theme="light"]) .theme-toggle-icon::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  top: -3px;
  right: -5px;
  background: var(--bg-surface);
}

.theme-floating-toggle {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1200;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 25px;
  height: 20px;
  justify-content: space-between;
  z-index: 1010;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
}

@media (max-width: 1300px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-base);
    border-left: 1px solid var(--border-subtle);
    flex-direction: column;
    padding: 6rem 2rem 2rem 2rem;
    align-items: flex-start;
    gap: 1.5rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-item {
    width: 100%;
  }

  .nav-dropdown {
    position: static;
    transform: none;
    width: 100%;
    opacity: 1;
    pointer-events: auto;
    border: none;
    box-shadow: none;
    background: transparent;
    padding-left: 1rem;
    margin-top: 0.5rem;
    display: none;
  }

  .nav-item:hover .nav-dropdown,
  .nav-item.dropdown-open .nav-dropdown,
  .nav-dropdown:hover {
    display: block;
  }

  .nav-cta.mobile-visible {
    width: 100%;
    flex-direction: column;
    margin-top: 1rem;
    padding: 0.75rem 0;
    border-top: 1px solid var(--border-subtle);
    display: none;
  }
  
  .nav-cta.mobile-visible a {
    width: 100%;
    text-align: center;
  }

  .nav-menu.open ~ .nav-cta.mobile-visible,
  .nav-cta.mobile-visible.open {
    display: flex;
  }
}

/* ==========================================================================
   Components: Buttons & CTAs
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px hsla(250, 84%, 63%, 0.35);
}

.btn-secondary {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: var(--bg-surface-elevated);
  border-color: var(--border-glow);
  transform: translateY(-2px);
}

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

/* ==========================================================================
   Components: Cards & Containers
   ========================================================================== */
.card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: hsla(250, 84%, 63%, 0.1);
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-glow);
}

.card-icon.cyan {
  background: hsla(190, 90%, 50%, 0.08);
  color: var(--color-secondary);
  border-color: var(--border-cyan-glow);
}

/* Glassmorphism Feature Panels */
.glass-panel {
  background: var(--bg-surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

html[data-theme="light"] .glass-panel {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

html[data-theme="light"] #videos .glass-panel {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--border-subtle) !important;
}

#videos .glass-panel>div:first-child {
  background: var(--code-panel-bg) !important;
  border-color: var(--border-subtle) !important;
}

html[data-theme="light"] #videos .glass-panel p,
html[data-theme="light"] #videos .glass-panel h3 {
  color: var(--text-primary) !important;
}

/* ==========================================================================
   Interactive Layouts: Diagrams & Architecture
   ========================================================================== */
.flow-diagram {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .flow-diagram {
    flex-direction: column;
    padding: 2rem;
  }
}

.flow-node {
  flex: 1;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: var(--transition-normal);
}

.flow-node:hover {
  border-color: var(--color-secondary);
  transform: scale(1.05);
}

.flow-node h4 {
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.flow-node p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.flow-node-icon {
  color: var(--color-secondary);
  margin: 0 auto 0.75rem auto;
  font-size: 1.5rem;
}

.flow-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  animation: pulse-arrow 2s infinite ease-in-out;
}

@media (max-width: 768px) {
  .flow-arrow {
    transform: rotate(90deg);
  }
}

@keyframes pulse-arrow {

  0%,
  100% {
    opacity: 0.3;
    transform: translateX(0);
  }

  50% {
    opacity: 1;
    transform: translateX(4px);
  }
}

@media (max-width: 768px) {
  @keyframes pulse-arrow {

    0%,
    100% {
      opacity: 0.3;
      transform: translateY(0) rotate(90deg);
    }

    50% {
      opacity: 1;
      transform: translateY(4px) rotate(90deg);
    }
  }
}

/* ==========================================================================
   Page Specific Blocks: Hero Banner
   ========================================================================== */
.hero-section {
  position: relative;
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 6rem;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, hsla(250, 84%, 63%, 0.12), transparent 50%),
    radial-gradient(circle at 10% 80%, hsla(190, 90%, 50%, 0.08), transparent 50%);
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (max-width: 576px) {
  .hero-ctas {
    flex-direction: column;
    gap: 1rem;
    padding: 0 2rem;
  }
}

@media (max-width: 576px) {
  .code-preview-window {
    max-width: 100%;
    margin: 0 1rem;
    font-size: 0.78rem;
  }
  .window-body {
    padding: 0.75rem 1rem;
    overflow-x: auto;
  }
}

/* Floating Code Preview Panel */
.code-preview-window {
  max-width: 800px;
  margin: 0 auto;
  background: var(--code-panel-bg);
  border: 1px solid var(--border-glow);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

.window-header {
  height: 40px;
  background: var(--code-panel-header-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
}

.dot-red {
  background-color: #EF4444;
}

.dot-yellow {
  background-color: #F59E0B;
}

.dot-green {
  background-color: #10B981;
}

.window-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.window-body {
  padding: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-align: left;
  line-height: 1.7;
  color: #818CF8;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ==========================================================================
   Page Specific Blocks: Connectors Grid
   ========================================================================== */
.connectors-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.connector-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  transition: var(--transition-fast);
}

.connector-chip:hover {
  border-color: var(--color-secondary);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
  transform: translateY(-2px);
}

.connector-icon {
  width: 24px;
  height: 24px;
  color: var(--color-secondary);
  flex-shrink: 0;
}

.connector-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ==========================================================================
   Page Specific Blocks: Compliance Grid
   ========================================================================== */
.compliance-badge-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

@media (max-width: 992px) {
  .compliance-badge-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .compliance-badge-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.compliance-badge-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition-normal);
}

.compliance-badge-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-3px);
}

.compliance-icon {
  font-size: 2.2rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.compliance-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.compliance-status {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

html[data-theme="light"] .compliance-section .section-header h2 {
  color: var(--text-primary);
}

html[data-theme="light"] .compliance-section .section-header p,
html[data-theme="light"] .compliance-section .compliance-status {
  color: var(--text-secondary);
}

html[data-theme="light"] .compliance-section .compliance-badge-card {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Interactive Tabs
   ========================================================================== */
.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: var(--transition-fast);
}

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

.tab-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.tab-content-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-content-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Page Specific Blocks: Testimonials
   ========================================================================== */
.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-text::before {
  content: '“';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: hsla(250, 84%, 63%, 0.15);
  position: absolute;
  top: -2rem;
  left: -0.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--color-secondary);
}

.author-name {
  font-weight: 600;
  color: var(--text-primary);
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Forms & Controls
   ========================================================================== */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  background-color: rgba(17, 19, 26, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.2);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239CA3AF'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2rem;
  padding-right: 2.5rem;
}

/* Pricing Page Visuals */
.pricing-card {
  position: relative;
}

.pricing-card.featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow);
}

.pricing-featured-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--color-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  margin: 1.5rem 0;
  display: flex;
  align-items: baseline;
  color: var(--text-primary);
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 0.5rem;
}

.pricing-features-list {
  list-style: none;
  margin: 2rem 0;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.pricing-feature-icon {
  color: var(--color-secondary);
  flex-shrink: 0;
}

/* Trust Center Visuals */
.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #10B981;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: var(--radius-full);
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
}

/* ==========================================================================
   Components: Footer
   ========================================================================== */
.footer-wrapper {
  background: var(--section-contrast-bg);
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2rem 0;
  margin-top: auto;
}

html[data-theme="light"] .footer-wrapper {
  background: hsl(214, 42%, 94%);
}

html[data-theme="light"] .footer-brand p,
html[data-theme="light"] .footer-link,
html[data-theme="light"] .footer-copy {
  color: var(--text-secondary);
}

html[data-theme="light"] .footer-heading,
html[data-theme="light"] .footer-brand .logo {
  color: var(--text-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(5, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .pricing-card {
    padding: 1.5rem;
  }
}

.footer-brand p {
  margin-top: 1rem;
  max-width: 300px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-link:hover {
  color: var(--color-secondary);
  padding-left: 3px;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  color: var(--text-muted);
  font-size: 1.2rem;
}

.social-link:hover {
  color: var(--color-primary);
}

.footer-compliance-strip {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-badge {
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
}

/* ==========================================================================
   Components: Tab Navigation (Solutions / Industries)
   ========================================================================== */
.tabs-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
}

.tab-btn {
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition-fast);
  cursor: pointer;
  background: transparent;
  border: none;
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--text-primary);
  background: var(--bg-surface-elevated);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  box-shadow: var(--shadow-glow);
}

.tab-content-panel {
  display: none;
  animation: fadeIn 0.35s ease;
}

.tab-content-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Components: Pricing Cards
   ========================================================================== */
.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow), var(--shadow-md);
  background: linear-gradient(160deg,
      hsla(250, 84%, 63%, 0.08) 0%,
      var(--bg-surface) 60%);
}

.pricing-featured-badge {
  position: absolute;
  top: -1px;
  right: 2rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 1rem 0 0.5rem 0;
  line-height: 1;
}

.pricing-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 0.35rem;
}

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.5rem 0 2rem 0;
  flex: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.pricing-feature-icon {
  color: var(--color-secondary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ==========================================================================
   Components: Status Indicator (Trust Center)
   ========================================================================== */
.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.5rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10B981;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  animation: pulse-status 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-status {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* ==========================================================================
   Components: Form Controls
   ========================================================================== */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

.form-control {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  font-family: var(--font-sans);
  resize: none;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px hsla(250, 84%, 63%, 0.15);
  outline: none;
}

.form-control::placeholder {
  color: var(--text-muted);
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ==========================================================================
   Components: Legal Content Pages
   ========================================================================== */
.legal-content {
  max-width: 840px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-primary);
}

.legal-content h2:first-of-type {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--color-secondary);
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-content ul li {
  color: var(--text-secondary);
  font-size: 0.97rem;
  line-height: 1.7;
}

.legal-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

.legal-table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.legal-table thead tr {
  background: var(--bg-surface-elevated);
}

.legal-table th {
  padding: 0.875rem 1.25rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-subtle);
}

.legal-table td {
  padding: 0.875rem 1.25rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: top;
}

.legal-table tr:last-child td {
  border-bottom: none;
}

.legal-table tr:hover td {
  background: var(--bg-surface);
}

/* ==========================================================================
   Components: Connectors Explorer
   ========================================================================== */
.connectors-explorer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  transition: grid-template-rows var(--transition-slow), opacity var(--transition-normal), visibility var(--transition-normal);
  max-width: 100%;
  overflow: hidden;
}

#connectors .grid-2 {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
}

#connectors .grid-2>div:last-child {
  max-width: 100%;
  overflow: hidden;
}

@media (max-width: 1024px) {
  #connectors .grid-2 {
    grid-template-columns: 1fr;
  }
}

.connectors-explorer-container {
  overflow: hidden;
  min-height: 0;
  max-width: 100%;
}

.connectors-explorer-wrapper.expanded {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  margin-top: 3rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 3rem;
}

.connectors-explorer-content {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 100%;
}

.explorer-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

.explorer-search-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.explorer-search-input {
  width: 100%;
  padding: 0.9rem 1.25rem 0.9rem 3rem;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.explorer-search-input:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
}

.explorer-search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  font-size: 1.1rem;
}

.explorer-tabs-container {
  width: 100%;
  overflow-x: visible;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}

.explorer-tabs {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  min-width: 0;
  margin: 0 auto;
}

.explorer-tab-btn {
  padding: 0.5rem 1.25rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.explorer-tab-btn:hover {
  border-color: var(--color-primary);
  color: var(--text-primary);
}

.explorer-tab-btn.active {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

.explorer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.25rem;
  width: 100%;
  max-width: 100%;
  min-height: 100px;
}

.explorer-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
  animation: cardFadeIn 0.3s ease forwards;
  min-width: 0;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.explorer-card:hover {
  border-color: var(--color-secondary);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
  transform: translateY(-2px);
}

.explorer-card-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.explorer-card-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  overflow: hidden;
}

.explorer-card-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.explorer-card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-sm);
  width: max-content;
}

.explorer-card-tag.certified {
  background: rgba(16, 185, 129, 0.1);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.explorer-card-tag.enterprise {
  background: rgba(99, 102, 241, 0.15);
  color: #A5B4FC;
  border: 1px solid rgba(99, 102, 241, 0.25);
}

.explorer-card-tag.community {
  background: rgba(245, 158, 11, 0.1);
  color: #FBBF24;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.explorer-no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
  width: 100%;
  grid-column: 1 / -1;
  font-size: 0.95rem;
}