:root {
  --m-bg: #0a0b10;
  --m-surface: #131522;
  --m-surface-strong: #1a1d2e;
  --m-border: rgba(255, 255, 255, 0.1);
  --m-text: #f7f8fc;
  --m-muted: #a8afbd;
  --m-primary: #7879f8;
  --m-primary-strong: #6265ee;
  --m-accent: #22c994;
  --m-max: 1120px;
  --m-font: "Plus Jakarta Sans", "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--m-bg);
  color: var(--m-text);
  font-family: var(--m-font);
  line-height: 1.6;
}

a { color: inherit; }

.m-page {
  position: relative;
  overflow: hidden;
}

.m-page::before,
.m-page::after {
  position: fixed;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  content: "";
  filter: blur(120px);
  opacity: 0.2;
  pointer-events: none;
}

.m-page::before { top: -180px; right: -160px; background: var(--m-primary); }
.m-page::after { bottom: -210px; left: -150px; background: var(--m-accent); }

.m-wrap { width: min(var(--m-max), calc(100% - 48px)); margin-inline: auto; }

.m-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--m-border);
  background: rgba(10, 11, 16, 0.88);
  backdrop-filter: blur(16px);
}

.m-header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.m-brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.m-brand img { display: block; width: 154px; height: auto; }

.m-nav { display: flex; align-items: center; flex-wrap: wrap; justify-content: flex-end; gap: 0.3rem 1.1rem; }

