/* ApexVPS shared styles (used on top of Tailwind CDN) */

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.nav {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-gradient {
  background:
    radial-gradient(60rem 28rem at 15% -10%, rgba(37, 99, 235, 0.35), transparent 60%),
    radial-gradient(50rem 24rem at 90% 10%, rgba(14, 165, 233, 0.18), transparent 55%),
    linear-gradient(160deg, #0b1220 0%, #0f172a 55%, #14213d 100%);
}

.hero-grid {
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(60% 60% at 50% 35%, black, transparent);
  -webkit-mask-image: radial-gradient(60% 60% at 50% 35%, black, transparent);
}

.text-gradient {
  background: linear-gradient(90deg, #60a5fa, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-header {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.premium-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.premium-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -12px rgba(15, 23, 42, 0.18);
}

.stat { font-variant-numeric: tabular-nums; }

/* Checkout modal */
.apex-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: apexFade 0.15s ease;
}
.apex-modal {
  animation: apexRise 0.2s ease;
}
@keyframes apexFade { from { opacity: 0; } }
@keyframes apexRise { from { opacity: 0; transform: translateY(10px) scale(0.98); } }
