/* SPA Abstract UI mockups — ported from localhost:3000 AbstractUIs */
.sol-hero-visual {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 2000px;
}
.au-stage {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transform: rotateX(12deg) rotateY(-14deg);
  animation: au-enter 1.1s ease-out both;
}
@keyframes au-enter {
  from { opacity: 0; transform: rotateX(22deg) rotateY(-8deg) translateY(36px); }
  to { opacity: 1; transform: rotateX(12deg) rotateY(-14deg) translateY(0); }
}
.au-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.au-blur.a { top: 10%; right: 10%; width: 96px; height: 96px; background: rgba(216, 180, 254, 0.5); }
.au-blur.b { bottom: 20%; left: 10%; width: 128px; height: 128px; background: rgba(191, 219, 254, 0.45); }
.au-chip {
  position: absolute;
  top: 30%;
  right: 15%;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(147, 197, 253, 0.5);
  transform: rotate(12deg);
  animation: au-spin 8s ease-in-out infinite;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.12);
}
@keyframes au-spin {
  0%, 100% { transform: rotate(12deg); }
  50% { transform: rotate(90deg); }
}
.au-card {
  position: absolute;
  width: 82%;
  height: 76%;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 20px 50px rgba(163, 127, 223, 0.15);
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.5rem;
}
.au-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.au-head-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.au-head-left strong {
  font-size: 1rem;
  color: #1f2937;
  letter-spacing: 0.02em;
}
.au-head-left svg { color: #8e62cc; width: 22px; height: 22px; }
.au-pill { width: 48px; height: 14px; border-radius: 999px; background: #f3e8ff; }
.au-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
}
.au-row { display: flex; gap: 0.85rem; }
.au-tile {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  padding: 0.85rem 0.9rem;
  border: 1px solid #f9fafb;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: transform 0.25s ease;
}
.au-tile:hover { transform: translateZ(12px) translateY(-2px); }
.au-tile.wide { flex: 2; }
.au-tile.center {
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 0.25rem;
}
.au-tile.feature {
  box-shadow: 0 12px 40px rgba(163, 127, 223, 0.12);
  border-color: rgba(243, 232, 255, 0.8);
}
.au-ico {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.au-ico.lg { width: 48px; height: 48px; border-radius: 14px; }
.au-ico svg { width: 20px; height: 20px; }
.au-ico.lg svg { width: 22px; height: 22px; }
.au-ico.purple { background: #faf5ff; color: #8e62cc; }
.au-ico.blue { background: #eff6ff; color: #3b82f6; }
.au-ico.red { background: #fef2f2; color: #f87171; }
.au-ico.green { background: #ecfdf5; color: #22c55e; }
.au-ico.orange { background: #fff7ed; color: #f97316; }
.au-ico.indigo { background: #eef2ff; color: #6366f1; }
.au-ico.teal { background: #f0fdfa; color: #14b8a6; }
.au-ico.solid { background: #8e62cc; color: #fff; }
.au-ico.redsoft { background: #fee2e2; color: #ef4444; }
.au-ico.orangesoft { background: #ffedd5; color: #f97316; }
.au-title { font-size: 0.85rem; font-weight: 700; color: #1f2937; line-height: 1.3; }
.au-sub { font-size: 0.7rem; color: #9ca3af; margin-top: 0.1rem; }
.au-float {
  position: absolute;
  z-index: 3;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f3f4f6;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  padding: 0.75rem 0.9rem;
}
.au-float.top {
  top: 18%;
  right: -4%;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  animation: au-float-a 6s ease-in-out infinite;
}
.au-float.bot {
  bottom: 22%;
  left: -8%;
  animation: au-float-b 7s ease-in-out infinite;
}
@keyframes au-float-a {
  0%, 100% { transform: translateY(-5px); }
  50% { transform: translateY(5px); }
}
@keyframes au-float-b {
  0%, 100% { transform: translateY(5px); }
  50% { transform: translateY(-5px); }
}
.au-bar {
  height: 6px;
  width: 96px;
  background: #f3f4f6;
  border-radius: 999px;
  overflow: hidden;
  margin-top: 0.45rem;
}
.au-bar > span {
  display: block;
  height: 100%;
  width: 100%;
  background: #4ade80;
  border-radius: 999px;
}
.au-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
}
.au-float .label { font-size: 0.7rem; color: #9ca3af; font-weight: 500; }
.au-float .value { font-size: 0.85rem; font-weight: 700; color: #1f2937; }
.au-float .value.ok { color: #16a34a; }
.au-status {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #374151;
}

@media (max-width: 900px) {
  .sol-hero-visual { min-height: 340px; }
  .au-stage {
    width: min(100%, 420px);
    transform: rotateX(8deg) rotateY(-8deg);
  }
  .au-float.top { right: 0; }
  .au-float.bot { left: 0; }
}
