:root {
  --bg: #0a0b10;
  --bg-elevated: #12141c;
  --bg-card: #171a24;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f4f5f7;
  --muted: #9aa3b2;
  --purple: #7c4dff;
  --purple-soft: rgba(124, 77, 255, 0.18);
  --green: #3ddc97;
  --gradient: linear-gradient(135deg, #7c4dff 0%, #5b8cff 50%, #3ddc97 100%);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: #b9a6ff; text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(10, 11, 16, 0.82);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--gradient);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 10px 30px rgba(124, 77, 255, 0.35);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 12px 40px rgba(124, 77, 255, 0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.hero {
  padding: 4.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% auto auto 50%;
  width: 700px;
  height: 700px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(124, 77, 255, 0.22), transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--purple-soft);
  color: #d9ccff;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}
.hero p.lead {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 38rem;
  margin: 0 0 1.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 1.5rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; color: var(--muted); font-size: 0.92rem; }
.badge {
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
}

.phone-mock {
  position: relative;
  justify-self: center;
  width: min(100%, 320px);
  aspect-ratio: 10/20;
  border-radius: 34px;
  padding: 14px;
  background: linear-gradient(160deg, #222633, #0d0f14);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
}
.phone-screen {
  height: 100%;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(124,77,255,0.25), transparent 35%),
    linear-gradient(180deg, #141824, #0b0d12);
  padding: 1.25rem;
  display: grid;
  gap: 0.75rem;
}
.mock-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.9rem;
}
.mock-stat { font-size: 1.4rem; font-weight: 700; }
.mock-label { color: var(--muted); font-size: 0.82rem; }

.hero-visual {
  position: relative;
  justify-self: center;
  width: min(100%, 420px);
  min-height: 480px;
}
.showcase-glow {
  position: absolute;
  inset: 10% 0 auto;
  height: 70%;
  background: radial-gradient(circle at 50% 40%, rgba(124, 77, 255, 0.35), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}
.showcase-panel {
  position: relative;
  z-index: 1;
  padding: 1.25rem;
  border-radius: 28px;
  background: linear-gradient(165deg, rgba(28, 32, 48, 0.95), rgba(12, 14, 22, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.showcase-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.showcase-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b9a6ff;
  font-weight: 700;
}
.showcase-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 0.15rem;
}
.showcase-streak {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(61, 220, 151, 0.12);
  border: 1px solid rgba(61, 220, 151, 0.35);
  color: #9ef0c8;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}
.showcase-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-bottom: 1rem;
}
.metric-chip {
  padding: 0.65rem 0.55rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}
.metric-chip span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.metric-chip strong {
  font-size: 0.95rem;
}
.metric-purple { border-color: rgba(124, 77, 255, 0.35); }
.metric-green { border-color: rgba(61, 220, 151, 0.35); }
.metric-blue { border-color: rgba(91, 140, 255, 0.35); }

.showcase-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.ring-card, .chart-card {
  padding: 0.85rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}
.ring-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.ring {
  --p: 75;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: conic-gradient(#7c4dff calc(var(--p) * 1%), rgba(255,255,255,0.08) 0);
  position: relative;
  flex-shrink: 0;
}
.ring::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: #12141c;
}
.ring-label { font-size: 0.72rem; color: var(--muted); }
.ring-value { font-size: 0.88rem; font-weight: 700; }

.chart-label {
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.55rem;
}
.bars {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  height: 72px;
}
.bars span {
  flex: 1;
  height: var(--h);
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, #7c4dff, #5b8cff);
  opacity: 0.9;
}

.compare-strip {
  padding: 0.85rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}
.compare-head {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.55rem;
}
.compare-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.compare-photo {
  aspect-ratio: 3/4;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.compare-photo span {
  position: absolute;
  left: 0.45rem;
  bottom: 0.45rem;
  font-size: 0.68rem;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
}
.compare-photo.before {
  background: linear-gradient(160deg, #3a3f52 0%, #1a1d28 100%);
}
.compare-photo.after {
  background: linear-gradient(160deg, #5b8cff 0%, #7c4dff 45%, #1a1d28 100%);
}

.float-card {
  position: absolute;
  z-index: 2;
  padding: 0.7rem 0.9rem;
  border-radius: 14px;
  background: rgba(18, 20, 28, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  animation: floatY 5s ease-in-out infinite;
}
.float-card .float-label {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
}
.float-card strong { font-size: 0.95rem; }
.float-left { left: -8%; top: 18%; animation-delay: 0s; }
.float-right { right: -6%; bottom: 22%; animation-delay: 1.2s; }

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

.pricing-grid-duo {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin-inline: auto;
}

.section { padding: 4rem 0; }
.section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.section-title h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
}
.section-title p { margin: 0; color: var(--muted); }

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--purple-soft);
  margin-bottom: 0.9rem;
  font-size: 1.2rem;
}
.feature-card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; }
.feature-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.price-card.featured {
  border-color: rgba(124, 77, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(124, 77, 255, 0.25), var(--shadow);
}
.price-card h3 { margin: 0 0 0.35rem; }
.price {
  font-size: 2rem;
  font-weight: 800;
  margin: 0.5rem 0 1rem;
}
.price span { font-size: 0.95rem; color: var(--muted); font-weight: 500; }
.price-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}
.price-card li { margin-bottom: 0.35rem; }

.cta {
  margin-top: 2rem;
  padding: 2rem;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(135deg, rgba(124,77,255,0.18), rgba(61,220,151,0.08));
  border: 1px solid var(--border);
  text-align: center;
}

.legal-page { padding: 3rem 0 4rem; }
.legal-page h1 { margin-top: 0; font-size: 2.2rem; }
.legal-page h2 { margin-top: 2rem; font-size: 1.25rem; }
.legal-page p, .legal-page li { color: #d0d5df; }
.legal-page ul { padding-left: 1.2rem; }
.legal-meta { color: var(--muted); font-size: 0.92rem; }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0 2.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}
.footer-grid h4 { color: var(--text); margin: 0 0 0.75rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 0.45rem; }
.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero-grid, .features, .pricing-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual { order: -1; min-height: auto; margin-bottom: 0.5rem; }
  .float-left { left: 0; }
  .float-right { right: 0; }
  .showcase-metrics { grid-template-columns: 1fr; }
  .showcase-row { grid-template-columns: 1fr; }
  .pricing-grid-duo { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0.85rem;
  }
  .nav-links.open { display: flex; }
}
