/* ============================================
   SECTIONS - SHARED STYLES
   ============================================ */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 20px;
  padding: 0.5rem 1rem;
  background: rgba(100, 220, 255, 0.08);
  border: 1px solid rgba(100, 220, 255, 0.15);
  border-radius: 0.25rem;
}

.section-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fff 0%, #e0e0e8 50%, #a0a0b0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.1rem);
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}


/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: 120px 0;
  background: #000000;
  position: relative;
  overflow: hidden;
}

/* Scanline texture overlay */
.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.15) 2px,
    rgba(0, 0, 0, 0.15) 4px
  );
  pointer-events: none;
  z-index: 0;
}

.services::after {
  display: none;
}

/* Floating tech icons */
.floating-tech-icons {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.tech-icon {
  position: absolute;
  width: 40px;
  height: 40px;
}

.tech-icon.tech-js {
  top: 8%;
  left: 5%;
  color: rgba(71, 186, 90, 0.5);
}

.tech-icon.tech-ts {
  top: 15%;
  right: 8%;
  color: rgba(53, 118, 197, 0.5);
  width: 35px;
  height: 35px;
}

.tech-icon.tech-react {
  top: 35%;
  left: 3%;
  color: rgba(53, 118, 197, 0.45);
  width: 50px;
  height: 50px;
}

.tech-icon.tech-vue {
  top: 25%;
  right: 4%;
  color: rgba(71, 186, 90, 0.45);
  width: 38px;
  height: 38px;
}

.tech-icon.tech-node {
  top: 55%;
  left: 6%;
  color: rgba(71, 186, 90, 0.4);
  width: 45px;
  height: 45px;
}

.tech-icon.tech-python {
  top: 45%;
  right: 6%;
  color: rgba(53, 118, 197, 0.4);
  width: 42px;
  height: 42px;
}

.tech-icon.tech-go {
  top: 70%;
  left: 4%;
  color: rgba(53, 118, 197, 0.45);
  width: 48px;
  height: 48px;
}

.tech-icon.tech-docker {
  top: 65%;
  right: 5%;
  color: rgba(53, 118, 197, 0.4);
  width: 44px;
  height: 44px;
}

.tech-icon.tech-aws {
  top: 85%;
  left: 8%;
  color: rgba(71, 186, 90, 0.35);
  width: 50px;
  height: 50px;
}

/* Top section divider - reusable across all sections */
.section-divider-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 1;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(53, 118, 197, 0.2) 20%,
    rgba(53, 118, 197, 0.5) 50%,
    rgba(53, 118, 197, 0.2) 80%,
    transparent 100%
  );
  box-shadow:
    0 0 30px rgba(53, 118, 197, 0.4),
    0 0 60px rgba(53, 118, 197, 0.2);
}

/* Bottom section divider - for section endings */
.section-divider-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 1;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(71, 186, 90, 0.2) 20%,
    rgba(53, 118, 197, 0.5) 50%,
    rgba(71, 186, 90, 0.2) 80%,
    transparent 100%
  );
  box-shadow:
    0 0 30px rgba(71, 186, 90, 0.3),
    0 0 60px rgba(53, 118, 197, 0.2);
}

/* Circuit SVG decorations - enhanced */
.circuit-left,
.circuit-right {
  position: absolute;
  width: 400px;
  height: 100%;
  opacity: 0.7;
  z-index: 0;
}

.circuit-left {
  left: 0;
  top: 0;
}

.circuit-right {
  right: 0;
  top: 0;
  transform: scaleX(-1);
}

/* ============================================
   BENTO GRID - CLERK STYLE
   ============================================ */
.bento-grid {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  margin-top: 4rem;
}

