:root {
  --ink: #2f2545;
  --muted: #6c7293;
  --line: #efe4f8;
  --paper: #f7f4fb;
  --white: #ffffff;
  --purple: #9A55FF;
  --lilac: #DA8CFF;
  --deep: #1c1233;
  --deep-2: #2a1848;
  --grad: linear-gradient(135deg, #DA8CFF 0%, #9A55FF 100%);
}
* {
  box-sizing: border-box;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
*::-webkit-scrollbar {
  display: none;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  background: var(--paper);
  color: var(--muted);
  font-family: Inter, "Segoe UI", sans-serif;
  line-height: 1.65;
}
h1, h2, h3, h4, h5, h6 {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.25;
}
a {
  text-decoration: none;
}
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}
.site-nav.is-scrolled {
  box-shadow: 0 8px 22px rgba(32, 16, 56, 0.06);
}
.site-nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  max-width: 1140px;
  min-height: 64px;
  margin: 0 auto;
  padding: 0 1.15rem;
}
.site-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}
.site-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.site-nav-brand img {
  width: 22px;
  height: 22px;
}
.site-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
}
.site-nav-links a {
  padding: 0.4rem 0.75rem;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 600;
}
.site-nav-links a:hover {
  color: var(--purple);
}
.site-nav-links .is-login {
  display: none;
}
.site-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.site-nav-login,
.site-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 0.9rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
}
.site-nav-login {
  border: 1px solid #e4dcf0;
  background: #fff;
  color: var(--ink);
}
.site-nav-login:hover {
  border-color: #c9a6ff;
  color: var(--purple);
}
.site-nav-cta {
  background: var(--grad);
  color: #fff;
}
.site-nav-cta:hover {
  opacity: 0.92;
  color: #fff;
}
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 7.2rem 0 5.4rem;
  background:
    radial-gradient(circle at 88% 8%, rgba(218, 140, 255, 0.32), transparent 34%),
    linear-gradient(160deg, #1c1233 0%, #3b1d73 48%, #9A55FF 100%);
  color: #fff;
}
.hero-section::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -28%;
  width: 42%;
  height: 70%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transform: rotate(18deg);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero-section h1 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  font-weight: 800;
}
.hero-section .lead {
  max-width: 640px;
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.15rem;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 700;
}
.btn-hero-primary {
  background: #fff;
  color: #7b3fe4;
}
.btn-hero-primary:hover {
  background: #f7f1ff;
  color: #5b22c6;
}
.btn-hero-outline {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.page-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 6.4rem 1.15rem 3.2rem;
}
.page-main h1 {
  margin: 0 0 0.85rem;
  font-size: 1.7rem;
}
.page-main h2 {
  margin: 1.4rem 0 0.4rem;
  font-size: 1.02rem;
}
.page-main p {
  margin: 0 0 0.7rem;
  font-size: 0.92rem;
}
.stats-section {
  position: relative;
  z-index: 2;
  padding: 0 0 1.25rem;
  margin-top: -2.1rem;
}
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 14px 36px rgba(32, 16, 56, 0.08);
}
.stat-card {
  padding: 1.15rem 1rem 1.2rem;
  text-align: center;
}
.stat-card + .stat-card {
  border-left: 1px solid var(--line);
}
.stat-number {
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
}
.stat-label {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}
.services-section,
.pricing-section {
  padding: 3.6rem 0;
}
.features-section {
  padding: 3.8rem 0;
  background: var(--deep);
  color: #fff;
}
.cta-section {
  padding: 3.6rem 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(218, 140, 255, 0.22), transparent 36%),
    linear-gradient(135deg, #2a1848 0%, #9A55FF 100%);
  color: #fff;
  text-align: center;
}
.section-header {
  max-width: 620px;
  margin: 0 auto 2rem;
  text-align: center;
}
.section-header h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
}
.section-header p {
  margin: 0;
  font-size: 0.95rem;
}
.features-section .section-header h2,
.cta-section h2 {
  color: #fff;
}
.features-section .section-header p,
.cta-section p {
  color: rgba(255, 255, 255, 0.78);
}
.cta-section h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}
.cta-section p {
  margin: 0 0 1.3rem;
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.service-card,
.pricing-card,
.feature-item {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.service-card {
  padding: 1.2rem 1.15rem 1.25rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.service-card:hover {
  border-color: #d7c4f3;
  transform: translateY(-3px);
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 0.75rem;
  border-radius: 4px;
  background: #f3e9ff;
  color: var(--purple);
  font-size: 1.05rem;
}
.service-card h4 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
}
.service-card p {
  margin: 0 0 0.7rem;
  font-size: 0.86rem;
}
.service-features {
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.28rem 0;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
}
.service-features li i {
  color: var(--purple);
  font-size: 0.78rem;
}
.feature-grid .feature-item {
  padding: 1.15rem 1.15rem 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 0.7rem;
  border-radius: 4px;
  background: var(--grad);
  color: #fff;
  font-size: 0.95rem;
}
.feature-item h4 {
  margin: 0 0 0.35rem;
  color: #fff;
  font-size: 1rem;
}
.feature-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
}
.pricing-card {
  padding: 1.5rem 1.4rem 1.45rem;
  box-shadow: 0 16px 40px rgba(32, 16, 56, 0.07);
}
.pricing-card h3 {
  margin: 0;
  font-size: 1.05rem;
}
.pricing-price {
  margin: 0.45rem 0 0.2rem;
  color: var(--purple);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.1;
}
.pricing-features {
  margin: 1rem 0 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 0;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
}
.pricing-features li i {
  color: var(--purple);
}
.pricing-card .btn-hero {
  width: 100%;
  margin-top: 0.9rem;
}
.footer {
  padding: 2.4rem 0 1.15rem;
  background: var(--deep);
  color: rgba(255, 255, 255, 0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem 2rem;
  align-items: start;
}
.footer-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.footer-about .social-icons {
  margin-top: 0.85rem;
}
.footer-about p {
  max-width: 280px;
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-brand img {
  width: 22px;
  height: 22px;
}
.footer-col h5 {
  margin: 0 0 0.7rem;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-col h5 a {
  display: inline;
  padding: 0;
  color: #fff;
  font-size: inherit;
}
.footer-col a {
  display: block;
  padding: 0.22rem 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
}
.footer-col a:hover {
  color: #fff;
}
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.social-icons a:hover {
  background: var(--purple);
}
.footer-copy {
  margin: 1.6rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  text-align: center;
}
.footer-copy p {
  margin: 0;
}
.footer-copy a {
  display: inline;
  color: var(--lilac);
  font-weight: 700;
}
@media (max-width: 991.98px) {
  .site-nav-inner {
    grid-template-columns: 36px 1fr auto;
  }
  .site-nav-toggle {
    display: inline-flex;
  }
  .site-nav-brand {
    justify-content: center;
  }
  .site-nav-login {
    display: none;
  }
  .site-nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.45rem 1.15rem 0.7rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }
  .site-nav.is-open .site-nav-links {
    display: flex;
  }
  .site-nav-links a {
    padding: 0.7rem 0;
    border-bottom: 1px solid #f3eef8;
  }
  .site-nav-links a:last-child {
    border-bottom: 0;
  }
  .site-nav-links .is-login {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-about {
    grid-column: 1 / -1;
  }
}
@media (max-width: 767.98px) {
  .hero-section {
    padding: 6.2rem 0 4.2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }
  .stat-card:nth-child(odd) {
    border-left: 0;
  }
  .stat-card:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}
