:root {
  --bg: #FAF7FF;
  --bg-soft: #F4EEFF;
  --bg-deep: #1A1525;
  --ink: #1A1525;
  --ink-80: rgba(26, 21, 37, 0.82);
  --ink-60: rgba(26, 21, 37, 0.62);
  --ink-40: rgba(26, 21, 37, 0.4);
  --ink-10: rgba(26, 21, 37, 0.1);
  --indigo: #5B3BE0;
  --indigo-12: rgba(91, 59, 224, 0.12);
  --lavender: #B572E6;
  --white: #ffffff;
  --max: 1200px;
  --radius: 22px;
  --radius-lg: 32px;
  --shadow-1: 0 1px 2px rgba(26, 21, 37, 0.04), 0 8px 24px -12px rgba(91, 59, 224, 0.18);
  --shadow-2: 0 30px 80px -20px rgba(91, 59, 224, 0.25), 0 0 0 1px rgba(91, 59, 224, 0.08);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: var(--indigo); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 4px; }
img, svg { display: block; max-width: 100%; }

/* ───── Navigation ───── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 32px;
  background: rgba(250, 247, 255, 0.86);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--ink-10);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.6px;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  box-shadow: var(--shadow-1);
}

.nav-links {
  margin-left: auto;
  display: flex;
  gap: 28px;
}
.nav-links a {
  color: var(--ink-80);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.nav-links a:hover { color: var(--indigo); }

.nav-cta {
  margin-left: 8px;
  background: var(--ink);
  color: white;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}
.nav-cta:hover { background: var(--indigo); text-decoration: none; }

/* ───── Buttons ───── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.1px;
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn.primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 6px 20px -6px rgba(26,21,37,0.4);
}
.btn.primary:hover { background: var(--indigo); }
.btn.ghost {
  background: transparent;
  border: 1.5px solid var(--ink-10);
  color: var(--ink);
}
.btn.ghost:hover { border-color: var(--indigo); color: var(--indigo); }
.btn.big { padding: 18px 28px; font-size: 17px; }

/* ───── Hero ───── */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  max-width: var(--max);
  margin: 56px auto 80px;
  padding: 24px 32px 0;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--ink-10);
  color: var(--indigo);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -2.5px;
  font-weight: 800;
  margin: 18px 0 18px;
}

.lede {
  font-size: 18px;
  color: var(--ink-80);
  max-width: 540px;
  margin: 0 0 26px;
}

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-60);
}
.hero-points li::before {
  content: "✓";
  color: var(--indigo);
  font-weight: 800;
  margin-right: 10px;
}

