/* === Nexus Neon Theme === */
:root{
  --nexus-bg:#050014;
  --nexus-bg-2:#0b0126;
  --nexus-cyan:#22d3ee;
  --nexus-blue:#3b82f6;
  --nexus-purple:#8b5cf6;
  --nexus-glow:0 0 24px rgba(59,130,246,.35),0 0 48px rgba(139,92,246,.2);
  --nexus-border:rgba(59,130,246,.35);
  --nexus-text:#e6f0ff;
  --nexus-text-muted:#a4b0d9;
  --nexus-card:rgba(10,6,28,.6);
  --nexus-card-hover:rgba(15,10,35,.7);
}

*{box-sizing:border-box}
html,body{height:100%;scroll-behavior:smooth}
html, body{
  background: radial-gradient(1200px 800px at 80% -10%, var(--nexus-bg-2) 0%, var(--nexus-bg) 55%, #02010a 100%) fixed;
  color: var(--nexus-text);
  margin:0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height:1.5;
}

a{ color: var(--nexus-cyan); text-decoration:none; } 
a:hover{ color: var(--nexus-blue); }

/* Top Header */
.top-header{
  background: var(--nexus-bg);
  padding: 12px 0;
  border-bottom: 1px solid rgba(59,130,246,0.2);
}
.top-header .wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-left{
  display: flex;
  align-items: center;
}
.nexus-logo{
  height: 28px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(59,130,246,.4));
}
.header-right{
  display: flex;
  align-items: center;
}
.header-links{
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-link{
  color: #cbd5e1;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  padding: 4px 6px;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.header-link:hover{
  color: #e2e8f0;
  background: rgba(255,255,255,0.05);
}
.header-link.icon-only{
  padding: 6px;
}
.flag-icon{
  width: 16px;
  height: 12px;
}
.header-link svg{
  opacity: 0.8;
}

/* Secondary Navigation */
.secondary-nav{
  background: linear-gradient(90deg, rgba(3,1,20,.85), rgba(15,0,55,.85));
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--nexus-border);
  box-shadow: var(--nexus-glow);
}
.secondary-nav-content{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.secondary-nav-links{
  display: flex;
}
.secondary-nav-right{
  display: flex;
}
.secondary-nav .nav-item{
  color: #eaf6ff !important;
  text-decoration: none;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}
.secondary-nav .nav-item:hover{
  color: #bfe9ff !important;
  background: rgba(255,255,255,0.1);
}
.secondary-nav .account-link{
  font-weight: 500;
}
.secondary-nav .dropdown svg{
  width: 10px;
  height: 10px;
  margin-left: 4px;
  opacity: 0.8;
}
/* Layout & Components */
.wrap{max-width:1140px;margin:0 auto;padding:0 20px}

.site-header{
  background: linear-gradient(90deg, rgba(3,1,20,.85), rgba(15,0,55,.85));
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--nexus-border);
  box-shadow: var(--nexus-glow);
  position:sticky;
  top:0;
  z-index:100;
}
.site-header .wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:15px;
  padding-bottom:15px;
}

.brand{display:flex;align-items:center;gap:12px}
.nexus-brand{ display:flex; align-items:center; gap:.5rem; }
.logo-circle{
  width:40px;
  height:40px;
  border-radius:8px;
  overflow:hidden;
  display:grid;
  place-items:center;
  filter: drop-shadow(0 0 12px rgba(59,130,246,.55));
}
.logo-circle img{width:100%;height:100%;object-fit:cover}
.brand-text h1{
  font-size:20px;
  margin:0;
  font-weight:700;
  letter-spacing:.4px;
  color:#dff6ff;
  opacity:.9;
}
.brand-text .muted{margin:2px 0 0;color:var(--nexus-text-muted);font-size:13px}

.navbar-nav{
  display:flex;
  align-items:center;
  gap:20px;
}
.nav-link{
  color:#eaf6ff;
  text-decoration:none;
  font-weight:500;
  font-size:14px;
  padding:8px 12px;
  border-radius:6px;
  transition:all 0.2s ease;
}
.nav-link:hover{
  color:#bfe9ff;
  background:rgba(59,130,246,.1);
}
.discord-link{
  display:flex;
  align-items:center;
  gap:6px;
  padding:8px 16px;
  background: linear-gradient(90deg, var(--nexus-blue), var(--nexus-purple));
  border:0;
  border-radius:6px;
  color:white;
  text-decoration:none;
  font-weight:500;
  font-size:14px;
  box-shadow: var(--nexus-glow);
  transition:all 0.2s ease;
}
.discord-link:hover{
  filter: brightness(1.1);
  color:white;
}

