:root {
  color-scheme: light;
  --purple-900: #321968;
  --purple-800: #4c2b93;
  --purple-700: #5f38d6;
  --purple-600: #6d4aff;
  --purple-200: #e7deff;
  --purple-100: #f3efff;
  --ink: #1f1734;
  --body: #4e4564;
  --muted: #746a89;
  --line: #ded7ee;
  --soft: #f7f5ff;
  --green: #18a058;
  --shadow: 0 20px 60px rgba(76, 43, 147, .12);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fff 0%, #fbfaff 35%, #fff 100%);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}
a { color: inherit; }
button { font: inherit; cursor: pointer; }
.wrap { width: min(100%, 1180px); margin: 0 auto; padding: 0 24px; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img { height: 30px; display: block; }
.nav-links { display: flex; gap: 18px; align-items: center; color: var(--purple-800); font-weight: 700; }
.nav-links a { text-decoration: none; }
.btn {
  border: 0;
  border-radius: 999px;
  min-height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
}
.btn-primary { background: var(--purple-600); color: white; box-shadow: 0 14px 28px rgba(109,74,255,.25); }
.btn-soft { background: var(--purple-100); color: var(--purple-800); }
.btn-outline { background: white; color: var(--purple-700); border: 2px solid var(--purple-600); }
.hero { padding: 86px 0 58px; background: radial-gradient(900px 360px at 20% 0%, #f0eaff, transparent 62%); }
.hero-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(300px, 520px); gap: 46px; align-items: center; }
.eyebrow { color: var(--purple-700); font-weight: 800; margin-bottom: 14px; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; color: var(--purple-900); letter-spacing: 0; }
h1 { margin: 0 0 18px; font-weight: 500; font-size: 58px; line-height: 1; }
h2 { margin: 0 0 14px; font-weight: 500; font-size: 42px; line-height: 1.1; }
h3 { margin: 0 0 10px; font-size: 24px; line-height: 1.2; }
p { color: var(--body); line-height: 1.62; }
.lead { font-size: 20px; margin: 0; max-width: 680px; }
.hero-actions { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
.image-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
}
.image-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
section { padding: 72px 0; }
.section-head { max-width: 760px; margin: 0 auto 34px; text-align: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; align-items: center; }
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 14px 36px rgba(76,43,147,.08);
}
.card img.icon { width: 42px; height: 42px; object-fit: contain; margin-bottom: 12px; }
.badge { display: inline-flex; background: var(--purple-200); color: var(--purple-900); border-radius: 999px; padding: 6px 10px; font-size: 13px; font-weight: 800; }
.check-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; color: var(--body); }
.check-list li::before { content: "✓"; color: var(--green); font-weight: 900; margin-right: 8px; }
.platform-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 14px; }
.platform {
  min-height: 100px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  display: grid;
  place-items: center;
  color: var(--purple-900);
  font-weight: 800;
  text-decoration: none;
}
.soft-section { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.table { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: white; }
.row { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); border-bottom: 1px solid var(--line); }
.row:last-child { border-bottom: 0; }
.row div { padding: 15px; text-align: center; color: var(--body); }
.row div:first-child { text-align: left; color: var(--ink); font-weight: 800; }
.footer { padding: 42px 0; background: #f7f5ff; border-top: 1px solid var(--line); color: var(--muted); }
.footer .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: var(--purple-900);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: .18s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, -5px); }
@media (max-width: 900px) {
  .hero-grid, .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  h1 { font-size: 42px; }
  .nav-links { display: none; }
}
@media (max-width: 520px) {
  .wrap { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
}
