:root {
  --text: #181515;
  --muted: #655e59;
  --line: rgba(24, 21, 21, 0.1);
  --violet: #7B2CBF;
  --magenta: #E11D73;
  --coral: #F04A4A;
  --orange: #F5A12A;
  --dark: #171513;
  --paper: rgba(255, 250, 247, 0.92);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 18%, rgba(123,44,191,0.14), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(225,29,115,0.12), transparent 26%),
    linear-gradient(180deg, #fffaf8 0%, #f7efeb 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
}
.orb-a {
  top: -6rem;
  left: -7rem;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(123,44,191,0.3), transparent 70%);
}
.orb-b {
  right: -8rem;
  bottom: -5rem;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(240,74,74,0.24), transparent 72%);
}

.page-shell {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 18px 0 56px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 4px 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.05em;
  font-size: 1.18rem;
}
.brand img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 12px;
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.card {
  background: var(--paper);
  border: 1px solid rgba(255,255,255,0.78);
  border-radius: 26px;
  box-shadow: 0 18px 50px rgba(28, 20, 20, 0.08);
  backdrop-filter: blur(12px);
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 30px;
  padding: 30px;
  align-items: center;
}

.simple-hero {
  background:
    linear-gradient(135deg, rgba(123,44,191,0.08), rgba(225,29,115,0.08), rgba(245,161,42,0.06)),
    var(--paper);
}

.hero-stack {
  position: relative;
}
.hero-main-image {
  width: 100%;
  max-width: 470px;
  margin-left: auto;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(28, 20, 20, 0.12);
}
.hero-mini-card {
  position: absolute;
  right: 0;
  bottom: -18px;
  max-width: 260px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 16px 34px rgba(28,20,20,0.12);
  border: 1px solid rgba(255,255,255,0.8);
}
.mini-title {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 6px;
}

.eyebrow {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 12px;
}

h1, h2, h3 {
  margin: 0 0 12px;
  line-height: 1.02;
  letter-spacing: -0.05em;
}
h1 { font-size: clamp(2.8rem, 5vw, 5rem); }
h2 { font-size: clamp(1.55rem, 2vw, 2.2rem); }
h3 { font-size: 1.12rem; }

.lead {
  font-size: 1.06rem;
  color: #3f3935;
  max-width: 54ch;
}

.actions,
.hero-bullets {
  margin-top: 24px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  margin-bottom: 18px;
}
.hero-bullets {
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--violet), var(--magenta), var(--coral));
  color: white;
  font-weight: 700;
  border: 0;
  box-shadow: 0 14px 30px rgba(123, 44, 191, 0.16);
}
.button.small { padding: 10px 16px; font-size: 0.92rem; }
.button.large { padding: 16px 24px; }
.button.ghost {
  background: rgba(255,255,255,0.45);
  color: var(--dark);
  border: 1px solid rgba(24,21,19,0.08);
  box-shadow: none;
}
.button.full { width: 100%; }
.offer-pill {
  display: inline-flex;
  align-items: center;
  margin: 4px 0 14px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--violet), var(--magenta), var(--coral));
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(123, 44, 191, 0.18);
}
.section-note {
  max-width: 58ch;
  margin: 10px 0 0;
  color: var(--muted);
}
.pricing-card .button.full {
  margin-top: 28px;
}

.hero-bullets,
.list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: #403931;
}
.hero-bullets li::before,
.list li::before {
  content: "•";
  color: var(--magenta);
  font-weight: 800;
  display: inline-block;
  width: 1em;
}

.grid-3,
.grid-2,
.two-col,
.faq-grid,
.pricing-grid,
.showcase-grid {
  display: grid;
  gap: 20px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); margin-top: 20px; }
.grid-2,
.two-col { grid-template-columns: repeat(2, 1fr); margin-top: 20px; }

.feature,
.section-block,
.faq,
.cta,
.pricing-card,
.mockup-card {
  padding: 28px;
}

.concise-grid .feature:nth-child(1) { background: linear-gradient(180deg, rgba(123,44,191,0.09), rgba(255,255,255,0.86)); }
.concise-grid .feature:nth-child(2) { background: linear-gradient(180deg, rgba(225,29,115,0.08), rgba(255,255,255,0.86)); }
.concise-grid .feature:nth-child(3) { background: linear-gradient(180deg, rgba(245,161,42,0.08), rgba(255,255,255,0.86)); }

