:root {
  --bg: #070A12;
  --text: rgba(255,255,255,.90);
  --muted: rgba(255,255,255,.70);
  --muted2: rgba(255,255,255,.55);
  --accent: #7C5CFF;
  --accent2: #22D3EE;
  --good: #34D399;

  /* ✅ Gradient “skin” variables (default) */
  --g1: rgba(124, 92, 255, .22);
  --g2: rgba(34, 211, 238, .18);
  --g3: rgba(52, 211, 153, .12);
}

/* ✅ Alternate gradient skin (still dark UI, just different gradients) */
html[data-skin="alt"] {
  --g1: rgba(77, 139, 255, 0.18);
  --g2: rgba(255, 214, 0, .12);
  --g3: rgba(0, 255, 209, .10);

  /* optional accent shift */
  --accent: #4d8bff;
  --accent2: #00FFD1;
}

.req {
  color: #ff4d4d;
  font-weight: 900;
  margin-left: 4px;
}

.success-screen {
  padding: 30px;
  border-radius: 24px;
  animation: slideUp 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 290px;
}

.success-inner {
  text-align: center;
  max-width: 360px;
}

.fade-out {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.35s ease;
}

.fade-in {
  animation: fadeInUp 0.45s ease;
}

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

.success-icon {
  width: 78px;
  height: 78px;
  margin: auto;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  color: var(--good);
  background: rgba(52, 211, 153, 0.16);
  border: 1px solid rgba(52, 211, 153, 0.35);
  box-shadow: 0 0 60px rgba(52, 211, 153, 0.25);
}

#successScreen.glass {
  background: linear-gradient(
    180deg,
    rgba(52, 211, 153, 0.14),
    rgba(255, 255, 255, 0.04)
  );
  border: 1px solid rgba(52, 211, 153, 0.28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

* { box-sizing: border-box; }

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;

  /* ✅ Uses the skin vars so toggle changes gradients */
  background:
    radial-gradient(1200px 800px at 15% 10%, var(--g1), transparent 55%),
    radial-gradient(1000px 700px at 85% 20%, var(--g2), transparent 60%),
    radial-gradient(900px 900px at 60% 95%, var(--g3), transparent 60%),
    var(--bg);

  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  border-radius: 16px;
  font-weight: 800;
  text-decoration: none;
  color: white !important;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 30px rgba(124,92,255,.18);
  transition: 0.25s ease;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 45px rgba(34,211,238,.22);
  border-color: rgba(255,255,255,.22);
}

/* -----------------------------
   Pricing monthly/yearly toggle
------------------------------ */
.billing-toggle {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}

.billing-btn {
  border: 0;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  color: rgba(255,255,255,.75);
  background: transparent;
  transition: .2s ease;
  cursor: pointer;
}

.billing-btn.active {
  color: rgba(255,255,255,.95);
  background: linear-gradient(
    135deg,
    rgba(124,92,255,.35),
    rgba(34,211,238,.22)
  );
  border: 1px solid rgba(255,255,255,.14);
}

.billing-btn:hover {
  color: rgba(255,255,255,.95);
}

/* noise overlay */
body:before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.6' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  opacity: .22;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.glass {
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 55px rgba(0,0,0,.45);
  border-radius: 24px;
}

.top-shell {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px 0;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(7,10,18,.72), rgba(7,10,18,.40));
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
}

.brand-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124,92,255,.22), rgba(34,211,238,.14));
  border: 1px solid rgba(255,255,255,.14);
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 5px rgba(124,92,255,.10);
}

.brand-name { font-weight: 900; }
.brand-tag { font-size: .85rem; opacity: .7; font-weight: 700; }

.nav-links {
  display: flex;
  gap: 6px;
  padding: 6px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}

.nav-link-chip {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 700;
  transition: .2s;
}

.nav-link-chip.active {
  color: var(--text);
  background: linear-gradient(135deg, rgba(124,92,255,.25), rgba(34,211,238,.18));
  border: 1px solid rgba(255,255,255,.14);
}

.nav-cta { margin-left: auto; display: flex; gap: 10px; }

.btn-glow {
  border: 0;
  color: #0b1020;
  font-weight: 900;
  padding: 11px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}

.btn-ghost {
  border: 1px solid rgba(255,255,255,.16);
  color: var(--text);
  font-weight: 900;
  padding: 11px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
}

.hero { padding: 68px 0 44px; }

.kicker {
  display: inline-flex;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--muted);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--good);
  box-shadow: 0 0 0 6px rgba(52,211,153,.10);
}

