:root {
  --bg: #080711;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --text: #f7f3ff;
  --muted: #b9accd;
  --line: rgba(255, 255, 255, 0.14);
  --violet: #8b5cf6;
  --purple: #a855f7;
  --pink: #ec4899;
  --cyan: #22d3ee;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 12%, rgba(168, 85, 247, 0.22), transparent 31%),
    radial-gradient(circle at 82% 8%, rgba(236, 72, 153, 0.16), transparent 29%),
    linear-gradient(135deg, #080711 0%, #10081f 48%, #080711 100%);
}

.glow {
  position: absolute;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  animation: floatGlow 12s ease-in-out infinite alternate;
}

.glow-one {
  left: -12rem;
  top: 18rem;
  background: var(--violet);
}

.glow-two {
  right: -12rem;
  bottom: 4rem;
  background: var(--pink);
  animation-delay: -4s;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.section-pad {
  padding: 108px 0;
}

.navbar {
  padding: 18px 0;
  background: rgba(8, 7, 17, 0.38);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: 0.25s ease;
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(8, 7, 17, 0.82);
  border-bottom-color: var(--line);
}

.navbar-brand {
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 13px;
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow: 0 12px 30px rgba(168, 85, 247, 0.36);
}

.navbar-nav {
  gap: 8px;
}

.nav-link {
  color: rgba(247, 243, 255, 0.76);
  font-weight: 600;
}

.nav-link:hover,
.nav-link:focus {
  color: white;
}

.btn {
  border-radius: 999px;
  font-weight: 700;
}

.btn-link-light {
  color: var(--text);
  padding-inline: 18px;
}

.btn-primary-glow {
  border: 0;
  color: white;
  background: linear-gradient(135deg, var(--violet), var(--purple), var(--pink));
  box-shadow: 0 16px 34px rgba(168, 85, 247, 0.32);
}

.btn-primary-glow:hover,
.btn-primary-glow:focus {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(168, 85, 247, 0.44);
}

.btn-outline-soft {
  color: white;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline-soft:hover,
.btn-outline-soft:focus {
  color: white;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.11);
}

.hero {
  min-height: auto;
  display: flex;
  align-items: flex-start;
  padding-top: 124px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 13px;
  border: 1px solid rgba(168, 85, 247, 0.34);
  border-radius: 999px;
  color: #ddd1ff;
  background: rgba(168, 85, 247, 0.12);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.cta-banner h2 {
  letter-spacing: 0;
  line-height: 1.03;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(2.45rem, 4.5vw, 3.4rem);
  font-weight: 900;
}

.hero-copy {
  max-width: 620px;
  margin: 18px 0 26px;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.2rem);
}

.hero-actions,
.trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.trust-row {
  margin-top: 32px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 44px;
  height: 44px;
  border: 2px solid #160d25;
  border-radius: 50%;
  object-fit: cover;
}

.avatar-stack img + img {
  margin-left: -12px;
}

.stars {
  color: #fbbf24;
  letter-spacing: 1px;
}

.trust-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.dashboard-shell,
.glass-panel,
.feature-card,
.pricing-card,
.testimonial-card,
.accordion-item {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.dashboard-shell {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  transform: translateY(8px);
}

.dashboard-shell::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.7), rgba(34, 211, 238, 0.16), rgba(236, 72, 153, 0.55));
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.24);
  border-bottom: 1px solid var(--line);
}

.dashboard-topbar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.dashboard-topbar strong {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.84rem;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 500px;
}

.dashboard-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 12px;
  border-right: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.14);
}

.dashboard-sidebar a {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 9px 10px;
  border-radius: 12px;
  color: rgba(247, 243, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 650;
}

.dashboard-sidebar a.active,
.dashboard-sidebar a:hover {
  color: white;
  background: rgba(168, 85, 247, 0.22);
}

.dashboard-main {
  padding: 20px;
}

.dashboard-heading,
.card-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.dashboard-heading span,
.card-label span,
.metric-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.dashboard-heading h2 {
  margin: 2px 0 0;
  font-size: 1.22rem;
}

.dashboard-heading button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.07);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 12px;
}

.metric-card,
.chart-card,
.task-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.metric-card {
  display: grid;
  gap: 7px;
  padding: 16px;
}

.metric-card i {
  color: #c4b5fd;
}

.metric-card strong {
  font-size: 1.35rem;
}

.dashboard-lower {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 12px;
}

.chart-card,
.task-card {
  padding: 16px;
}

.card-label strong {
  color: #86efac;
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 160px;
  margin-top: 20px;
}

.bar-chart span {
  flex: 1;
  min-width: 14px;
  height: var(--h);
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #d8b4fe, #8b5cf6 54%, #ec4899);
  animation: growBar 1.4s ease both;
  transform-origin: bottom;
}

.task-card ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.task-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(247, 243, 255, 0.83);
  font-size: 0.88rem;
}

.task-card i {
  color: #86efac;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-card {
  position: relative;
  min-height: 245px;
  padding: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  transition: 0.25s ease;
}

.feature-card::after,
.pricing-card::after {
  content: "";
  position: absolute;
  inset: auto 20px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 180, 254, 0.75), transparent);
}

