/* Cloudploys lite — shared theme (inner pages + listings) */
body {
  box-sizing: border-box;
}
* {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-gradient {
  background: radial-gradient(ellipse at 50% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(168, 85, 247, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 40%);
}
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.glow-button {
  position: relative;
  overflow: hidden;
}
.glow-button::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}
.glow-button:hover::before {
  opacity: 1;
}
.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  animation: twinkle var(--duration) ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}
.section-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.section-fade.visible {
  opacity: 1;
  transform: translateY(0);
}
.nav-blur {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.feature-icon {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
  border: 1px solid rgba(139, 92, 246, 0.3);
}
html {
  scroll-behavior: smooth;
}
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.open {
  transform: translateX(0);
}
/* Tech / related link pills */
.tech-pill {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d1d5db;
}

/* DataFlight top announcement bar */
:root {
  --df-announce-h: 0px;
}
html.df-announce-active {
  --df-announce-h: 3.25rem;
}
.df-announce-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(90deg, rgba(30, 27, 75, 0.97) 0%, rgba(67, 56, 202, 0.92) 45%, rgba(91, 33, 182, 0.95) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}
.df-nav-fixed {
  top: var(--df-announce-h, 0px);
}
.df-mobile-below-announce {
  top: var(--df-announce-h, 0px);
  bottom: 0;
}
.df-app-pad-announce {
  padding-top: var(--df-announce-h, 0px);
}
.df-announce-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #e9d5ff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.df-announce-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}
.df-announce-btn:focus-visible {
  outline: 2px solid #c4b5fd;
  outline-offset: 2px;
}
.df-announce-chevron {
  transition: transform 0.2s ease;
}
.df-announce-bar.df-announce-open .df-announce-chevron {
  transform: rotate(180deg);
}
.df-announce-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  padding-bottom: 0.25rem;
}
.df-announce-panel[hidden] {
  display: none !important;
}
.df-announce-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1e1b4b;
  background: #fff;
  border-radius: 0.5rem;
  transition: background 0.2s, transform 0.15s;
}
.df-announce-cta:hover {
  background: #f5f3ff;
}
.df-announce-cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.df-announce-cta-primary {
  padding: 0.5rem 1rem;
}
.df-announce-dismiss {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  font-size: 1.25rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.75);
  background: transparent;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.df-announce-dismiss:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.df-announce-dismiss:focus-visible {
  outline: 2px solid #c4b5fd;
  outline-offset: 2px;
}