.list.compact { gap: 8px; }
.list.ordered { counter-reset: ordered; }
.list.ordered li {
  position: relative;
  padding-left: 2.2rem;
}
.list.ordered li::before {
  counter-increment: ordered;
  content: counter(ordered);
  position: absolute;
  left: 0;
  top: 0.08rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(123,44,191,0.16), rgba(240,74,74,0.16));
  color: var(--dark);
  font-size: 0.85rem;
  font-weight: 700;
}

.section-heading {
  margin-top: 28px;
  margin-bottom: 18px;
}

.showcase-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: stretch;
}
.mockup-card img,
.experience-video {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(28,20,20,0.12);
}
.experience-video {
  display: block;
  background: #000;
}
.mockup-copy {
  margin-top: 16px;
}
.mockup-card.text-only {
  grid-column: 1 / -1;
}
.video-card {
  align-self: start;
}

.pricing-grid {
  grid-template-columns: repeat(2, 1fr);
}
.pricing-card {
  position: relative;
}
.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.14);
  color: #fff;
}
.plan-name {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.plan-price {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.06em;
  margin-bottom: 12px;
}
.plan-price span {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0;
  font-weight: 600;
  margin-top: 8px;
}
.plan-note {
  color: var(--muted);
  margin-top: 0;
}
.featured-plan {
  color: #fff;
  background: linear-gradient(160deg, #2e1649, #5d1f64 55%, #e24a5b 130%);
}
.featured-plan .plan-note,
.featured-plan .plan-price span,
.featured-plan .plan-name,
.featured-plan h2,
.featured-plan p,
.featured-plan .list,
.featured-plan .eyebrow {
  color: rgba(255,255,255,0.95);
}
.light-list li::before { color: #fff; }

.dark-card {
  color: #fff;
  background: linear-gradient(160deg, #2e1649, #5d1f64 55%, #e24a5b 130%);
}
.dark-card .eyebrow,
.dark-card p,
.dark-card h2,
.dark-card .list,
.light-list {
  color: rgba(255,255,255,0.95);
}

.extra-info { margin-top: 20px; }
.faq { margin-top: 20px; }
.faq-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 22px;
}
.faq-grid article {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.cta {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta .button.large {
  flex-shrink: 0;
}
.cta-glow {
  background: linear-gradient(135deg, rgba(123,44,191,0.12), rgba(225,29,115,0.12), rgba(245,161,42,0.08));
}

@media (max-width: 980px) {
  .hero,
  .grid-3,
  .grid-2,
  .two-col,
  .faq-grid,
  .cta,
  .pricing-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-main-image {
    margin-left: 0;
    max-width: 100%;
  }
  .hero-mini-card {
    position: static;
    max-width: none;
    margin-top: 14px;
  }
}

@media (max-width: 760px) {
  .page-shell { width: min(100vw - 18px, 1120px); }
  .topbar {
    flex-wrap: wrap;
    padding-bottom: 18px;
  }
  .nav {
    order: 3;
    width: 100%;
    overflow: auto;
    padding-bottom: 4px;
  }
  .brand img {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  .hero, .feature, .section-block, .faq, .cta, .pricing-card, .mockup-card { padding: 22px; }
  h1 { font-size: 2.5rem; }
  .plan-price { font-size: 2rem; }
  .actions {
    margin-top: 22px;
    margin-bottom: 14px;
    gap: 12px;
  }
  .offer-pill {
    margin-bottom: 12px;
    font-size: 0.82rem;
  }
  .hero-bullets {
    margin-top: 20px;
  }
  .hero .actions .button,
  .cta .button.large {
    width: 100%;
  }
  .pricing-card .button.full {
    margin-top: 24px;
  }
}

.simple-page-shell {
  width: min(900px, calc(100vw - 32px));
}

.legal-page h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.legal-page h2 {
  margin-top: 28px;
}

.site-footer {
  display: flex;
  gap: 18px;
  justify-content: center;
  padding: 22px 8px 6px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer a:hover {
  color: var(--violet);
}
