:root {
  --primary: #6d28d9;
  --primary-dark: #4c1d95;
  --primary-light: #ede9fe;
  --accent: #10b981;
  --accent-soft: #d1fae5;
  --bg: #0f0a1a;
  --bg-elevated: #1a1230;
  --surface: #241a3d;
  --surface-light: #faf8ff;
  --text: #f4f0ff;
  --text-muted: #b7a9d9;
  --text-dark: #1e1b4b;
  --border: rgba(255, 255, 255, 0.1);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow-a {
  width: 520px;
  height: 520px;
  top: -120px;
  left: -80px;
  background: rgba(109, 40, 217, 0.35);
}

.bg-glow-b {
  width: 420px;
  height: 420px;
  top: 40%;
  right: -100px;
  background: rgba(16, 185, 129, 0.18);
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(15, 10, 26, 0.82);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.1rem;
}

.brand-icon {
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(109, 40, 217, 0.35);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.hero {
  padding: 72px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow-light {
  color: #a7f3d0;
}

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

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 18px;
}

.gradient-text {
  background: linear-gradient(135deg, #c4b5fd, #6ee7b7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 0 0 28px;
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 52ch;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.store-buttons-center {
  justify-content: center;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  padding: 12px 18px;
  border-radius: 14px;
  background: #fff;
  color: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.store-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  flex-shrink: 0;
}

.store-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-weight: 700;
  font-size: 1rem;
}

.store-btn small {
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.7;
}

.store-btn-dark {
  background: #111;
  color: #fff;
}

.store-btn-light {
  background: rgba(255, 255, 255, 0.96);
}

.hero-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.hero-points li::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 800;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.phone-frame {
  width: min(300px, 78vw);
  padding: 12px;
  border-radius: 36px;
  background: linear-gradient(160deg, #3d2f63, #1a1230);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.phone-shot,
.carousel-shot {
  width: 100%;
  border-radius: 28px;
  background: #111;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(36, 26, 61, 0.92);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  animation: float 5s ease-in-out infinite;
}

.card-a {
  top: 12%;
  left: 0;
}

.card-b {
  bottom: 14%;
  right: 0;
  animation-delay: 1.2s;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-green {
  background: var(--accent);
}

.dot-purple {
  background: #a78bfa;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.stats {
  padding: 8px 0 56px;
}

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

.stats-grid article {
  padding: 22px 18px;
  border-radius: var(--radius);
  background: rgba(36, 26, 61, 0.75);
  border: 1px solid var(--border);
  text-align: center;
}

.stats-grid strong {
  display: block;
  font-size: 1.35rem;
  color: #ddd6fe;
  margin-bottom: 4px;
}

.stats-grid span {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.section {
  padding: 72px 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(26, 18, 48, 0.4), rgba(15, 10, 26, 0));
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 12px;
}

.section-lead {
  margin: 0;
  color: var(--text-muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(36, 26, 61, 0.72);
  border: 1px solid var(--border);
  transition: transform 0.2s, border-color 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(167, 139, 250, 0.35);
}

.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.screenshot-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.carousel-track-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel-track {
  display: flex;
  gap: 18px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 8px 4px 16px;
}

.carousel-slide {
  flex: 0 0 min(260px, 72vw);
}

.carousel-shot {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(36, 26, 61, 0.9);
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

.carousel-btn:hover {
  background: var(--primary);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
}

.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin-inline: auto;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  background: rgba(36, 26, 61, 0.72);
  border: 1px solid var(--border);
}

.step-num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  font-weight: 800;
}

.steps h3 {
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.steps p {
  margin: 0;
  color: var(--text-muted);
}

.cta {
  padding: 80px 0;
}

.cta-inner {
  text-align: center;
  padding: 56px 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(16, 185, 129, 0.18), transparent 45%),
    linear-gradient(135deg, #4c1d95, #312e81 55%, #1a1230);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.cta-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 12px;
}

.cta-lead {
  margin: 0 auto 28px;
  max-width: 56ch;
  color: #ddd6fe;
}

.site-footer {
  padding: 40px 0 56px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  margin-bottom: 8px;
}

.footer-brand img {
  border-radius: 8px;
}

.footer-tagline {
  margin: 0 0 10px;
  color: var(--text-muted);
}

.footer-copy,
.footer-contact {
  margin: 6px 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-links {
  margin: 8px 0 0;
  font-size: 0.88rem;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-links span {
  margin: 0 8px;
  color: var(--text-muted);
  opacity: 0.5;
}

/* Legal / privacy pages */
.legal-page {
  padding: 48px 0 72px;
}

.legal-wrap {
  max-width: 760px;
}

.legal-wrap h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.legal-meta {
  margin: 0 0 24px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.legal-intro {
  margin: 0 0 32px;
  font-size: 1.05rem;
  color: #ddd6fe;
  line-height: 1.7;
}

.legal-intro a {
  color: #a7f3d0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-section {
  margin-bottom: 32px;
  padding: 24px 26px;
  border-radius: var(--radius-lg);
  background: rgba(36, 26, 61, 0.55);
  border: 1px solid var(--border);
}

.legal-section h2 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: #ede9fe;
}

.legal-section h3 {
  font-size: 1rem;
  margin: 20px 0 8px;
  color: #c4b5fd;
}

.legal-section p,
.legal-section li {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.legal-section p {
  margin: 0 0 12px;
}

.legal-section ul {
  margin: 0 0 12px;
  padding-left: 1.25rem;
}

.legal-section li {
  margin-bottom: 8px;
}

.legal-section a {
  color: #a7f3d0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-section strong {
  color: #ede9fe;
}

.legal-warning {
  border-color: rgba(239, 68, 68, 0.35);
  background: rgba(127, 29, 29, 0.18);
}

.legal-warning h2 {
  color: #fecaca;
}

.legal-steps {
  margin: 0 0 16px;
  padding-left: 1.35rem;
  color: var(--text-muted);
}

.legal-steps li {
  margin-bottom: 12px;
  line-height: 1.65;
}

.legal-steps strong {
  color: #ede9fe;
}

.legal-contact {
  padding: 16px 18px;
  border-radius: var(--radius);
  background: rgba(15, 10, 26, 0.45);
  border: 1px solid var(--border);
  line-height: 1.8;
}

.legal-back {
  margin-top: 8px;
}

.legal-back a {
  color: var(--text-muted);
  font-weight: 600;
}

.legal-back a:hover {
  color: var(--accent);
}

.nav a[aria-current="page"] {
  color: var(--text);
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lead,
  .hero-points {
    margin-inline: auto;
    justify-content: center;
  }

  .store-buttons {
    justify-content: center;
  }

  .hero-visual {
    min-height: auto;
    margin-top: 12px;
  }

  .floating-card {
    display: none;
  }

  .stats-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: rgba(15, 10, 26, 0.98);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-cta {
    text-align: center;
    margin-top: 10px;
  }

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

  .carousel-btn {
    display: none;
  }
}
