.gradient-text {
  background: linear-gradient(135deg, #b5abff 0%, #7b66f1 50%, #5b48d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.glow-card {
  background: rgba(24, 28, 38, 0.85);
  border: 1px solid rgba(157, 143, 255, 0.12);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.glow-card:hover {
  border-color: rgba(157, 143, 255, 0.35);
  box-shadow: 0 0 40px rgba(123, 102, 241, 0.08);
}
.hero-glow {
  background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(123, 102, 241, 0.15) 0%, transparent 70%);
}
.pricing-popular {
  border: 2px solid #7b66f1;
  box-shadow: 0 0 60px rgba(123, 102, 241, 0.15);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float { animation: float 6s ease-in-out infinite; }
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.credit-card-head { margin-bottom: 1rem; }
.credit-card-kicker {
  margin: 0 0 0.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9ca3af;
}
.credit-rows { display: flex; flex-direction: column; gap: 0.95rem; }
.credit-row-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.82rem;
}
.credit-row-label { color: #e5e7eb; font-weight: 550; }
.credit-row-detail {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.74rem;
  font-weight: 400;
  line-height: 1.35;
  color: #9ca3af;
}
.credit-row-value { color: #9ca3af; font-variant-numeric: tabular-nums; white-space: nowrap; }
.credit-row-value--free { color: #30a46c; font-weight: 600; }

.site-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(8, 9, 13, 0.8);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.site-nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  gap: 1rem;
}
.site-nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  color: #9ca3af;
}
.site-nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-dd { position: relative; }
.nav-dd-btn {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
}
.nav-dd-btn:hover { color: #fff; }
.nav-dd-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  min-width: 14rem;
  padding: 0.4rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #181c26;
}
.nav-dd.open .nav-dd-menu { display: block; }
.nav-dd-menu a {
  display: block;
  padding: 0.55rem 0.7rem;
  border-radius: 0.5rem;
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.8125rem;
}
.nav-dd-menu a:hover { background: rgba(255, 255, 255, 0.06); color: #fff; }
.nav-dd-menu .nav-dd-meta {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.7rem;
  color: #9ca3af;
}
.nav-dd-menu a.nav-dd-primary {
  margin-top: 0.25rem;
  background: #5b48d8;
  color: #fff;
  text-align: center;
  font-weight: 600;
}
.nav-dd-menu a.nav-dd-primary:hover { background: #4535b5; }
.nav-toggle {
  display: inline-flex;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e5e7eb;
  border-radius: 0.5rem;
  padding: 0.35rem 0.6rem;
  font-size: 0.75rem;
  cursor: pointer;
}
@media (min-width: 768px) {
  .site-nav-links { display: flex; }
  .nav-toggle { display: none; }
}
.site-nav.mobile-open .site-nav-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  padding: 1rem 1.5rem 1.25rem;
  background: #0f1117;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  gap: 1rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #5b48d8;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  text-decoration: none;
}
.btn-primary:hover { background: #4535b5; }
.btn-ghost {
  font-size: 0.875rem;
  color: #9ca3af;
  text-decoration: none;
}
.btn-ghost:hover { color: #fff; }

.site-footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.bill-note {
  margin-top: 1.5rem;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(157, 143, 255, 0.18);
  background: rgba(24, 28, 38, 0.65);
  font-size: 0.8125rem;
  color: #9ca3af;
  line-height: 1.5;
}
