:root {
  --bg: #f8f8fc;
  --text: #121018;
  --muted: #5a5568;
  --surface: #ffffff;
  --line: #ece8f8;
  --purple-1: #6d28d9;
  --purple-2: #9333ea;
  --purple-3: #a855f7;
  --radius-lg: 20px;
  --radius-md: 16px;
  --shadow-soft: 0 10px 30px rgba(109, 40, 217, 0.12);
  --shadow-card: 0 14px 30px rgba(19, 15, 35, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 80%);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

.alt {
  background: #f4f1fb;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero {
  padding-top: 3rem;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(110deg, var(--purple-1), var(--purple-2), var(--purple-3));
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  margin-top: 1rem;
  font-size: clamp(2rem, 5vw, 3.7rem);
}

h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
}

.subtitle {
  margin: 1.2rem 0 1.8rem;
  color: var(--muted);
  max-width: 58ch;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  padding: 0.8rem 1.15rem;
  border-radius: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(110deg, var(--purple-1), var(--purple-2), var(--purple-3));
  box-shadow: var(--shadow-soft);
}

.btn-secondary {
  color: var(--text);
  border-color: #d7cff3;
  background: rgba(255, 255, 255, 0.85);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px) scale(1.02);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 12px 30px rgba(147, 51, 234, 0.35);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: #b7a3ed;
  box-shadow: 0 8px 20px rgba(109, 40, 217, 0.15);
}

.trust-text,
.caption,
.price-note,
.footer p,
.footer a {
  color: var(--muted);
}

.trust-text {
  margin-top: 0.9rem;
  font-size: 0.96rem;
}

.glass-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(247, 242, 255, 0.88));
  border: 1px solid rgba(218, 203, 252, 0.75);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(8px);
}

.phone-shell {
  margin-inline: auto;
  width: min(300px, 75vw);
  padding: 0.8rem;
  border-radius: 34px;
}

.phone-shell.large {
  width: min(370px, 85vw);
}

.phone-image {
  width: 100%;
  border-radius: 28px;
  aspect-ratio: 9 / 19;
  object-fit: cover;
  background: linear-gradient(180deg, #f0e8ff, #ececec);
}

.two-col {
  display: grid;
  gap: 1.5rem;
}

.list {
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.7rem;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--purple-1), var(--purple-3));
}

.solution-card,
.feature-card,
.pricing-card {
  padding: 1.4rem;
}

.feature-grid {
  display: grid;
  gap: 1rem;
}

.feature-card,
.step-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover,
.step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(109, 40, 217, 0.12);
}

.steps {
  display: grid;
  gap: 1rem;
}

.step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.2rem;
}

.step-card span {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--purple-1);
}

.demo,
.pricing-wrap,
.cta-center {
  text-align: center;
}

.pricing-card {
  max-width: 480px;
  margin: 0 auto;
}

.final-cta {
  background: linear-gradient(145deg, #1f152f, #160f24);
  color: #fff;
}

.final-cta p {
  max-width: 65ch;
  margin: 0 auto 1.2rem;
  color: #d3c8f5;
}

.footer {
  background: #0f0c17;
  padding: 2rem 0;
}

.footer-inner {
  display: grid;
  gap: 0.7rem;
  justify-items: center;
}

.logo {
  font-weight: 700;
  color: #fff;
}

.footer nav {
  display: flex;
  gap: 1rem;
}

.footer a:hover {
  color: #fff;
}

.fade-in {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeInUp 0.8s ease forwards;
}

.section.fade-in:nth-of-type(2) { animation-delay: 0.05s; }
.section.fade-in:nth-of-type(3) { animation-delay: 0.1s; }
.section.fade-in:nth-of-type(4) { animation-delay: 0.15s; }
.section.fade-in:nth-of-type(5) { animation-delay: 0.2s; }
.section.fade-in:nth-of-type(6) { animation-delay: 0.25s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 720px) {
  .hero-grid,
  .two-col {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

.mock-screen {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  background: linear-gradient(180deg, #f8f2ff, #ece2ff 60%, #e4d5ff);
}

.mock-pill,
.mock-row,
.mock-grid span {
  display: block;
  background: linear-gradient(110deg, #6d28d9, #9333ea, #a855f7);
  opacity: 0.8;
  border-radius: 999px;
}

.mock-pill {
  width: 42%;
  height: 0.8rem;
}

.mock-row {
  width: 72%;
  height: 0.9rem;
}

.mock-grid {
  margin-top: 0.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  flex: 1;
}

.mock-grid span {
  border-radius: 18px;
  min-height: 7rem;
  opacity: 0.55;
}



.phone-shell.large {
  max-width: 320px;
  margin: 0 auto;
}

.phone-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}