:root {
  --bg: #f7f2fb;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-solid: #ffffff;
  --text: #1f1a2a;
  --muted: #5c526c;

  --primary: #6a1b9a;
  --primary2: #9c4dcc;
  --primary3: #c49af0;

  --border: rgba(27, 10, 46, 0.12);
  --shadow: 0 14px 34px rgba(20, 10, 30, 0.12);

  --r-xl: 26px;
  --r-lg: 22px;
  --r-md: 16px;
  --r-sm: 12px;

  --max: 1120px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(
      1000px 500px at 50% -10%,
      rgba(156, 77, 204, 0.22),
      transparent 60%
    ),
    radial-gradient(
      800px 420px at 15% 10%,
      rgba(106, 27, 154, 0.15),
      transparent 55%
    ),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  z-index: 999;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(247, 242, 251, 0.78);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}
.logo {
  width: 160px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text strong {
  font-size: 14px;
}
.brand-text small {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
nav a {
  font-weight: 700;
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 12px;
  color: #2c2140;
  opacity: 0.92;
  white-space: nowrap;
}
nav a:hover {
  background: rgba(106, 27, 154, 0.08);
  opacity: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 260px;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 10px 20px rgba(20, 10, 30, 0.08);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    filter 0.15s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(20, 10, 30, 0.12);
}
.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  border: none;
}
.btn.primary:hover {
  filter: brightness(1.05);
}

.menu-btn {
  display: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 800;
  cursor: pointer;
}
.mobile-nav {
  display: none;
  padding-bottom: 12px;
}
.mobile-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.78);
  margin: 8px 0;
  font-weight: 800;
  font-size: 13px;
}

/* Sections */
section {
  padding: 56px 0;
}
.section-head {
  margin-bottom: 18px;
}
.section-head h2 {
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: #2c2140;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  max-width: 86ch;
}

/* Hero */
.hero {
  padding: 64px 0 28px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: stretch;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  color: #3b2f54;
  font-size: 12px;
  font-weight: 700;
  width: fit-content;
  margin-bottom: 14px;
}
.badge i {
  color: var(--primary);
}
.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.hero p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  max-width: 62ch;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  color: #3b2f54;
  font-size: 12px;
  font-weight: 700;
}
.trust-chip i {
  color: var(--primary);
}

.hero-visual {
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  background:
    radial-gradient(
      600px 260px at 50% 0%,
      rgba(156, 77, 204, 0.2),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.92),
      rgba(255, 255, 255, 0.75)
    );
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 360px;
  position: relative;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-visual .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(32, 8, 61, 0.05),
    rgba(32, 8, 61, 0) 40%,
    rgba(32, 8, 61, 0.08)
  );
}
.hero-visual .caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  font-size: 12px;
  color: #3b2f54;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.caption strong {
  display: block;
  margin-bottom: 4px;
  color: #2c2140;
}

/* Grid / cards */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 22px;
  box-shadow: 0 12px 26px rgba(20, 10, 30, 0.08);
}
.span-12 {
  grid-column: span 12;
}
.span-7 {
  grid-column: span 7;
}
.span-6 {
  grid-column: span 6;
}
.span-5 {
  grid-column: span 5;
}
.span-4 {
  grid-column: span 4;
}

.card h3 {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 18px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}
.list {
  margin: 0;
  padding-left: 18px;
  color: #3b2f54;
  font-size: 13px;
}
.list li {
  margin: 7px 0;
}

.media {
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 13px;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    filter 0.15s ease;
  white-space: nowrap;
}
.store-btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  box-shadow: 0 12px 20px rgba(106, 27, 154, 0.18);
}
.store-btn.ghost {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  color: #2c2140;
  box-shadow: 0 10px 18px rgba(20, 10, 30, 0.06);
}
.store-btn:hover {
  transform: translateY(-1px);
}
.store-btn.primary:hover {
  filter: brightness(1.05);
}

/* Contact */
.contact {
  text-align: center;
  padding: 28px;
}
.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  font-size: 13px;
  color: #2c2140;
}

/* Footer */
footer {
  padding: 22px 0 34px;
  text-align: center;
  color: rgba(46, 35, 66, 0.65);
  font-size: 12px;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .nav-actions {
    display: none;
  }
}
@media (max-width: 760px) {
  nav {
    display: none;
  }
  .menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .mobile-nav {
    display: block;
  }
  .span-7,
  .span-6,
  .span-5,
  .span-4 {
    grid-column: span 12;
  }
  .hero {
    padding-top: 42px;
  }
  .hero-visual {
    min-height: 320px;
  }
}

/* --- Extras: how-it-works, stats, testimonial, CTA --- */
.kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(106, 27, 154, 0.85);
  margin-bottom: 8px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
}

.step .num {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  font-weight: 900;
  flex: 0 0 auto;
}

.step strong {
  display: block;
  margin-bottom: 2px;
  color: #2c2140;
}
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.stat {
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.75);
  padding: 16px;
  box-shadow: 0 12px 20px rgba(20, 10, 30, 0.06);
}
.stat .value {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #2c2140;
}
.stat .label {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.quote {
  position: relative;
  overflow: hidden;
}
.quote:before {
  content: "“";
  position: absolute;
  left: 18px;
  top: -10px;
  font-size: 72px;
  color: rgba(106, 27, 154, 0.18);
  font-weight: 900;
  line-height: 1;
}
.quote blockquote {
  margin: 0;
  padding-left: 26px;
  color: #3b2f54;
  font-size: 14px;
}
.quote .who {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 26px;
}
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(106, 27, 154, 0.9),
    rgba(156, 77, 204, 0.9)
  );
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
}
.who strong {
  display: block;
  color: #2c2140;
  font-size: 13px;
}
.who small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.cta-banner {
  border-radius: 28px;
  border: 1px solid var(--border);
  background:
    radial-gradient(
      700px 260px at 20% 0%,
      rgba(196, 154, 240, 0.35),
      transparent 60%
    ),
    radial-gradient(
      700px 260px at 80% 100%,
      rgba(156, 77, 204, 0.28),
      transparent 60%
    ),
    linear-gradient(135deg, rgba(106, 27, 154, 0.92), rgba(156, 77, 204, 0.92));
  color: #fff;
  padding: 22px;
  box-shadow: var(--shadow);
}
.cta-banner h3 {
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.cta-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  max-width: 95ch;
}
.cta-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn.on-dark {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  box-shadow: none;
}
.btn.on-dark:hover {
  box-shadow: none;
  filter: brightness(1.06);
}

@media (max-width: 980px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .split {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr;
  }
}

.download-badges {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
.download-badges img {
  height: 45px;
}

#menuBtn {
  position: relative;
  z-index: 9999;
}
#mobileNav[hidden] {
  display: none;
}