.bento-card {
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid rgba(53, 118, 197, 0.2);
  border-radius: 1rem;
  padding: .5rem 1rem 1rem 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bento-card .card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(53, 118, 197, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* Card sizes */
.bento-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 420px;
}

.bento-medium {
  grid-column: span 2;
  grid-row: span 1;
  min-height: 280px;
}

.bento-small {
  grid-column: span 1;
  grid-row: span 1;
  min-height: 200px;
}

/* Hover effects */
.bento-card:hover {
  border-color: rgba(53, 118, 197, 0.4);
  transform: translateY(-4px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(53, 118, 197, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.bento-card:hover .card-glow {
  opacity: 1;
}

/* Top shine line on hover */
.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(53, 118, 197, 0.4) 30%,
    rgba(53, 118, 197, 0.6) 50%,
    rgba(53, 118, 197, 0.4) 70%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

/* Content area */
.bento-content {
  position: relative;
  z-index: 2;
  margin-bottom: 1.25rem;
}

.bento-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0rem;
  transition: color 0.3s ease;
}

.bento-card:hover .bento-title {
  color: var(--accent);
}

.bento-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Visual area */
.bento-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: auto;
}

/* ============================================
   ENHANCED DASHBOARD MOCKUP
   ============================================ */
.mockup-dashboard {
  width: 100%;
  height: 100%;
  min-height: 320px;
  background: rgba(10, 10, 15, 0.9);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.dashboard-bg-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  pointer-events: none;
}

.grid-pulse {
  animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.bento-card:hover .mockup-dashboard {
  border-color: rgba(53, 118, 197, 0.3);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(53, 118, 197, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Enhanced Sidebar */
.mockup-sidebar {
  width: 56px;
  background: rgba(0, 0, 0, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.75rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 2;
}

.sidebar-logo {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--accent);
}

.sidebar-logo svg {
  width: 24px;
  height: 24px;
}

.sidebar-item {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: rgba(255, 255, 255, 0.4);
}

.sidebar-item svg {
  width: 18px;
  height: 18px;
  transition: all 0.3s ease;
}

.sidebar-item.active {
  background: linear-gradient(135deg, rgba(100, 220, 255, 0.2), rgba(53, 118, 197, 0.2));
  box-shadow: 
    0 0 20px rgba(100, 220, 255, 0.2),
    inset 0 0 20px rgba(100, 220, 255, 0.1);
  color: var(--accent);
}

.sidebar-item.active::before {
  content: '';
  position: absolute;
  left: -8px;
  width: 3px;
  height: 20px;
  background: linear-gradient(180deg, var(--accent), var(--accent-purple));
  border-radius: 0 2px 2px 0;
}

.sidebar-tooltip {
  position: absolute;
  left: 52px;
  background: rgba(20, 20, 30, 0.95);
  color: var(--text-primary);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 11px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-5px);
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 100;
}

.bento-card:hover .sidebar-item:hover .sidebar-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.bento-card:hover .sidebar-item:not(.active) {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
}

.bento-card:hover .sidebar-item:not(.active):hover {
  background: rgba(100, 220, 255, 0.1);
  color: var(--accent);
  transform: scale(1.05);
}

.sidebar-divider {
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 8px 0;
}

.sidebar-item.notifications {
  position: relative;
}

.notification-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border-radius: 50%;
  font-size: 8px;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Enhanced Main Area */
.mockup-main {
  flex: 1;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

/* Enhanced Header */
.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.header-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  background: none;
  width: auto;
  height: auto;
}

.header-breadcrumb {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
}

.header-breadcrumb svg {
  width: 10px;
  height: 10px;
}

.header-breadcrumb .active {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.search-box svg {
  width: 12px;
  height: 12px;
}

.bento-card:hover .search-box:hover {
  border-color: rgba(100, 220, 255, 0.2);
  background: rgba(100, 220, 255, 0.05);
}

.action-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(100, 220, 255, 0.15), rgba(53, 118, 197, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all 0.3s ease;
}

.action-btn svg {
  width: 12px;
  height: 12px;
}

.bento-card:hover .action-btn:hover {
  background: linear-gradient(135deg, rgba(100, 220, 255, 0.3), rgba(53, 118, 197, 0.3));
  transform: scale(1.1);
}

.user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-purple));
  position: relative;
}

.avatar-ring {
  position: absolute;
  inset: -2px;
  border: 2px solid transparent;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-purple)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: avatarRing 3s linear infinite;
}

@keyframes avatarRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Enhanced Stats */
.mockup-stats {
  display: flex;
  gap: 10px;
}

.stat-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-animated {
  animation: statSlideIn 0.6s ease-out backwards;
}

.stat-animated:nth-child(2) { animation-delay: 0.1s; }
.stat-animated:nth-child(3) { animation-delay: 0.2s; }

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

.bento-card:hover .stat-card {
  border-color: rgba(100, 220, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.stat-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.stat-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 14px;
  height: 14px;
}

.stat-icon.cyan { 
  background: linear-gradient(135deg, rgba(100, 220, 255, 0.2), rgba(100, 220, 255, 0.1)); 
  color: var(--accent);
  box-shadow: 0 0 12px rgba(100, 220, 255, 0.2);
}
.stat-icon.purple { 
  background: linear-gradient(135deg, rgba(53, 118, 197, 0.2), rgba(53, 118, 197, 0.1)); 
  color: var(--accent-purple);
  box-shadow: 0 0 12px rgba(53, 118, 197, 0.2);
}
.stat-icon.green { 
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1)); 
  color: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.2);
}