.m-nav a,
.m-footer a {
  color: var(--m-muted);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.m-nav a:hover,
.m-footer a:hover { color: #fff; }

.m-nav .m-nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.85rem;
  border: 1px solid rgba(165, 180, 252, 0.5);
  border-radius: 8px;
  color: #fff;
  background: rgba(99, 102, 241, 0.15);
}

.m-hero { padding: clamp(4.25rem, 9vw, 7.5rem) 0 3.5rem; }

.m-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(290px, 0.8fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.m-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #c7d2fe;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.m-kicker::before {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--m-accent);
  box-shadow: 0 0 14px rgba(34, 201, 148, 0.8);
  content: "";
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 790px;
  margin-bottom: 1.25rem;
  color: #fff;
  font-size: clamp(2.3rem, 5vw, 4.1rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 strong { color: #9fa5ff; font-weight: inherit; }

.m-lead {
  max-width: 700px;
  margin-bottom: 1.6rem;
  color: #c7ccd7;
  font-size: clamp(1.02rem, 2vw, 1.16rem);
}

.m-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.m-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 9px;
  color: #fff;
  background: var(--m-primary-strong);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.m-button:hover { background: #7777ff; }

.m-button-secondary {
  border-color: rgba(165, 180, 252, 0.46);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.m-button-secondary:hover { background: rgba(99, 102, 241, 0.15); }

.m-trust { display: flex; flex-wrap: wrap; gap: 0.65rem 1.2rem; margin-top: 1.25rem; color: var(--m-muted); font-size: 0.78rem; font-weight: 700; }
.m-trust span::before { margin-right: 0.38rem; color: var(--m-accent); content: "✓"; }

.m-demo-card {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--m-border);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(29, 31, 50, 0.98), rgba(16, 17, 28, 0.98));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.m-demo-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.35rem; }
.m-demo-label { margin: 0; color: #dce2ff; font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; }
.m-demo-pill { padding: 0.3rem 0.55rem; border-radius: 99px; background: rgba(34, 201, 148, 0.12); color: #82ebc6; font-size: 0.7rem; font-weight: 800; }
.m-demo-value { margin: 0.2rem 0 0; color: #fff; font-size: 2.3rem; font-weight: 800; line-height: 1; }
.m-demo-copy { margin: 0.4rem 0 1.35rem; color: var(--m-muted); font-size: 0.84rem; }
.m-progress { height: 11px; overflow: hidden; border-radius: 99px; background: rgba(255, 255, 255, 0.1); }
.m-progress span { display: block; width: 70%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #6769f3, #a5b4fc); }
.m-stamps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.5rem; margin-top: 1.15rem; }
.m-stamps span { aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(165, 180, 252, 0.3); border-radius: 9px; color: #e0e7ff; background: rgba(99, 102, 241, 0.13); font-weight: 900; }
.m-stamps span:last-child { color: #86efcf; border-color: rgba(34, 201, 148, 0.45); background: rgba(34, 201, 148, 0.12); }

.m-section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.m-section-muted { border-top: 1px solid rgba(255, 255, 255, 0.06); border-bottom: 1px solid rgba(255, 255, 255, 0.06); background: rgba(255, 255, 255, 0.018); }
.m-section-heading { max-width: 760px; margin-bottom: 2.1rem; }
.m-section-heading h2 { margin-bottom: 0.75rem; color: #fff; font-size: clamp(1.8rem, 3vw, 2.65rem); line-height: 1.16; letter-spacing: -0.03em; }
.m-section-heading p { margin-bottom: 0; color: var(--m-muted); }

.m-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.m-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }

.m-card {
  padding: 1.35rem;
  border: 1px solid var(--m-border);
  border-radius: 14px;
  background: rgba(20, 22, 34, 0.72);
}

.m-card-icon { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 1rem; border-radius: 10px; background: rgba(99, 102, 241, 0.16); color: #b4beff; font-size: 1.15rem; font-weight: 900; }
.m-card h3 { margin-bottom: 0.55rem; color: #fff; font-size: 1.05rem; line-height: 1.3; }
.m-card p { margin-bottom: 0; color: var(--m-muted); font-size: 0.9rem; }

.m-steps { display: grid; gap: 1rem; counter-reset: step; }
.m-step { position: relative; display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 1rem; align-items: start; padding: 1.2rem; border: 1px solid var(--m-border); border-radius: 14px; background: rgba(20, 22, 34, 0.65); }
.m-step::before { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: rgba(99, 102, 241, 0.18); color: #c7d2fe; font-size: 0.85rem; font-weight: 900; counter-increment: step; content: counter(step); }
.m-step h3 { margin: 0 0 0.3rem; color: #fff; font-size: 1rem; }
.m-step p { margin: 0; color: var(--m-muted); font-size: 0.9rem; }

.m-checklist { display: grid; gap: 0.75rem; padding: 0; margin: 0; list-style: none; }
.m-checklist li { position: relative; padding-left: 1.75rem; color: #d4d9e4; }
.m-checklist li::before { position: absolute; top: 0.12rem; left: 0; width: 1.1rem; height: 1.1rem; display: grid; place-items: center; border-radius: 50%; color: #062d20; background: var(--m-accent); font-size: 0.7rem; font-weight: 900; content: "✓"; }

.m-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr); gap: clamp(1.5rem, 5vw, 4rem); align-items: start; }
.m-note { padding: 1.4rem; border-left: 3px solid var(--m-primary); border-radius: 0 12px 12px 0; background: rgba(99, 102, 241, 0.09); color: #d8ddff; }
.m-note strong { color: #fff; }

.m-faq { display: grid; gap: 0.7rem; }
.m-faq details { padding: 0 1.1rem; border: 1px solid var(--m-border); border-radius: 11px; background: rgba(20, 22, 34, 0.65); }
.m-faq summary { min-height: 58px; display: flex; align-items: center; cursor: pointer; color: #fff; font-size: 0.96rem; font-weight: 800; }
.m-faq p { margin: -0.35rem 0 1rem; color: var(--m-muted); font-size: 0.9rem; }

.m-link-list { display: grid; gap: 0.65rem; }
.m-link-list a { min-height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.7rem 0.95rem; border: 1px solid var(--m-border); border-radius: 10px; color: #dce3ff; background: rgba(99, 102, 241, 0.06); font-size: 0.88rem; font-weight: 800; text-decoration: none; }
.m-link-list a:hover { border-color: rgba(165, 180, 252, 0.65); background: rgba(99, 102, 241, 0.14); }
.m-link-list a span { color: #a5b4fc; font-size: 1.15rem; }

.m-cta { padding: clamp(2rem, 5vw, 3.5rem); border: 1px solid rgba(165, 180, 252, 0.28); border-radius: 18px; background: linear-gradient(125deg, rgba(99, 102, 241, 0.22), rgba(20, 22, 34, 0.88)); text-align: center; }
.m-cta h2 { max-width: 720px; margin: 0 auto 0.75rem; color: #fff; font-size: clamp(1.75rem, 3vw, 2.4rem); line-height: 1.2; }
.m-cta p { max-width: 660px; margin: 0 auto 1.35rem; color: #cbd3e4; }
.m-cta .m-actions { justify-content: center; }

.m-footer { padding: 2.5rem 0 calc(2.5rem + env(safe-area-inset-bottom)); margin-top: 4rem; border-top: 1px solid var(--m-border); }
.m-footer-grid { display: grid; grid-template-columns: 1.2fr 2fr; gap: 2rem; }
.m-footer p { max-width: 360px; margin: 0.75rem 0 0; color: var(--m-muted); font-size: 0.82rem; }
.m-footer-links { display: flex; flex-wrap: wrap; align-content: start; gap: 0.75rem 1.25rem; }
.m-footer-meta { margin-top: 1.35rem; color: #778093; font-size: 0.72rem; }

@media (max-width: 800px) {
  .m-hero-grid,
  .m-split,
  .m-footer-grid { grid-template-columns: 1fr; }
  .m-grid-3 { grid-template-columns: 1fr; }
  .m-header-inner { min-height: 64px; }
  .m-nav { gap: 0.2rem 0.8rem; }
}

@media (max-width: 560px) {
  .m-wrap { width: min(var(--m-max), calc(100% - 32px)); }
  .m-header { position: static; }
  .m-header-inner { align-items: flex-start; flex-direction: column; padding: 1rem 0; }
  .m-brand img { width: 142px; }
  .m-nav { justify-content: flex-start; }
  .m-nav a { min-height: 36px; display: inline-flex; align-items: center; }
  .m-hero { padding-top: 3.25rem; }
  .m-grid-2 { grid-template-columns: 1fr; }
  .m-actions { display: grid; grid-template-columns: 1fr; }
  .m-button { width: 100%; }
  .m-trust { display: grid; gap: 0.5rem; }
  .m-demo-card { padding: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