.hero-title { font-weight: 900; font-size: clamp(2.2rem, 3.2vw, 3.4rem); }
.hero-sub { color: var(--muted); max-width: 56ch; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

.gradient-text {
  background: linear-gradient(90deg, #fff, rgba(255,255,255,.85), rgba(124,92,255,.95), rgba(34,211,238,.95));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section { padding: 58px 0; }
.section-title { font-weight: 900; }
.section-sub { color: var(--muted); max-width: 64ch; }
.tiny { color: rgba(255,255,255,.55); font-size: .92rem; }

/* Feature cards */
.feature { padding: 18px; border-radius: 22px; height: 100%; }
.feature .icon { width: 44px; height: 44px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); }
.feature h5 { font-weight: 900; margin: 14px 0 8px; }

/* Widget demo steps */
.widget-demo-steps { display: grid; gap: 12px; margin-top: 16px; }
.demo-step {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
}
.step-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}

/* Timeline */
.timeline { display: grid; gap: 14px; margin-top: 22px; }
.timeline-item {
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-radius: 22px;
}
.step-badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(124,92,255,.40), rgba(34,211,238,.22));
  border: 1px solid rgba(255,255,255,.14);
}

/* Dashboard */
.dashboard-mock { border-radius: 24px; }
.dash-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.dash-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.dash-card { padding: 14px; border-radius: 18px; }
.dash-top { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.dash-top i { font-size: 1.2rem; opacity: .9; }

.dash-list li {
  list-style: none;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dash-list i { color: var(--good); }

/* Integrations */
.integration-card {
  padding: 18px;
  border-radius: 22px;
  text-align: center;
}
.integration-card i {
  font-size: 1.6rem;
  margin-bottom: 10px;
  display: block;
  opacity: .9;
}
.integration-card h6 { font-weight: 900; margin-bottom: 6px; }

/* FAQ */
.faq-wrap { display: grid; gap: 12px; }
.faq-item { padding: 14px 16px; border-radius: 22px; }
.faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  font-weight: 900;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.open .faq-a { max-height: 220px; padding-bottom: 8px; }
.faq-item.open .faq-q i { transform: rotate(45deg); transition: .2s; }

/* Form */
.aura-input {
  background: rgba(255,255,255,.05) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  color: var(--text) !important;
}

.toast-success { border-color: rgba(52,211,153,.25) !important; }

.footer-card {
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}

@media (max-width: 991.98px) {
  .nav-links { display: none; }
  .dash-grid { grid-template-columns: 1fr; }
}

html { scroll-behavior: smooth; }

/* Animation */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0px); }
}


/* Pricing Page Styles */
.pricing-wrapper { padding: 80px 0; }

.plan-main {
  padding: 34px;
  border-radius: 28px;
  margin-bottom: 34px;
}

.plan-title {
  font-weight: 900;
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
  line-height: 1.08;
  margin: 0;
}

.plan-price {
  font-weight: 900;
  font-size: clamp(1.6rem, 2.3vw, 2.6rem);
  letter-spacing: -0.4px;
  margin: 0;
}

.plan-tagline {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 6px;
  margin-bottom: 22px;
}

.plan-checklist {
  margin-top: 12px;
  padding-left: 0;
  list-style: none;
}

.plan-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.98rem;
  font-weight: 650;
  color: rgba(255,255,255,.80);
}

.plan-checklist li.enabled i { color: var(--good); }
.plan-checklist li.disabled { color: rgba(255,255,255,.40); }
.plan-checklist li.disabled i { color: rgba(255,255,255,.25); }

.pro-heading {
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: -0.25px;
  margin-bottom: 10px;
  color: rgba(255,255,255,.92);
}

.pro-subheading {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.15px;
  margin-bottom: 10px;
  color: rgba(255,255,255,.92);
}

.desc-box {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  margin-top: 18px;
}

.desc-box p {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  font-size: .98rem;
}

.plan-extra-box {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  margin-top: 14px;
}

.plan-extra-box ul {
  margin: 0;
  padding-left: 18px;
}

.plan-extra-box li {
  color: rgba(255,255,255,.72);
  font-size: .95rem;
  line-height: 1.55;
  margin-bottom: 8px;
}

.tint-purple {
  background: linear-gradient(180deg, rgba(124,92,255,.14), rgba(255,255,255,.04));
  border: 1px solid rgba(124,92,255,.22);
}

.tint-cyan {
  background: linear-gradient(180deg, rgba(34,211,238,.12), rgba(255,255,255,.04));
  border: 1px solid rgba(34,211,238,.20);
}

.tint-green {
  background: linear-gradient(180deg, rgba(52,211,153,.12), rgba(255,255,255,.04));
  border: 1px solid rgba(52,211,153,.22);
}

.more-plans-wrap { margin-top: 42px; }

.more-plans-heading {
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}

.more-plans-sub {
  color: rgba(255,255,255,.55);
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.plan-mini {
  padding: 22px;
  border-radius: 22px;
  cursor: pointer;
  transition: .22s ease;
  height: 100%;
}

.plan-mini:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.22);
}

.mini-title {
  font-weight: 850;
  font-size: 1.15rem;
  letter-spacing: -0.15px;
  margin-bottom: 4px;
}

.mini-sub {
  color: rgba(255,255,255,.60);
  font-size: .92rem;
  font-weight: 600;
}

.mini-price {
  font-weight: 900;
  font-size: 1.2rem;
  margin-top: 10px;
  letter-spacing: -0.2px;
}
