:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
  color: #0f172a;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --violet: #7c3aed;
  --violet-dark: #2e1065;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f8fafc;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.brand img {
  display: block;
  width: 157px;
  height: auto;
}

.nav-links,
.header-actions,
.hero-actions,
.mini-panels,
.site-footer nav {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: clamp(18px, 3vw, 34px);
  color: #475569;
  font-size: 0.92rem;
  font-weight: 650;
}

.nav-links a:hover,
.login-link:hover {
  color: var(--violet);
}

.header-actions {
  gap: 16px;
  font-size: 0.92rem;
  font-weight: 800;
}

.login-link {
  color: var(--violet);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 850;
}

.header-cta {
  padding: 0 20px;
  background: var(--violet);
  color: #fff;
  box-shadow: 0 18px 32px rgba(124, 58, 237, 0.18);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(168, 85, 247, 0.55), transparent 32%),
    radial-gradient(circle at 88% 15%, rgba(236, 72, 153, 0.34), transparent 28%),
    linear-gradient(135deg, #351279 0%, #14082f 100%);
  color: #fff;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(72px);
  pointer-events: none;
}

.hero-glow.one {
  top: 90px;
  left: 48%;
  width: 380px;
  height: 380px;
  background: rgba(255, 255, 255, 0.13);
}

.hero-glow.two {
  right: -120px;
  bottom: 0;
  width: 360px;
  height: 360px;
  background: rgba(124, 58, 237, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: clamp(40px, 6vw, 82px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 118px) clamp(20px, 4vw, 34px);
}

.pill {
  display: inline-flex;
  margin: 0 0 24px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.3rem, 7vw, 6.9rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2.2rem, 4.4vw, 4.8rem);
  font-weight: 900;
}

h3 {
  font-size: 1.18rem;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.lead {
  max-width: 660px;
  margin: 26px 0 0;
  color: #ddd6fe;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.75;
}

.hero-actions {
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  padding: 0 24px;
  border: 1px solid transparent;
}

.button.primary {
  background: #fff;
  color: #020617;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.button.primary.light {
  color: var(--violet);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.26);
  color: #fff;
}

.trusted {
  margin: 26px 0 0;
  color: #c4b5fd;
  font-size: 0.92rem;
  font-weight: 650;
}

.product-card {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 32px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: -24px;
  z-index: -1;
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.11);
  filter: blur(18px);
}

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.card-header div {
  display: grid;
  gap: 5px;
}

.card-header strong {
  font-size: 1.05rem;
}

.card-header span,
.card-header em,
.search,
.table-row span {
  color: #94a3b8;
}

.card-header span,
.card-header em {
  font-size: 0.78rem;
  font-style: normal;
}

.card-header em {
  padding: 7px 11px;
  border-radius: 999px;
  background: #f5f3ff;
  color: var(--violet);
  font-weight: 800;
  white-space: nowrap;
}

.search {
  margin-bottom: 16px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f8fafc;
  font-size: 0.88rem;
}

.table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 1.4fr 0.72fr 0.62fr 0.85fr;
  gap: 10px;
  align-items: center;
  padding: 13px 16px;
}

.table-head {
  background: #f8fafc;
  color: #64748b;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.table-row {
  border-top: 1px solid #f1f5f9;
  font-size: 0.78rem;
}

.table-row small {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 850;
}

.ok {
  background: #ecfdf5;
  color: #059669;
}

.warn {
  background: #fffbeb;
  color: #d97706;
}

.bad {
  background: #fef2f2;
  color: #dc2626;
}

.mini-panels {
  gap: 12px;
  margin-top: 18px;
}

.mini-panels div {
  flex: 1;
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid #ede9fe;
  border-radius: 18px;
  background: #f5f3ff;
}

.mini-panels div:last-child {
  border-color: #d1fae5;
  background: #ecfdf5;
}

.mini-panels span {
  color: var(--violet);
  font-size: 0.76rem;
  font-weight: 850;
}

.mini-panels div:last-child span {
  color: #059669;
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 112px) clamp(20px, 4vw, 34px);
}

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

