/* ==========================================================================
   BORNOLD DEVOPS // MISSION CONTROL
   Theme: Obsidian Minimalist with Fluid Motion
   Icons: Tabler Icons (Zero Emojis)
   ========================================================================== */

:root {
  --bg-core: #080b11;
  --bg-surface: #0e1322;
  --bg-surface-elevated: #151c30;
  --bg-glass: rgba(14, 19, 34, 0.75);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-active: rgba(59, 130, 246, 0.4);
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --color-blue: #3b82f6;
  --color-blue-glow: rgba(59, 130, 246, 0.25);
  --color-emerald: #10b981;
  --color-emerald-glow: rgba(16, 185, 129, 0.25);
  --color-purple: #8b5cf6;
  --color-purple-glow: rgba(139, 92, 246, 0.25);
  --color-rose: #f43f5e;
  --color-amber: #f59e0b;
  
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-full: 9999px;
  
  --transition-smooth: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.obsidian-theme {
  background-color: var(--bg-core);
  color: var(--text-primary);
  font-family: var(--font-sans);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(59, 130, 246, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(139, 92, 246, 0.04) 0%, transparent 40%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* Utilities */
.font-mono { font-family: var(--font-mono); }
.text-success { color: var(--color-emerald); }
.text-warning { color: var(--color-amber); }
.text-danger { color: var(--color-rose); }
.hidden { display: none !important; }

/* Layout */
.app-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top Bar Navigation */
.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(8, 11, 17, 0.85);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.brand-titles {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.brand-subtitle {
  font-size: 0.725rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Radar Pulse Indicator */
.radar-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-emerald);
  position: relative;
}

.radar-dot.active::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--color-emerald);
  animation: radarPulse 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

@keyframes radarPulse {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Clocks Panel */
.clocks-panel {
  display: flex;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.35rem 1rem;
  gap: 0.75rem;
}

.clock-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.clock-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.clock-time {
  font-size: 0.825rem;
  color: var(--text-primary);
  font-weight: 500;
}

.clock-divider {
  width: 1px;
  height: 14px;
  background: var(--border-subtle);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.latency-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-emerald);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-full);
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
  color: #93c5fd;
  border: 1px solid var(--border-active);
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-md);
  font-size: 0.825rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.action-btn:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(139, 92, 246, 0.25));
  color: #ffffff;
  box-shadow: 0 0 16px var(--color-blue-glow);
  transform: translateY(-2px);
}

.icon-btn {
  background: var(--bg-surface);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.icon-btn:hover {
  color: #ffffff;
  border-color: var(--border-active);
  background: var(--bg-surface-elevated);
}

/* Metrics Bar */
.metrics-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.metrics-card {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.metrics-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.4), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
}

.metrics-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.metrics-card:hover::before {
  opacity: 1;
}

.metrics-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
  font-size: 1.25rem;
}

.metrics-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.metrics-label {
  font-size: 0.675rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.metrics-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.metrics-link {
  font-size: 0.85rem;
  color: var(--color-blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition-smooth);
}

.metrics-link:hover {
  color: #93c5fd;
  text-decoration: underline;
}

/* Workspace Controls */
.workspace-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.search-box {
  position: relative;
  width: 100%;
}

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

.search-box input {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 0.875rem 3rem 0.875rem 3.25rem;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.925rem;
  outline: none;
  transition: var(--transition-smooth);
}

.search-box input:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px var(--color-blue-glow);
  background: var(--bg-surface-elevated);
}

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

/* Workspace Pills */
.workspace-pills {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}

.workspace-pills::-webkit-scrollbar { display: none; }

.pill-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.45rem 1.1rem;
  color: var(--text-secondary);
  font-size: 0.825rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.pill-btn:hover {
  color: #ffffff;
  background: var(--bg-surface-elevated);
  border-color: rgba(255, 255, 255, 0.15);
}

.pill-btn.active {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
  color: #ffffff;
  border-color: var(--color-blue);
  box-shadow: 0 0 12px var(--color-blue-glow);
}

/* Projects Feed */
.projects-feed {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  flex: 1;
  padding-bottom: 4rem;
}

.project-section {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: var(--transition-smooth);
  animation: fadeInStagger 0.4s ease-out backwards;
}

@keyframes fadeInStagger {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.project-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.project-title-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.project-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff;
}