/* iPhone mockup */
.hero-visual { display: flex; justify-content: center; }
.phone {
  width: 320px;
  height: 660px;
  border-radius: 56px;
  background: linear-gradient(160deg, #1A1525, #2D1F4D);
  padding: 14px;
  box-shadow: var(--shadow-2);
  position: relative;
}
.phone::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 110px;
  height: 32px;
  background: #000;
  border-radius: 999px;
  transform: translateX(-50%);
  z-index: 2;
}
.phone-screen {
  height: 100%;
  border-radius: 44px;
  background: var(--bg-soft);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.phone-stage {
  flex: 1;
  position: relative;
  background: linear-gradient(170deg, #6E55E2 0%, #B572E6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-blob {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 60%);
  top: -90px;
  left: -80px;
}
.soshy {
  position: relative;
  width: 140px;
  height: 140px;
  background: white;
  border-radius: 28px;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.3);
}
.soshy-dot {
  position: absolute; top: 18px; right: 26px;
  width: 18px; height: 18px; border-radius: 999px;
  background: linear-gradient(135deg, #5B3BE0, #B572E6);
}
.soshy-eye {
  position: absolute; top: 56px;
  width: 14px; height: 18px;
  background: var(--ink);
  border-radius: 7px;
}
.soshy-eye.left { left: 38px; }
.soshy-eye.right { left: 86px; }
.soshy-mouth {
  position: absolute;
  bottom: 28px; left: 50%;
  width: 50px; height: 12px;
  border-bottom: 4px solid var(--ink);
  border-radius: 0 0 50px 50px;
  transform: translateX(-50%);
}
.phone-card {
  background: white;
  margin: -28px 16px 16px;
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 12px 30px -10px rgba(26,21,37,0.18);
  position: relative;
  z-index: 1;
}
.phone-card-row { display: flex; justify-content: space-between; gap: 8px; margin-bottom: 10px; }
.phone-pill {
  background: var(--bg-soft);
  color: var(--ink-60);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
.phone-pill.brand { background: var(--indigo-12); color: var(--indigo); }
.phone-card-title { font-size: 15px; font-weight: 700; color: var(--ink); letter-spacing: -0.3px; margin-bottom: 8px; }
.phone-card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.phone-card-tags span {
  background: var(--bg-soft); color: var(--indigo);
  padding: 3px 8px; border-radius: 6px;
  font-size: 10px; font-weight: 700;
}
.phone-card-cta {
  background: var(--ink);
  color: white;
  text-align: center;
  padding: 10px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 13px;
}

/* ───── Generic section helpers ───── */
.strip {
  max-width: 880px;
  margin: 80px auto;
  padding: 0 32px;
  text-align: center;
}
.strip-eyebrow,
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--indigo);
  font-weight: 800;
  margin-bottom: 12px;
}
.strip-h, .section-h {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -1.4px;
  font-weight: 800;
  margin: 0 0 18px;
  line-height: 1.1;
}
.strip-h em { font-style: normal; color: var(--indigo); }
.strip-body { font-size: 17px; color: var(--ink-80); }

.section-sub {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: var(--ink-60);
  text-align: center;
}

/* ───── How it works ───── */
.how {
  max-width: var(--max);
  margin: 80px auto;
  padding: 0 32px;
  text-align: center;
}
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0;
  margin: 32px 0 0;
}
.steps li {
  background: white;
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: left;
  box-shadow: var(--shadow-1);
}
.step-num {
  display: inline-block;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.6px;
  color: var(--indigo);
  margin-bottom: 14px;
}
.steps h3 { font-size: 22px; margin: 0 0 8px; letter-spacing: -0.6px; }
.steps p { color: var(--ink-60); margin: 0; font-size: 15px; }