.stat-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  background: none;
  width: auto;
  height: auto;
  border-radius: 0;
  margin-bottom: 0;
}

.stat-label {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: none;
  width: auto;
  height: auto;
  border-radius: 0;
}

.stat-trend {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  font-weight: 600;
}

.stat-trend svg {
  width: 12px;
  height: 12px;
}

.stat-trend.up {
  color: #22c55e;
}

.stat-trend.down {
  color: #ef4444;
}

.stat-sparkline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  opacity: 0.5;
}

.stat-sparkline svg {
  width: 100%;
  height: 100%;
}

.sparkline-path {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: sparklineReveal 2s ease-out forwards;
}

@keyframes sparklineReveal {
  to { stroke-dashoffset: 0; }
}

/* Content Grid */
.mockup-content-grid {
  display: flex;
  gap: 10px;
  flex: 1;
  min-height: 0;
}

/* Enhanced Chart */
.mockup-chart {
  flex: 1.5;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.3s ease;
}

.bento-card:hover .mockup-chart {
  border-color: rgba(100, 220, 255, 0.1);
}

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

.chart-title {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-primary);
}

.chart-tabs {
  display: flex;
  gap: 4px;
}

.chart-tabs span {
  font-size: 8px;
  padding: 3px 6px;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.2s ease;
}

.chart-tabs span.active {
  background: rgba(100, 220, 255, 0.15);
  color: var(--accent);
}

.chart-line {
  flex: 1;
  width: 100%;
}

.chart-path {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
}

@keyframes chartDraw {
  to { stroke-dashoffset: 0; }
}

.chart-area {
  opacity: 0;
}

@keyframes chartFadeIn {
  to { opacity: 1; }
}

.data-point {
  opacity: 0;
}

@keyframes pointPop {
  0% { opacity: 0; transform: scale(0); }
  50% { transform: scale(1.5); }
  100% { opacity: 1; transform: scale(1); }
}

/* Chart animations on hover */
.bento-card:hover .chart-path {
  animation: chartDraw 2s ease-out forwards;
}

.bento-card:hover .chart-area {
  animation: chartFadeIn 1s ease-out 1s forwards;
}

.bento-card:hover .data-point {
  animation: pointPop 0.3s ease-out forwards;
}

.bento-card:hover .data-point:nth-child(1) { animation-delay: 0.4s; }
.bento-card:hover .data-point:nth-child(2) { animation-delay: 0.8s; }
.bento-card:hover .data-point:nth-child(3) { animation-delay: 1.2s; }
.bento-card:hover .data-point:nth-child(4) { animation-delay: 1.6s; }
.bento-card:hover .data-point:nth-child(5) { animation-delay: 2s; }

.active-point {
  filter: drop-shadow(0 0 6px var(--accent));
}

.tracking-dot {
  filter: drop-shadow(0 0 8px var(--accent));
  opacity: 0;
}

.bento-card:hover .tracking-dot {
  opacity: 1;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.3);
}

/* Activity Feed */
.activity-feed {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.3s ease;
}

.bento-card:hover .activity-feed {
  border-color: rgba(100, 220, 255, 0.1);
}

.feed-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-primary);
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 8px;
  color: #22c55e;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 4px rgba(34, 197, 94, 0); }
}

.feed-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feed-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  transition: all 0.3s ease;
  animation: feedSlide 0.5s ease-out backwards;
}

.feed-item:nth-child(1) { animation-delay: 0.2s; }
.feed-item:nth-child(2) { animation-delay: 0.4s; }
.feed-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes feedSlide {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
}

.bento-card:hover .feed-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(4px);
}

.feed-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feed-icon svg {
  width: 12px;
  height: 12px;
}

.feed-icon.cyan {
  background: rgba(100, 220, 255, 0.15);
  color: var(--accent);
}

