/* ============================================
   VOLTIC HOSTING - PAYMENTER THEME STYLES
   Cleaned: NAV removed + avoids clobbering Tailwind/layout
   ============================================ */

/* CSS Variables (Dark Cyberpunk Theme) */
:root {
  --background: hsl(222, 47%, 11%);
  --foreground: hsl(210, 40%, 98%);
  --card: hsl(222, 47%, 13%);
  --card-foreground: hsl(210, 40%, 98%);
  --primary: hsl(190, 95%, 59%);
  --primary-foreground: hsl(222, 47%, 11%);
  --secondary: hsl(260, 90%, 65%);
  --secondary-foreground: hsl(210, 40%, 98%);
  --muted: hsl(217, 33%, 17%);
  --muted-foreground: hsl(215, 20%, 65%);
  --border: hsl(217, 33%, 20%);

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", sans-serif;

  --radius: 0.5rem;
}

/* NOTE:
   We intentionally DO NOT:
   - reset all margins/padding globally
   - override .container
   - redefine Tailwind utility classes like .hidden/.flex
   These can break Paymenter nav + layouts.
*/

/* ============================================
   VOLTIC PAGE SCOPE (safe styling)
   Add class="vh-page" to your homepage wrapper if possible.
   If you can't, these styles still target your custom sections.
   ============================================ */

.vh-page,
.hero,
.features,
.pricing,
.info-section,
.footer {
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Use display font only within your custom page sections */
.hero h1, .hero h2, .hero h3,
.features h1, .features h2, .features h3,
.pricing h1, .pricing h2, .pricing h3,
.info-section h1, .info-section h2, .info-section h3,
.footer h1, .footer h2, .footer h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ============================================
   EFFECTS / UTILITIES (safe, custom-only)
   ============================================ */

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
}

.glass-card-hover {
  transition: all 0.3s ease;
}

.glass-card-hover:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(6, 182, 212, 0.5);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
  transform: translateY(-4px);
}

.text-gradient {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glow-text {
  text-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

/* ============================================
   BUTTONS (your custom button classes only)
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: 1;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
  background: hsl(190, 95%, 50%);
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  height: 3.5rem;
}

.btn-full {
  width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
/* ============================================
   ROTATING GLOW RINGS (HERO DECOR)
   ============================================ */



.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17, 24, 39, 0.4) 0%,
    rgba(17, 24, 39, 0.8) 50%,
    rgba(17, 24, 39, 1) 100%
  );
}

.hero-bg-noise {
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noise)" opacity="0.3"/%3E%3C/svg%3E');
  opacity: 0.2;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-size: 3rem;
  line-height: 0.9;
  color: white;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero-title-gradient {
  background: linear-gradient(to right, var(--primary), #67e8f9, white);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 40rem;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-weight: 500;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-feature-icon {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.hero-visual {
  position: relative;
  display: none;
  animation: fadeIn 1s ease-out 0.2s backwards;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }

  .hero-title {
    font-size: 4.5rem;
  }

  .hero-cta {
    flex-direction: row;
  }

  .hero-visual {
    display: block;
  }
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
  padding: 6rem 0;
  position: relative;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.features-title {
  font-size: 2rem;
  color: white;
  margin-bottom: 1.5rem;
}

.features-description {
  color: var(--muted-foreground);
  font-size: 1.125rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-icon-wrapper {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  width: fit-content;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1);
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
}

.feature-title {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 0.75rem;
}

.feature-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.pricing-bg-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 600px;
  background: var(--primary);
  opacity: 0.1;
  filter: blur(120px);
  border-radius: 50%;
  pointer-events: none;
}

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}

.pricing-title {
  font-size: 2rem;
  color: white;
  margin-bottom: 1.5rem;
}

.pricing-description {
  color: var(--muted-foreground);
  font-size: 1.125rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-title {
    font-size: 3rem;
  }
}

/* ============================================
   INFO SECTION
   ============================================ */

.info-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
}

.info-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .info-content {
    grid-template-columns: 1fr 1fr;
  }

  .info-title {
    font-size: 3rem;
  }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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