/* Shared AndroidLink site styles */
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #050508;
}

.glass {
  background: rgba(17, 17, 24, 0.72);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.gradient-text {
  background: linear-gradient(135deg, #3DDC84 0%, #22d3ee 50%, #3DDC84 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-blur {
  backdrop-filter: blur(16px);
  background: rgba(5, 5, 8, 0.85);
}

.btn-primary {
  background: linear-gradient(135deg, #3DDC84, #2bb86a);
  box-shadow: 0 0 40px rgba(61, 220, 132, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  box-shadow: 0 0 60px rgba(61, 220, 132, 0.5);
  transform: translateY(-1px);
}

.hero-glow {
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(61, 220, 132, 0.18), transparent);
}

.screenshot-frame {
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.feature-card {
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(61, 220, 132, 0.3);
}

.reveal {
  opacity: 1;
  transform: none;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(24px);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

#mobile-menu:not(.open) {
  display: none;
}

@media (min-width: 768px) {
  #mobile-menu {
    display: none !important;
  }
}

.release-notes {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  line-height: 1.65;
}

.release-notes h2,
.release-notes h3 {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.release-notes ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.5rem 0;
}

.release-notes li {
  margin: 0.25rem 0;
}

.release-notes code {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.1rem 0.35rem;
  border-radius: 0.25rem;
  font-size: 0.8em;
}

.badge-prerelease {
  background: rgba(34, 211, 238, 0.15);
  color: #22d3ee;
  border: 1px solid rgba(34, 211, 238, 0.25);
}

.badge-latest {
  background: rgba(61, 220, 132, 0.15);
  color: #3DDC84;
  border: 1px solid rgba(61, 220, 132, 0.25);
}

/* Insights dashboard */
.insights-page {
  background: #050508;
  background-image: radial-gradient(ellipse 70% 50% at 50% -20%, rgba(61, 220, 132, 0.08), transparent);
}

.insights-period-btn {
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.03);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.insights-period-btn:hover {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.15);
}

.insights-period-btn.active {
  color: #050508;
  background: linear-gradient(135deg, #3DDC84, #2bb86a);
  border-color: transparent;
}

.insights-kpi-card {
  transition: border-color 0.2s;
}

.insights-kpi-card:hover {
  border-color: rgba(61, 220, 132, 0.2);
}

.insights-bar-track {
  height: 8px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.insights-bar-track-sm {
  height: 6px;
}

.insights-bar-fill {
  height: 100%;
  border-radius: 9999px;
  background: linear-gradient(90deg, #3DDC84, #22d3ee);
  transition: width 0.6s ease;
}

.insights-bar-fill-cyan {
  background: linear-gradient(90deg, #0891b2, #22d3ee);
}

.insights-rec-card {
  border-left: 3px solid rgba(255, 255, 255, 0.1);
}

.insights-rec-high {
  border-left-color: #3DDC84;
}

.insights-rec-medium {
  border-left-color: #22d3ee;
}

.insights-rec-low {
  border-left-color: rgba(255, 255, 255, 0.2);
}

.insights-priority-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
}

.insights-priority-high {
  background: rgba(61, 220, 132, 0.15);
  color: #3DDC84;
}

.insights-priority-medium {
  background: rgba(34, 211, 238, 0.12);
  color: #22d3ee;
}

.insights-priority-low {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
}

.insights-sparkline-wrap svg {
  display: block;
}

.insights-auth-card code {
  font-size: 0.85em;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.1rem 0.35rem;
  border-radius: 0.25rem;
}