.eyebrow {
  margin: 0 0 16px;
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading > span,
.body-copy {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.feature-grid,
.steps,
.stats-grid,
.testimonial-grid,
.pricing-grid {
  display: grid;
  gap: 20px;
  margin-top: 48px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid article,
.steps article,
.testimonial-grid article,
.pricing-grid article {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.05);
}

.feature-grid article {
  padding: 28px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.feature-grid article:hover {
  transform: translateY(-4px);
  border-color: #ddd6fe;
  box-shadow: 0 22px 48px rgba(124, 58, 237, 0.12);
}

.feature-grid i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 16px;
  background: #f5f3ff;
  color: var(--violet);
  font-style: normal;
  font-weight: 900;
}

.feature-grid p,
.steps p,
.testimonial-grid p,
.pricing-grid p,
.faq-list p {
  color: #475569;
  line-height: 1.7;
}

.steps-section,
.pricing-section {
  max-width: none;
  background: #f5f3ff;
}

.steps-section > *,
.pricing-section > * {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps article {
  padding: 30px;
}

.steps strong {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 32px;
  border-radius: 999px;
  background: var(--violet);
  color: #fff;
  font-size: 1.45rem;
}

.client-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
}

.client-section .section-heading,
.client-section .eyebrow {
  text-align: left;
}

.phone {
  max-width: 360px;
  margin: 0 auto;
  padding: 12px;
  border-radius: 42px;
  background: #020617;
  box-shadow: 0 34px 76px rgba(124, 58, 237, 0.18);
}

.phone-screen {
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
}

.phone-hero {
  padding: 26px;
  background: linear-gradient(135deg, var(--violet), #c026d3);
  color: #fff;
}

.phone-hero span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.phone-hero h3 {
  margin-top: 22px;
  color: #fff;
  font-size: 1.55rem;
}

.phone-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.phone-stats b {
  display: grid;
  gap: 4px;
  padding: 13px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.15);
}

.phone-stats small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.phone-body {
  padding: 20px;
}

.chips {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 850;
}

.chips span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
}

.chips span:first-child {
  background: var(--violet);
  color: #fff;
}

.phone-body article {
  display: grid;
  gap: 6px;
  margin-top: 10px;
  padding: 15px;
  border: 1px solid #f1f5f9;
  border-radius: 18px;
}

.phone-body article small {
  color: #94a3b8;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  font-weight: 750;
}

.check-list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  border-radius: 999px;
  background: #ede9fe;
  color: var(--violet);
}

.stats-section {
  padding: clamp(72px, 9vw, 104px) clamp(20px, 4vw, 34px);
  background: #14082f;
  color: #fff;
}

.stats-section > * {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.inverted h2 {
  color: #fff;
}

.inverted .eyebrow {
  color: #c7d2fe;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stats-grid article {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.1);
}

.stats-grid strong {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  font-weight: 950;
}

.stats-grid span {
  display: block;
  margin-top: 10px;
  color: #e0e7ff;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-grid article {
  padding: 30px;
}

.testimonial-grid footer {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: 26px;
}

.testimonial-grid footer b {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--violet);
  color: #fff;
}

.testimonial-grid footer span {
  display: grid;
  gap: 3px;
  font-weight: 850;
}

.testimonial-grid footer small {
  color: var(--muted);
  font-weight: 550;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-grid article {
  position: relative;
  padding: 32px;
}

.pricing-grid article.featured {
  border-color: #020617;
  background: #020617;
  color: #fff;
  box-shadow: 0 30px 72px rgba(15, 23, 42, 0.22);
}

.pricing-grid em {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--violet);
  color: #fff;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-grid article > strong {
  display: block;
  margin-top: 28px;
  font-size: 3rem;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.pricing-grid article > small {
  color: var(--muted);
}

.pricing-grid .featured p,
.pricing-grid .featured small,
.pricing-grid .featured li {
  color: #cbd5e1;
}

.pricing-grid ul {
  display: grid;
  gap: 14px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.pricing-grid li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--violet);
  font-weight: 900;
}

.pricing-grid article > a {
  display: flex;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  background: #f1f5f9;
  font-weight: 850;
}

.pricing-grid .featured a {
  background: var(--violet);
  color: #fff;
}

.faq-section {
  max-width: 920px;
}

.faq-list {
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
}

.faq-list details {
  padding: 24px;
}

.faq-list details + details {
  border-top: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.final-cta {
  max-width: 1120px;
  margin: 0 auto clamp(72px, 9vw, 112px);
  padding: clamp(42px, 7vw, 72px) clamp(24px, 6vw, 76px);
  border-radius: 34px;
  background: linear-gradient(135deg, var(--violet), #020617);
  color: #fff;
  text-align: center;
  box-shadow: 0 34px 76px rgba(124, 58, 237, 0.18);
}

.final-cta p {
  max-width: 660px;
  margin: 20px auto 30px;
  color: #e0e7ff;
  font-size: 1.08rem;
  line-height: 1.7;
}

.final-cta div {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  padding: 56px clamp(20px, 4vw, 56px);
  background: #020617;
  color: #fff;
}

.site-footer img {
  width: 150px;
}

.site-footer p {
  max-width: 420px;
  color: #94a3b8;
  line-height: 1.7;
}

.site-footer nav {
  justify-content: flex-end;
  gap: 22px;
  color: #cbd5e1;
}

.site-footer > span {
  grid-column: 1 / -1;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #64748b;
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-content,
  .client-section {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .steps,
  .testimonial-grid,
  .pricing-grid,
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-card {
    max-width: 680px;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
  }

  .brand img {
    width: 130px;
  }

  .login-link {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  .hero-content {
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .feature-grid,
  .steps,
  .testimonial-grid,
  .pricing-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    padding: 14px;
    border-radius: 24px;
  }

  .card-header,
  .mini-panels,
  .site-footer,
  .site-footer nav {
    display: grid;
  }

  .table {
    overflow-x: auto;
  }

  .table-head,
  .table-row {
    min-width: 560px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: start;
  }
}