/* Hero Section */
.hero{
  padding:60px 0;
  text-align:center;
}
.hero-content{max-width:700px;margin:0 auto}
.hero h2{
  margin:0 0 16px;
  font-size:2.5rem;
  font-weight:700;
  color:#d9e9ff;
  line-height:1.2;
  text-shadow: 0 0 20px rgba(59,130,246,.4);
}
.hero-description{
  color:var(--nexus-text);
  font-size:18px;
  margin:0 0 40px;
}

/* Pricing Section */
.pricing-section{
  padding:60px 0;
  text-align:center;
}
.pricing-header h3{
  margin:0 0 8px;
  font-size:2.2rem;
  font-weight:700;
  color:#d9e9ff;
  text-shadow: 0 0 20px rgba(59,130,246,.4);
}
.pricing-header p{
  color:var(--nexus-text-muted);
  font-size:18px;
  margin:0 0 40px;
}
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:24px;
  max-width:800px;
  margin:0 auto;
}
.pricing-card{
  background:var(--nexus-card);
  border: 1px solid var(--nexus-border);
  border-radius:12px;
  padding:32px 24px;
  box-shadow: var(--nexus-glow);
  transition: transform .15s ease;
  position:relative;
  overflow:hidden;
}
.pricing-card:hover{
  transform: translateY(-4px);
}
.pricing-card.featured{
  border-color:var(--nexus-cyan);
  box-shadow: 0 0 24px rgba(34,211,238,.35), 0 0 48px rgba(139,92,246,.2);
}
.pricing-card.featured::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background: linear-gradient(90deg, var(--nexus-cyan), var(--nexus-purple));
}
.plan-badge{
  position:absolute;
  top:16px;
  right:16px;
  background: linear-gradient(90deg, var(--nexus-cyan), var(--nexus-purple));
  color:white;
  padding:4px 12px;
  border-radius:12px;
  font-size:11px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.5px;
}
.plan-header h4{
  margin:0 0 16px;
  font-size:24px;
  font-weight:600;
  color:#d9e9ff;
}
.price{
  margin-bottom:24px;
}
.price .amount{
  font-size:36px;
  font-weight:800;
  color:var(--nexus-cyan);
  text-shadow: 0 0 12px rgba(34,211,238,.5);
}
.price .period{
  display:block;
  font-size:14px;
  color:var(--nexus-text-muted);
  margin-top:4px;
}
.plan-features{
  list-style:none;
  padding:0;
  margin:24px 0 32px;
  text-align:left;
}
.plan-features li{
  margin:12px 0;
  color:var(--nexus-text);
  font-size:15px;
}
.btn-plan{
  width:100%;
  padding:14px 24px;
  background:rgba(59,130,246,.1);
  border: 1px solid var(--nexus-border);
  border-radius:8px;
  color:var(--nexus-text);
  font-weight:600;
  font-size:16px;
  cursor:pointer;
  transition:all 0.2s ease;
}
.btn-plan:hover{
  background:rgba(59,130,246,.2);
  border-color:var(--nexus-cyan);
  box-shadow: 0 0 12px rgba(59,130,246,.25);
}
.btn-plan.btn-primary{
  background: linear-gradient(90deg, var(--nexus-blue), var(--nexus-purple));
  border:0;
  color:white;
  box-shadow: var(--nexus-glow);
}
.btn-plan.btn-primary:hover{
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* Service Links Grid */
.service-links{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:20px;
  margin:40px 0;
}
.service-link{
  display:flex;
  align-items:center;
  gap:16px;
  padding:20px;
  background:var(--nexus-card);
  border: 1px solid var(--nexus-border);
  border-radius:8px;
  text-decoration:none;
  color:var(--nexus-text);
  box-shadow: var(--nexus-glow);
  transition: transform .15s ease;
}
.service-link:hover{
  background:var(--nexus-card-hover);
  transform: translateY(-2px);
  color:var(--nexus-text);
}
.service-icon{
  width:60px;
  height:60px;
  display:grid;
  place-items:center;
  background:rgba(59,130,246,.1);
  border:1px solid var(--nexus-border);
  border-radius:8px;
  overflow:hidden;
  flex-shrink:0;
  box-shadow: 0 0 12px rgba(59,130,246,.25);
}
.service-icon img{
  width:80%;
  height:80%;
  object-fit:contain;
  filter: drop-shadow(0 0 6px rgba(59,130,246,.35));
}
.service-info h4{
  margin:0 0 4px;
  font-weight:600;
  font-size:16px;
  color:#d9e9ff;
}
.service-info p{
  margin:0;
  color:var(--nexus-text-muted);
  font-size:14px;
}

/* Plans Section */
.plans-section{
  text-align:center;
  margin:80px 0 32px;
}
.plans-section h3{
  margin:0 0 8px;
  font-size:32px;
  font-weight:700;
}
.section-description{
  color:var(--text-secondary);
  font-size:18px;
  margin:0;
}

/* Pricing Cards */
.tiers{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:32px;
  margin:32px 0 80px;
  max-width:800px;
  margin-left:auto;
  margin-right:auto;
}
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--border-radius);
  padding:32px;
  box-shadow:var(--glow-soft);
  transition:var(--transition);
  position:relative;
  overflow:hidden;
}
.card:hover{
  transform:translateY(-8px);
  box-shadow:var(--glow);
  border-color:var(--line-light);
}
.card.highlight{
  border-color:var(--accent);
  box-shadow:var(--glow);
}
.card.highlight::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:2px;
  background:linear-gradient(90deg,var(--accent),var(--success));
}