.feature-card:hover,
.pricing-card:hover,
.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 180, 254, 0.36);
}

.feature-card i {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 18px;
  color: white;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(236, 72, 153, 0.75));
}

.feature-card h3,
.pricing-card h3,
.testimonial-card h3,
.timeline h3,
.site-footer h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 800;
}

.feature-card p,
.pricing-card p,
.timeline p,
.testimonial-card p,
.site-footer p {
  color: var(--muted);
}

.process-section {
  background: linear-gradient(180deg, transparent, rgba(168, 85, 247, 0.08), transparent);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--pink), var(--cyan));
}

.timeline article {
  position: relative;
  padding: 92px 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  text-align: center;
}

.timeline span {
  position: absolute;
  top: 14px;
  left: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  box-shadow: 0 0 0 8px rgba(168, 85, 247, 0.15);
  font-weight: 900;
  transform: translateX(-50%);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  min-height: 310px;
  padding: 26px;
  border-radius: var(--radius);
  transition: 0.25s ease;
}

.testimonial-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card span {
  color: var(--muted);
}

.carousel-control-prev,
.carousel-control-next {
  width: 48px;
}

.pricing-card {
  position: relative;
  min-height: 520px;
  padding: 32px;
  border-radius: 24px;
  transition: 0.25s ease;
}

.pricing-card.featured {
  border-color: rgba(216, 180, 254, 0.58);
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.22), rgba(255, 255, 255, 0.075));
  transform: translateY(-14px);
}

.popular-badge {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 7px 12px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  font-size: 0.78rem;
  font-weight: 800;
}

.price {
  margin: 22px 0;
  font-size: 2.7rem;
  font-weight: 900;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  color: rgba(247, 243, 255, 0.84);
}

.pricing-card li::before {
  content: "\f00c";
  margin-right: 10px;
  color: #86efac;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.comparison-table {
  width: 100%;
  max-width: 100%;
  margin-top: 42px;
  padding: 12px;
  border-radius: var(--radius);
  overflow-x: auto;
  contain: paint;
}

.table {
  min-width: 650px;
  margin: 0;
  --bs-table-bg: transparent;
  --bs-table-color: var(--text);
}

.table th,
.table td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.table td:not(:first-child),
.table th:not(:first-child) {
  text-align: center;
}

.faq-accordion {
  max-width: 880px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 14px;
  border-radius: 18px !important;
  overflow: hidden;
}

.accordion-button,
.accordion-button:not(.collapsed) {
  color: white;
  background: transparent;
  box-shadow: none;
  font-weight: 800;
}

.accordion-button::after {
  filter: invert(1);
}

.accordion-body {
  color: var(--muted);
}

.cta-banner {
  padding: clamp(42px, 8vw, 84px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.22), transparent 18%),
    linear-gradient(135deg, #7c3aed, #a855f7 45%, #ec4899);
  box-shadow: 0 26px 80px rgba(168, 85, 247, 0.34);
  text-align: center;
}

.cta-banner h2 {
  max-width: 900px;
  margin: 0 auto 26px;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
}

.site-footer {
  padding: 72px 0 30px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.18);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: white;
  font-weight: 900;
}

.site-footer h3 {
  font-size: 1rem;
}

.site-footer a:not(.footer-brand) {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
}

.site-footer a:hover {
  color: white;
}

.newsletter-form {
  display: flex;
  min-height: 50px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 14px;
  color: white;
  background: transparent;
}

.newsletter-form button {
  width: 40px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--violet), var(--pink));
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  display: grid !important;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
}

.footer-bottom {
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.redirect-notice {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1050;
  display: grid;
  gap: 2px;
  max-width: min(340px, calc(100vw - 36px));
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: white;
  background: linear-gradient(145deg, rgba(18, 9, 31, 0.92), rgba(88, 28, 135, 0.9));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.redirect-notice span {
  color: var(--muted);
  font-size: 0.92rem;
}

@keyframes floatGlow {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(3rem, -2rem, 0) scale(1.08);
  }
}

@keyframes growBar {
  from {
    transform: scaleY(0.08);
  }
  to {
    transform: scaleY(1);
  }
}

@media (max-width: 1199.98px) {
  .dashboard-shell {
    transform: none;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(8, 7, 17, 0.94);
  }

  .nav-actions {
    align-items: stretch !important;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
  }

  .timeline,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline::before {
    display: none;
  }

  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 767.98px) {
  .section-pad {
    padding: 78px 0;
  }

  .row {
    margin-left: 0;
    margin-right: 0;
  }

  .hero {
    padding-top: 126px;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .dashboard-main {
    padding: 14px;
  }

  .dashboard-lower,
  .metric-grid,
  .timeline,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-topbar strong {
    display: none;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .feature-card,
  .pricing-card,
  .testimonial-card {
    min-height: auto;
  }

  .comparison-table {
    padding: 8px;
  }

  .table {
    min-width: 0;
    font-size: 0.72rem;
  }

  .table th,
  .table td {
    padding: 10px 6px;
    white-space: normal;
  }
}

@media (max-width: 420px) {
  .dashboard-sidebar {
    grid-template-columns: 1fr;
  }

  .metric-card strong {
    font-size: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