.project-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.project-tagline {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.project-badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.badge {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge-outline {
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.02);
}

/* Service Grid */
.grid-services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

.service-card:hover {
  background: var(--bg-surface-elevated);
  border-color: var(--border-active);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-icon-box {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-icon {
  font-size: 1.2rem;
  color: var(--color-blue);
}

.service-title {
  font-size: 0.925rem;
  font-weight: 600;
  color: #ffffff;
}

.service-arrow {
  font-size: 1rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.service-card:hover .service-arrow {
  color: #ffffff;
  transform: translateX(3px);
}

.service-url {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.service-type {
  font-size: 0.675rem;
  color: var(--text-muted);
}

.service-status {
  font-size: 0.675rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-emerald);
}

/* Integrations Hub (Sentry, Infisical, GitLab) */
.integrations-hub {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.hub-card {
  background: rgba(14, 19, 34, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hub-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.hub-header i {
  font-size: 1.15rem;
}

.hub-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hub-link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.85rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.hub-link-item:hover {
  background: var(--bg-surface-elevated);
  border-color: var(--border-active);
  color: #ffffff;
  transform: translateX(4px);
}

.hub-badge-link {
  background: rgba(148, 163, 184, 0.08);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.2rem 0.55rem;
  font-size: 0.7rem;
  font-family: var(--font-sans);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: var(--transition-fast);
}

.hub-link-item:hover .hub-badge-link {
  background: rgba(168, 85, 247, 0.15);
  color: #d8b4fe;
  border-color: rgba(168, 85, 247, 0.4);
}

/* Runbook Drawer */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.drawer-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.drawer-panel {
  background: var(--bg-surface);
  width: 100%;
  max-width: 580px;
  height: 100%;
  border-left: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 36px rgba(0, 0, 0, 0.6);
  animation: slideInRight 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

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

.drawer-title-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.drawer-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.drawer-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.drawer-header p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.icon-btn-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.icon-btn-close:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.drawer-filter {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.drawer-filter input {
  width: 100%;
  background: var(--bg-core);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem;
  color: #ffffff;
  font-size: 0.85rem;
  outline: none;
}

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

.runbook-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.runbook-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.runbook-card-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
}

.runbook-card-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.command-box {
  background: #04060a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.command-text {
  font-family: var(--font-mono);
  font-size: 0.775rem;
  color: #a5f3fc;
  word-break: break-all;
  user-select: all;
}

.btn-copy {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-family: var(--font-sans);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.btn-copy:hover {
  background: var(--color-blue);
  color: #ffffff;
  border-color: var(--color-blue);
}

.btn-copy.copied {
  background: var(--color-emerald);
  color: #ffffff;
  border-color: var(--color-emerald);
}

/* Security Gate Modal */
.gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 10, 0.92);
  backdrop-filter: blur(24px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.gate-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.8);
  animation: scaleIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.gate-icon-pulse {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.gate-header h2 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.gate-header p {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-bottom: 2rem;
}

.pin-input-group {
  display: flex;
  gap: 0.5rem;
}

.pin-input-group input {
  flex: 1;
  background: var(--bg-core);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  font-size: 1rem;
  color: #ffffff;
  text-align: center;
  font-family: var(--font-mono);
  letter-spacing: 0.25em;
  outline: none;
}

.pin-input-group input:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px var(--color-blue-glow);
}

.pin-input-group button {
  background: var(--color-blue);
  border: none;
  color: #ffffff;
  padding: 0 1.25rem;
  border-radius: var(--radius-md);
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.pin-input-group button:hover {
  background: #2563eb;
  box-shadow: 0 0 16px var(--color-blue-glow);
}

.gate-error {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--color-rose);
}

.gate-hint {
  margin-top: 1rem;
  font-size: 0.725rem;
  color: var(--text-muted);
}

/* Toast System */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 300;
}

.toast {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-active);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  font-size: 0.825rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: toastSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes toastSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Footer */
.bottom-footer {
  margin-top: auto;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 900px) {
  .clocks-panel { display: none; }
  .bottom-footer { flex-direction: column; gap: 1rem; align-items: flex-start; }
}

@media (max-width: 600px) {
  .app-layout { padding: 0 1rem; }
  .metrics-bar { grid-template-columns: 1fr; }
  .grid-services { grid-template-columns: 1fr; }
  .integrations-hub { grid-template-columns: 1fr; }
}