/* ───── Platforms ───── */
.platforms {
  background: var(--bg-soft);
  padding: 80px 32px;
  margin-top: 80px;
}
.platforms .section-eyebrow,
.platforms .section-h,
.platforms .section-sub { text-align: center; }
.platforms .section-h, .platforms .section-eyebrow, .platforms .section-sub {
  display: block;
}
.grid-platforms {
  max-width: var(--max);
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.platform {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-1);
  border: 1px solid var(--ink-10);
}
.platform-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 900; font-size: 13px; letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.platform-icon.ig { background: linear-gradient(135deg, #DD2A7B, #F58529); }
.platform-icon.fb { background: #1877F2; }
.platform-icon.tt { background: #000; }
.platform-icon.yt { background: #FF0000; }
.platform h3 { margin: 0 0 8px; font-size: 20px; letter-spacing: -0.4px; }
.platform p { color: var(--ink-80); margin: 0 0 14px; font-size: 15px; }
.platform code {
  display: inline-block;
  background: var(--bg-soft);
  color: var(--indigo);
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  word-break: break-all;
}

/* ───── Features ───── */
.features {
  max-width: var(--max);
  margin: 80px auto;
  padding: 0 32px;
  text-align: center;
}
.grid-features {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature {
  background: white;
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-lg);
  padding: 26px;
  text-align: left;
  box-shadow: var(--shadow-1);
}
.feature-tag {
  display: inline-block;
  background: var(--indigo-12);
  color: var(--indigo);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.feature h3 { font-size: 20px; margin: 0 0 6px; letter-spacing: -0.4px; }
.feature p { color: var(--ink-60); margin: 0; font-size: 15px; }

/* ───── Pricing ───── */
.pricing {
  background: var(--bg-deep);
  color: white;
  padding: 80px 32px;
}
.pricing .section-eyebrow { color: var(--lavender); display: block; text-align: center; }
.pricing .section-h { color: white; text-align: center; }
.pricing .section-sub { color: rgba(255,255,255,0.7); }
.grid-pricing {
  max-width: var(--max);
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.plan {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.plan.featured {
  background: linear-gradient(160deg, rgba(91,59,224,0.32), rgba(181,114,230,0.18));
  border-color: rgba(181,114,230,0.5);
}
.plan-badge {
  position: absolute; top: -12px; left: 24px;
  background: var(--lavender);
  color: white;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 800; font-size: 11px;
  letter-spacing: 0.4px;
}
.plan h3 { margin: 0 0 6px; font-size: 22px; letter-spacing: -0.4px; }
.plan-price { color: rgba(255,255,255,0.6); margin-bottom: 18px; font-size: 14px; }
.plan-amount { color: white; font-size: 32px; font-weight: 800; letter-spacing: -1px; margin-right: 6px; }
.plan ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.plan li { font-size: 14px; color: rgba(255,255,255,0.86); }
.plan li::before { content: "✓"; color: var(--lavender); margin-right: 8px; font-weight: 800; }
.pricing-foot {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  margin-top: 32px;
}

/* ───── Trust ───── */
.trust { max-width: var(--max); margin: 80px auto; padding: 0 32px; text-align: center; }
.trust .section-eyebrow, .trust .section-h { display: block; }
.trust-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  text-align: left;
}
.trust-grid > div {
  background: white;
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-1);
}
.trust-grid h4 { margin: 0 0 8px; font-size: 16px; letter-spacing: -0.3px; }
.trust-grid p { color: var(--ink-60); margin: 0; font-size: 14px; line-height: 1.6; }
.trust-links {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-links a {
  background: var(--bg-soft);
  color: var(--indigo);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}
.trust-links a:hover { background: var(--indigo); color: white; text-decoration: none; }

/* ───── Download ───── */
.download {
  background: linear-gradient(160deg, var(--indigo) 0%, var(--lavender) 100%);
  color: white;
  text-align: center;
  padding: 80px 32px;
}
.download h2 { font-size: clamp(28px, 4vw, 44px); margin: 0 0 8px; letter-spacing: -1.4px; }
.download p { color: rgba(255,255,255,0.85); margin: 0 0 28px; font-size: 16px; }
.download .btn.primary { background: white; color: var(--ink); }
.download .btn.primary:hover { background: var(--bg-soft); }

/* ───── Footer ───── */
.footer {
  background: #0F0B1F;
  color: rgba(255,255,255,0.7);
  padding: 56px 32px 28px;
}
.footer-cols {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer .brand { color: white; }
.footer-by { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 12px; }
.footer h5 {
  color: white;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.footer a {
  display: block;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
}
.footer a:hover { color: var(--lavender); text-decoration: none; }
.footer-meta {
  max-width: var(--max);
  margin: 28px auto 0;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

/* ───── Responsive ───── */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta { margin-left: auto; }
  .hero { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .phone { width: 280px; height: 580px; }
  .steps,
  .grid-features,
  .grid-pricing,
  .grid-platforms,
  .trust-grid,
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero h1 { letter-spacing: -1.5px; }
  .steps,
  .grid-features,
  .grid-pricing,
  .grid-platforms,
  .trust-grid,
  .footer-cols { grid-template-columns: 1fr; }
  .nav { padding: 12px 20px; }
  .strip, .how, .features, .platforms, .pricing, .trust, .download { padding-left: 20px; padding-right: 20px; }
}