.feed-icon.green {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.feed-icon.purple {
  background: rgba(53, 118, 197, 0.15);
  color: var(--accent-purple);
}

.feed-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feed-text {
  font-size: 9px;
  color: var(--text-primary);
}

.feed-time {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.4);
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-card {
  position: absolute;
  background: rgba(20, 20, 30, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  color: var(--text-primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-card svg {
  width: 14px;
  height: 14px;
}

.floating-card.card-1 {
  top: 20%;
  right: -60px;
  color: #22c55e;
}

.floating-card.card-2 {
  bottom: 30%;
  right: -50px;
}

.floating-card.card-3 {
  top: 45%;
  right: -55px;
}


.mini-chart svg {
  display: block;
}

.progress-ring {
  position: relative;
  width: 36px;
  height: 36px;
}

.progress-ring svg {
  width: 100%;
  height: 100%;
}

.progress-circle {
  animation: progressFill 2s ease-out forwards;
  stroke-dasharray: 0, 100;
}

.bento-card:hover .progress-circle {
  stroke-dasharray: 75, 100;
}

@keyframes progressFill {
  to { stroke-dasharray: 75, 100; }
}

.progress-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  color: var(--accent);
}

/* Connection Lines */
.connection-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.bento-card:hover .connection-lines {
  opacity: 1;
}

.flow-line {
  stroke-dasharray: 5 5;
  animation: flowDash 1s linear infinite;
}

.flow-line--delayed {
  animation-delay: 1s;
}

@keyframes flowDash {
  to { stroke-dashoffset: -10; }
}

/* ============================================
   ENHANCED BROWSER MOCKUP
   ============================================ */
.mockup-browser {
  width: 100%;
  background: rgba(10, 10, 15, 0.95);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.browser-bg-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.bento-card:hover .browser-bg-pattern {
  opacity: 1;
}

.bento-card:hover .mockup-browser {
  border-color: rgba(100, 220, 255, 0.2);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(100, 220, 255, 0.1);
}

.browser-bar {
  background: rgba(30, 30, 40, 0.95);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.browser-dots .bd {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.bento-card:hover .bd.red:hover { box-shadow: 0 0 8px #ff5f57; }
.bento-card:hover .bd.yellow:hover { box-shadow: 0 0 8px #febc2e; }
.bento-card:hover .bd.green:hover { box-shadow: 0 0 8px #28c840; }

.bd.red { background: #ff5f57; }
.bd.yellow { background: #febc2e; }
.bd.green { background: #28c840; }

.browser-nav-buttons {
  display: flex;
  gap: 4px;
}

.nav-arrow, .nav-refresh {
  width: 22px;
  height: 22px;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-arrow svg, .nav-refresh svg {
  width: 12px;
  height: 12px;
}

.bento-card:hover .nav-arrow:hover,
.bento-card:hover .nav-refresh:hover {
  background: rgba(100, 220, 255, 0.15);
  color: var(--accent);
}

.browser-url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 6px 12px;
  transition: all 0.3s ease;
}

.bento-card:hover .browser-url {
  border-color: rgba(100, 220, 255, 0.15);
}

.url-secure {
  width: 14px;
  height: 14px;
  color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
}

.url-secure svg {
  width: 12px;
  height: 12px;
}

.url-text {
  font-family: 'Fira Code', monospace;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
}

.url-domain {
  font-family: 'Fira Code', monospace;
  font-size: 0.65rem;
  color: var(--text-primary);
  font-weight: 500;
}

.url-path {
  font-family: 'Fira Code', monospace;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
}

.browser-actions {
  display: flex;
  gap: 4px;
}

.action-icon {
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.2s ease;
}

.action-icon svg {
  width: 14px;
  height: 14px;
}

.bento-card:hover .action-icon:hover {
  color: var(--accent);
}

.browser-content {
  padding: 12px;
  position: relative;
}

/* Enhanced Navigation */
.web-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-logo {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent-purple));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: all 0.3s ease;
}

.nav-logo svg {
  width: 16px;
  height: 16px;
}

.bento-card:hover .nav-logo {
  box-shadow: 0 0 20px rgba(100, 220, 255, 0.4);
  transform: rotate(5deg);
}

.nav-links {
  display: flex;
  gap: 8px;
  flex: 1;
}

.nav-link {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.nav-link.active {
  color: var(--accent);
  background: rgba(100, 220, 255, 0.1);
}

.bento-card:hover .nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-purple));
  border-radius: 6px;
  font-size: 8px;
  font-weight: 600;
  color: #000;
  transition: all 0.3s ease;
}

.nav-cta-btn svg {
  width: 10px;
  height: 10px;
  transition: transform 0.3s ease;
}

.bento-card:hover .nav-cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(100, 220, 255, 0.3);
}

.bento-card:hover .nav-cta-btn:hover svg {
  transform: translateX(2px);
}

/* Enhanced Hero Section */
.web-hero {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(100, 220, 255, 0.1);
  border: 1px solid rgba(100, 220, 255, 0.2);
  border-radius: 20px;
  padding: 3px 10px 3px 6px;
  font-size: 7px;
  color: var(--accent);
  width: fit-content;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}

.hero-headline {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.headline-word {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(10px);
  animation: wordReveal 0.5s ease forwards;
}

.headline-word.word-1 { animation-delay: 0.1s; }
.headline-word.word-2 { animation-delay: 0.2s; }
.headline-word.word-3 { animation-delay: 0.3s; }

.headline-word.gradient {
  background: linear-gradient(135deg, var(--accent), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hero-subtext {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}

.sub-line {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  width: 90%;
}

.sub-line.short {
  width: 60%;
}

.hero-buttons {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.hero-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-purple));
  color: #000;
}

.hero-btn.secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.hero-btn.secondary svg {
  width: 8px;
  height: 8px;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

@keyframes btnShine {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

.bento-card:hover .btn-shine {
  animation: btnShine 3s ease-in-out infinite;
}

.bento-card:hover .hero-btn.primary:hover {
  box-shadow: 0 8px 20px rgba(100, 220, 255, 0.3);
}

.bento-card:hover .hero-btn.secondary:hover {
  border-color: rgba(100, 220, 255, 0.3);
  background: rgba(100, 220, 255, 0.1);
}

/* Hero Visual - Card Stack */
.hero-visual {
  position: relative;
  width: 90px;
  height: 80px;
}

.card-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.stack-card {
  position: absolute;
  width: 60px;
  height: 50px;
  background: rgba(30, 30, 45, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.card-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.05) 50%, transparent 60%);
  transform: translateX(-100%);
}

@keyframes cardShimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.bento-card:hover .card-shimmer {
  animation: cardShimmer 3s ease-in-out infinite;
}

.stack-card.card-back {
  top: 0;
  left: 0;
  transform: rotate(-8deg);
  opacity: 0.5;
}

.stack-card.card-mid {
  top: 5px;
  left: 10px;
  transform: rotate(-3deg);
  opacity: 0.7;
}

.stack-card.card-front {
  top: 10px;
  left: 20px;
  transform: rotate(2deg);
  background: linear-gradient(135deg, rgba(100, 220, 255, 0.1), rgba(53, 118, 197, 0.1));
  border-color: rgba(100, 220, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
}

.bento-card:hover .stack-card.card-back {
  transform: rotate(-12deg) translateX(-5px);
}

.bento-card:hover .stack-card.card-mid {
  transform: rotate(-6deg) translateX(-2px);
}

.bento-card:hover .stack-card.card-front {
  transform: rotate(5deg) translateY(-5px);
  box-shadow: 0 10px 30px rgba(100, 220, 255, 0.2);
}

.card-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.card-lines {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 100%;
}

.card-lines span {
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}

.card-lines span:nth-child(1) { width: 100%; }
.card-lines span:nth-child(2) { width: 70%; }
.card-lines span:nth-child(3) { width: 85%; }

/* Web Floating Elements */
.web-float {
  position: absolute;
  width: 28px;
  height: 28px;
  background: rgba(20, 20, 30, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.web-float svg {
  width: 14px;
  height: 14px;
}

.web-float.float-1 {
  top: -10px;
  right: 0;
  color: var(--accent);
}

.web-float.float-2 {
  bottom: 10px;
  right: -5px;
  color: #22c55e;
}

.web-float.float-3 {
  top: 20px;
  right: -15px;
  background: linear-gradient(135deg, rgba(100, 220, 255, 0.2), rgba(53, 118, 197, 0.2));
  border-color: rgba(100, 220, 255, 0.3);
}

.float-stat {
  font-size: 8px;
  font-weight: 700;
  color: var(--accent);
}


/* Web Stats Bar */
.web-stats-bar {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.web-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.bento-card:hover .web-stat:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.web-stat-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(100, 220, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.web-stat-icon svg {
  width: 12px;
  height: 12px;
}

.web-stat-icon.purple {
  background: rgba(53, 118, 197, 0.1);
  color: var(--accent-purple);
}

.web-stat-icon.green {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.web-stat-info {
  display: flex;
  flex-direction: column;
}

.web-stat-value {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-primary);
}

.web-stat-label {
  font-size: 7px;
  color: rgba(255, 255, 255, 0.4);
}

/* Responsive Indicator */
.responsive-indicator {
  display: none;
}

.device-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.2s ease;
  cursor: pointer;
}

.device-icon svg {
  width: 12px;
  height: 12px;
}

.device-icon.active {
  color: var(--accent);
  background: rgba(100, 220, 255, 0.15);
}

.bento-card:hover .device-icon:hover {
  color: var(--accent);
}

/* Performance Badge */
.perf-badge {
  position: absolute;
  top: 50px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 6px;
  padding: 4px 8px;
  color: #22c55e;
  font-size: 10px;
  font-weight: 700;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.perf-badge svg {
  width: 12px;
  height: 12px;
}

/* Browser Cursor */
.browser-cursor {
  position: absolute;
  width: 16px;
  height: 16px;
  color: var(--text-primary);
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  transition: opacity 0.3s ease;
  bottom: 40%;
  left: 30%;
}

.browser-cursor svg {
  width: 100%;
  height: 100%;
}

.bento-card:hover .browser-cursor {
  opacity: 1;
  animation: cursorMove 4s ease-in-out infinite;
}

@keyframes cursorMove {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(30px, -10px); }
  50% { transform: translate(50px, 20px); }
  75% { transform: translate(20px, 30px); }
}

/* ============================================
   ENHANCED API CONNECTIONS MOCKUP
   ============================================ */
.mockup-api {
  width: 100%;
  height: 220px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Hex background pattern */
.api-bg-hex {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  transition: opacity 0.5s ease;
}

.bento-card:hover .api-bg-hex {
  opacity: 1;
}

/* Enhanced Central Hub */
.api-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.api-hub {
  width: 60px;
  height: 60px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hub-inner {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent), var(--accent-purple));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hub-inner svg {
  width: 26px;
  height: 26px;
}

.bento-card:hover .hub-inner {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 30px rgba(100, 220, 255, 0.5);
}

.hub-glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(100, 220, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.5;
}

@keyframes hubGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.bento-card:hover .hub-glow {
  animation: hubGlow 3s ease-in-out infinite;
}

/* Animated Rings */
.api-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid transparent;
}

.api-ring.ring-1 {
  width: 90px;
  height: 90px;
  border-color: rgba(100, 220, 255, 0.3);
}

.api-ring.ring-2 {
  width: 130px;
  height: 130px;
  border-color: rgba(53, 118, 197, 0.2);
}

.api-ring.ring-3 {
  width: 170px;
  height: 170px;
  border-color: rgba(100, 220, 255, 0.1);
  opacity: 0.3;
}

@keyframes ringRotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.05); }
}

.bento-card:hover .api-ring.ring-1 {
  animation: ringRotate 20s linear infinite;
}

.bento-card:hover .api-ring.ring-2 {
  animation: ringRotate 30s linear infinite reverse;
}

.bento-card:hover .api-ring.ring-3 {
  animation: ringPulse 4s ease-in-out infinite;
}

/* Ring Particles */
.ring-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
}

.ring-particle.p1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.ring-particle.p2 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-purple);
  box-shadow: 0 0 10px var(--accent-purple);
}

.ring-particle.p3 {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

/* Connection Lines SVG */
.api-lines-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.api-path {
  stroke-dasharray: 5 5;
  transition: all 0.4s ease;
}

.bento-card:hover .api-path {
  stroke-dasharray: 8 4;
  animation: pathFlow 1.5s linear infinite;
}

@keyframes pathFlow {
  to { stroke-dashoffset: -24; }
}

/* Data packets */
.packet {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.bento-card:hover .packet {
  opacity: 1;
}

/* Enhanced API Nodes */
.api-nodes {
  position: absolute;
  inset: 0;
  z-index: 8;
}

.api-node {
  position: absolute;
  width: 44px;
  height: 44px;
  background: rgba(15, 15, 25, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.node-icon {
  width: 20px;
  height: 20px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  z-index: 2;
}

.node-icon svg {
  width: 100%;
  height: 100%;
}

.node-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 16px;
  border: 2px solid transparent;
  opacity: 0;
  transition: all 0.3s ease;
}

.node-label {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8px;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
}

.bento-card:hover .api-node {
  border-color: rgba(100, 220, 255, 0.2);
  background: rgba(25, 25, 40, 0.95);
}

.bento-card:hover .api-node .node-icon {
  color: var(--text-primary);
}

.bento-card:hover .api-node:hover {
  transform: scale(1.15);
  border-color: rgba(100, 220, 255, 0.5);
  box-shadow: 0 0 25px rgba(100, 220, 255, 0.3);
}

.bento-card:hover .api-node:hover .node-pulse {
  opacity: 1;
  border-color: rgba(100, 220, 255, 0.3);
  animation: nodePulse 1s ease-out infinite;
}

.bento-card:hover .api-node:hover .node-label {
  opacity: 1;
  bottom: -22px;
}

@keyframes nodePulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Node positions - spread around center */
.node-1 { top: 8%; left: 8%; }
.node-2 { top: 8%; right: 8%; }
.node-3 { top: 50%; left: 2%; transform: translateY(-50%); }
.node-4 { top: 50%; right: 2%; transform: translateY(-50%); }
.node-5 { bottom: 8%; left: 12%; }
.node-6 { bottom: 8%; right: 12%; }

/* Node hover colors */
.bento-card:hover .node-1:hover .node-icon { color: #635bff; } /* Stripe */
.bento-card:hover .node-2:hover .node-icon { color: #fff; } /* GitHub */
.bento-card:hover .node-3:hover .node-icon { color: #e01e5a; } /* Slack */
.bento-card:hover .node-4:hover .node-icon { color: #ff9900; } /* AWS */
.bento-card:hover .node-5:hover .node-icon { color: #f22f46; } /* Twilio */
.bento-card:hover .node-6:hover .node-icon { color: #96bf48; } /* Shopify */

/* API Code Snippets */
.api-code-snippets {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 15;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover .api-code-snippets {
  opacity: 1;
  transform: translateX(0);
}

.code-snippet {
  background: rgba(10, 10, 20, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 6px 10px;
  font-family: 'Fira Code', monospace;
  font-size: 8px;
}

.snippet-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.method-badge {
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
}

.method-badge.get {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.method-badge.post {
  background: rgba(100, 220, 255, 0.2);
  color: var(--accent);
}

.endpoint {
  color: rgba(255, 255, 255, 0.5);
}

.snippet-body {
  color: var(--text-secondary);
}

.snippet-body code {
  display: block;
}

.code-key {
  color: #9cdcfe;
}

.code-string {
  color: #ce9178;
}

/* API Status */
.api-status {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 15;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.status-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.6);
}

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

.status-dot.online {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.status-metrics {
  display: flex;
  gap: 12px;
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.metric-value {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
}

.metric-label {
  font-size: 7px;
  color: rgba(255, 255, 255, 0.4);
}

/* Webhook Notification */
.webhook-notification {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 10, 20, 0.95);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 10px;
  padding: 8px 12px;
  z-index: 15;
  opacity: 0;
  transform: translateX(20px) scale(0.9);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover .webhook-notification {
  opacity: 1;
  transform: translateX(0) scale(1);
  animation: webhookSlide 0.5s ease-out, webhookPulse 3s ease-in-out 0.5s infinite;
}

@keyframes webhookSlide {
  0% { transform: translateX(30px) scale(0.8); opacity: 0; }
  100% { transform: translateX(0) scale(1); opacity: 1; }
}

@keyframes webhookPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.3); }
  50% { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0); }
}

.webhook-icon {
  width: 24px;
  height: 24px;
  background: rgba(34, 197, 94, 0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22c55e;
}

.webhook-icon svg {
  width: 14px;
  height: 14px;
}

.webhook-content {
  display: flex;
  flex-direction: column;
}

.webhook-title {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-primary);
}

.webhook-time {
  font-size: 7px;
  color: #22c55e;
}

/* ============================================
   TECH LOGOS
   ============================================ */
.tech-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
}

.tech-logo {
  width: 100%;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.tech-logo svg {
  width: 24px;
  height: 24px;
}

.bento-card:hover .tech-logo {
  border-color: rgba(100, 220, 255, 0.15);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.bento-card:hover .tech-logo:nth-child(1) { color: #61dafb; }
.bento-card:hover .tech-logo:nth-child(2) { color: #68a063; }
.bento-card:hover .tech-logo:nth-child(3) { color: #ff9900; }
.bento-card:hover .tech-logo:nth-child(4) { color: #3178c6; }

/* ============================================