.plan-badge{
  position:absolute;
  top:16px;
  right:16px;
  padding:6px 12px;
  background:var(--bg-secondary);
  border:1px solid var(--line);
  border-radius:20px;
  font-size:11px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.5px;
  color:var(--muted);
}
.plan-badge.popular{
  background:linear-gradient(135deg,var(--accent),var(--success));
  border-color:transparent;
  color:white;
}

.card-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  margin-bottom:24px;
}
.card h3{
  margin:0;
  font-size:24px;
  font-weight:700;
}
.price{
  font-size:36px;
  font-weight:800;
  background:linear-gradient(135deg,var(--accent),var(--success));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.price span{
  font-size:16px;
  color:var(--muted);
  margin-left:4px;
  font-weight:500;
}

.features{
  list-style:none;
  padding:0;
  margin:24px 0 32px;
}
.features li{
  margin:12px 0;
  color:var(--text-secondary);
  font-size:15px;
  display:flex;
  align-items:center;
  gap:8px;
}
.features li::before{
  content:'✓';
  color:var(--success);
  font-weight:bold;
  width:16px;
}
/* FAQ Section */
.faq{
  max-width:700px;
  margin:60px auto 40px;
  background:var(--nexus-card);
  border: 1px solid var(--nexus-border);
  border-radius:8px;
  padding:32px;
  box-shadow: var(--nexus-glow);
}
.faq h3{
  margin:0 0 20px;
  font-size:24px;
  font-weight:600;
  text-align:center;
  color:#d9e9ff;
}
.faq details{
  background:rgba(15,10,35,.4);
  border:1px solid var(--nexus-border);
  border-radius:6px;
  padding:16px 20px;
  margin:12px 0;
  transition:all 0.2s ease;
}
.faq details:hover{
  background:rgba(20,15,40,.6);
}
.faq details[open]{
  border-color:var(--nexus-cyan);
  box-shadow: 0 0 12px rgba(34,211,238,.25);
}
.faq summary{
  cursor:pointer;
  font-weight:500;
  font-size:15px;
  color:var(--nexus-text);
  margin-bottom:8px;
}
.faq details p{
  color:var(--nexus-text-muted);
  margin:8px 0 0;
  line-height:1.5;
  font-size:14px;
}

/* Footer */
.site-footer{
  background: linear-gradient(180deg, #0b0126 0%, #050014 100%);
  border-top: 1px solid var(--nexus-border);
  box-shadow: 0 -2px 18px rgba(59,130,246,0.20), 0 -8px 46px rgba(139,92,246,0.18);
  margin-top:60px;
}
.footer-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:24px 0;
  flex-wrap:wrap;
  gap:16px;
}
.footer-content p{
  color:var(--nexus-text-muted);
  margin:0;
  font-size:14px;
}
.footer-links{
  display:flex;
  gap:20px;
}
.footer-links a{
  color:#bfe9ff;
  text-decoration:none;
  font-size:14px;
  font-weight:500;
  transition:color .2s ease;
}
.footer-links a:hover{
  color:var(--nexus-cyan);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero{padding:40px 0}
  .hero h2{font-size:2rem}
  .hero-description{font-size:16px}
  .service-links{grid-template-columns:1fr;gap:16px}
  .pricing-grid{grid-template-columns:1fr;gap:20px}
  .footer-content{
    flex-direction:column;
    text-align:center;
  }
  .site-header .wrap{
    flex-direction:column;
    gap:16px;
  }
  .navbar-nav{
    width:100%;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
  }
  .faq{
    margin:40px 0;
    padding:24px;
  }
  .pricing-section{
    padding:40px 0;
  }
  .pricing-header h3{
    font-size:1.8rem;
  }
  .secondary-nav-links{
    flex-wrap:nowrap;
    overflow-x:auto;
  }
  .secondary-nav .nav-item{
    flex-shrink:0;
    padding:12px 16px;
    font-size:13px;
  }
}
