
:root {
  --ink: #0f172a; --body: #4b5563; --muted: #6b7280; --faint: #9ca3af;
  --line: #e5e7eb; --card: #f9fafb;
  --pink: #ec4899; --purple: #a855f7; --deep: #7c3aed;
  --grad: linear-gradient(135deg, #ec4899 0%, #a855f7 100%);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: #ffffff; color: var(--body);
  font-family: 'DM Sans', Arial, sans-serif; font-size: 16px; line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Sora', Georgia, serif; color: var(--ink); letter-spacing: -.02em; line-height: 1.15; margin: 0 0 16px; }
h1 { font-size: clamp(32px, 4.2vw, 54px); font-weight: 800; letter-spacing: -.03em; }
h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 800; }
h3 { font-size: 18px; font-weight: 700; }
p { margin: 0 0 16px; }
a { color: var(--deep); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.center { text-align: center; }

/* NAV */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; height: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { font-family: 'Sora', Georgia, serif; font-size: 19px; font-weight: 800; color: var(--ink); text-decoration: none !important; white-space: nowrap; }
.nav-logo span { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--body); font-size: 14px; font-weight: 600; text-decoration: none !important; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { background: var(--grad); color: #fff !important; font-weight: 700; font-size: 14px;
  padding: 10px 20px; border-radius: 10px; text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(168,85,247,.35); transition: transform .15s, box-shadow .15s; white-space: nowrap; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(168,85,247,.45); }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px 0; border-radius: 2px; }
.nav-mobile { display: none; border-top: 1px solid var(--line); background: #fff; padding: 10px 24px 18px; }
.nav-mobile a { display: block; padding: 10px 0; font-weight: 600; color: var(--body); text-decoration: none !important; }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-mobile.open { display: block; }
}

/* HERO */
.hero { text-align: center; padding: 72px 24px 56px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -140px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 620px; background: radial-gradient(ellipse, rgba(236,72,153,.08) 0%, rgba(168,85,247,.06) 40%, transparent 70%);
  pointer-events: none; }
.hero > * { position: relative; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(168,85,247,.08);
  border: 1px solid rgba(168,85,247,.25); color: var(--deep); font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; margin-bottom: 22px; }
.eyebrow i { width: 6px; height: 6px; background: var(--pink); border-radius: 50%; }
.hero h1 { max-width: 840px; margin-left: auto; margin-right: auto; }
.hero-sub { font-size: 17px; color: var(--body); max-width: 640px; margin: 0 auto 30px; }
.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; }
.btn { display: inline-flex; align-items: center; gap: 9px; font-family: 'Sora', Georgia, serif;
  font-size: 15px; font-weight: 700; padding: 15px 30px; border-radius: 11px;
  text-decoration: none !important; transition: transform .15s, box-shadow .15s; }
.btn-grad { background: var(--grad); color: #ffffff !important; box-shadow: 0 8px 24px rgba(168,85,247,.35); }
.btn-grad:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(168,85,247,.45); }
.btn-ghost { background: #f3f4f6; color: var(--ink) !important; border: 1px solid var(--line); }
.btn-ghost:hover { background: #e5e7eb; }
.hero-ticks { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap;
  font-size: 13px; color: var(--muted); }
.hero-ticks span { display: inline-flex; align-items: center; gap: 7px; }
.hero-ticks svg { width: 14px; height: 14px; stroke: var(--pink); stroke-width: 2.5; fill: none; stroke-linecap: round; }

/* SECTIONS */
.section { padding: 72px 0; }
.section-alt { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; padding: 0 24px; }
.section-head p { color: var(--muted); margin: 0; }

/* CARDS */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 860px) { .grid3, .grid2 { grid-template-columns: 1fr; } }
.card { background: #ffffff; border: 1px solid var(--line); border-radius: 16px; padding: 26px;
  transition: border-color .2s, box-shadow .2s, transform .2s; }
.section-alt .card { background: #ffffff; }
.section .wrap > .grid3 .card, .section .wrap > .grid2 .card { background: var(--card); }
.card:hover { border-color: rgba(168,85,247,.4); box-shadow: 0 10px 30px rgba(168,85,247,.08); transform: translateY(-2px); }
.card-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--grad);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.card-icon svg { width: 21px; height: 21px; stroke: #fff; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--body); margin: 0; }
.soon { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--deep); background: rgba(168,85,247,.1);
  border: 1px solid rgba(168,85,247,.3); border-radius: 100px; padding: 2px 10px;
  margin-left: 8px; vertical-align: 2px; }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; counter-reset: step; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step { background: #ffffff; border: 1px solid var(--line); border-radius: 16px; padding: 28px; position: relative; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px;
  border-radius: 50%; background: var(--grad); color: #fff; font-family: 'Sora', Georgia, serif;
  font-size: 13px; font-weight: 800; margin-bottom: 14px; }

/* PRICING */
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 420px)); gap: 20px; justify-content: center; }
@media (max-width: 860px) { .plans { grid-template-columns: 1fr; } }
.plan { background: #ffffff; border: 1px solid var(--line); border-radius: 20px; padding: 34px 30px; position: relative; display: flex; flex-direction: column; }
.plan.pop { border: 2px solid transparent;
  background: linear-gradient(#ffffff, #ffffff) padding-box, var(--grad) border-box;
  box-shadow: 0 20px 50px rgba(168,85,247,.12); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 4px 14px; border-radius: 100px; white-space: nowrap; }
.plan-name { font-family: 'Sora', Georgia, serif; font-size: 18px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.plan-for { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.plan-price { font-family: 'Sora', Georgia, serif; font-size: 46px; font-weight: 800; color: var(--ink); line-height: 1; }
.plan-price sub { font-size: 15px; font-weight: 500; color: var(--muted); vertical-align: baseline; }
.plan ul { list-style: none; margin: 22px 0 26px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.plan li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--body); }
.plan li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; stroke: var(--pink); stroke-width: 2.5; fill: none; stroke-linecap: round; }
.plan .btn { width: 100%; justify-content: center; margin-top: auto; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-of-type { border-top: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  font-family: 'Sora', Georgia, serif; font-size: 16px; font-weight: 700; color: var(--ink);
  padding: 20px 40px 20px 4px; position: relative; }
.faq-q::after { content: '+'; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font-size: 22px; font-weight: 400; color: var(--faint); transition: transform .2s; }
.faq-item.open .faq-q::after { content: '\2212'; }
.faq-a { display: none; padding: 0 4px 20px; font-size: 15px; color: var(--body); }
.faq-item.open .faq-a { display: block; }

/* FORM */
.form-card { max-width: 640px; margin: 0 auto; background: linear-gradient(135deg, #db2777 0%, #9333ea 100%);
  border-radius: 24px; padding: 44px 40px; text-align: center; }
.form-card h2 { color: #ffffff; }
.form-sub { color: rgba(255,255,255,.8); font-size: 14px; margin-bottom: 26px; }
.f-row { display: flex; gap: 12px; margin-bottom: 12px; }
.f-row > div { flex: 1; text-align: left; }
@media (max-width: 640px) { .f-row { flex-direction: column; } }
.form-card label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.92); margin-bottom: 6px; }
.form-card input { width: 100%; background: rgba(255,255,255,.97); border: 2px solid rgba(255,255,255,.9);
  border-radius: 10px; padding: 12px 14px; font-size: 14px; color: #1a052e;
  font-family: 'DM Sans', Arial, sans-serif; outline: none; transition: border-color .2s; }
.form-card input:focus { border-color: #fbcfe8; background: #fff; }
.form-card input::placeholder { color: rgba(26,5,46,.35); }
.plan-pick { display: flex; gap: 12px; margin-bottom: 14px; }
@media (max-width: 640px) { .plan-pick { flex-direction: column; } }
.plan-pick label { flex: 1; display: block; background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.25);
  border-radius: 12px; padding: 13px 16px; cursor: pointer; text-align: left;
  text-transform: none; letter-spacing: 0; transition: background .15s, border-color .15s; }
.plan-pick input { display: none; }
.plan-pick label.on { background: rgba(255,255,255,.95); border-color: #ffffff; }
.plan-pick .pp-name { display: block; font-family: 'Sora', Georgia, serif; font-size: 14px; font-weight: 700; color: #ffffff; }
.plan-pick label.on .pp-name { color: #1a052e; }
.plan-pick .pp-sub { display: block; font-size: 12px; font-weight: 500; color: rgba(255,255,255,.7); }
.plan-pick label.on .pp-sub { color: #6b7280; }
.form-submit { width: 100%; background: #ffffff; color: #9333ea; border: none; cursor: pointer;
  font-family: 'Sora', Georgia, serif; font-size: 15px; font-weight: 700;
  padding: 15px 28px; border-radius: 11px; margin-top: 6px; transition: transform .15s, background .15s; }
.form-submit:hover { background: #fdf2f8; transform: translateY(-1px); }
.form-note { font-size: 12px; color: rgba(255,255,255,.6); margin: 12px 0 0; }
.form-success { display: none; background: rgba(134,239,172,.18); border: 1px solid rgba(134,239,172,.45);
  border-radius: 10px; padding: 14px 18px; margin-top: 16px; }
.form-success p { color: #dcfce7; font-size: 14px; margin: 0; }

/* ARTICLE */
.article { max-width: 760px; margin: 0 auto; padding: 56px 24px 72px; }
.article-meta { font-size: 13px; color: var(--faint); margin-bottom: 34px; }
.article h2 { font-size: 26px; margin: 40px 0 14px; }
.article h3 { font-size: 19px; margin: 28px 0 10px; }
.article ul { padding-left: 22px; margin: 0 0 18px; }
.article li { margin-bottom: 8px; }
.article strong { color: var(--ink); }
.protip { background: rgba(168,85,247,.06); border: 1px solid rgba(168,85,247,.2);
  border-left: 3px solid var(--purple); border-radius: 10px; padding: 16px 20px; margin: 22px 0; }
.protip p { margin: 0; font-size: 14.5px; }
.related { font-size: 14px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 22px; margin-top: 40px; }

/* CTA BAND */
.cta-band { background: linear-gradient(135deg, rgba(236,72,153,.07), rgba(168,85,247,.05));
  border-top: 1px solid rgba(168,85,247,.15); text-align: center; padding: 64px 24px; }
.cta-band h2 { margin-bottom: 10px; }
.cta-band p { color: var(--muted); margin-bottom: 26px; }

/* HERO SPLIT + MOCK CARD */
.hero-split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: center;
  max-width: 1100px; margin: 0 auto; text-align: left; padding: 0 24px; }
@media (max-width: 900px) { .hero-split { grid-template-columns: 1fr; text-align: center; }
  .hero-split .btn-row, .hero-split .hero-ticks { justify-content: center; }
  .hero-split .eyebrow { margin-left: auto; margin-right: auto; } }
.hero-split h1 { margin-left: 0; margin-right: 0; }
@media (max-width: 900px) { .hero-split h1 { margin-left: auto; margin-right: auto; } }
.hero-split .btn-row, .hero-split .hero-ticks { justify-content: flex-start; }
.mock-wrap { display: flex; justify-content: center; }
.shot-frame { width: 100%; max-width: 620px; border-radius: 14px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(168,85,247,.2), 0 0 0 1px var(--line);
  transform: rotate(1deg); background: #ffffff; }
.shot-bar { display: flex; align-items: center; gap: 12px; background: #1e1e2e; padding: 10px 14px; }
.shot-dots { display: flex; gap: 6px; }
.shot-dots i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.shot-dots i:nth-child(1) { background: #ff5f57; }
.shot-dots i:nth-child(2) { background: #febc2e; }
.shot-dots i:nth-child(3) { background: #28c840; }
.shot-url { flex: 1; background: rgba(255,255,255,.07); border-radius: 6px;
  color: rgba(255,255,255,.45); font-size: 11px; padding: 5px 12px;
  font-family: monospace; text-align: center; white-space: nowrap; overflow: hidden; }
.shot-frame img { display: block; width: 100%; height: auto; }
.shot-tags { display: flex; gap: 8px; padding: 10px 12px; background: #ffffff; }
.shot-tag { flex: 1; text-align: center; font-size: 11px; font-weight: 700; color: var(--muted);
  background: var(--card); border: 1px solid var(--line); border-radius: 8px; padding: 7px 4px; }

/* STAT BAR */
.stat-bar { max-width: 1100px; margin: 44px auto 0; padding: 0 24px; }
.stat-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--card); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
@media (max-width: 700px) { .stat-bar-inner { grid-template-columns: 1fr 1fr; } }
.stat { text-align: center; padding: 22px 10px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
@media (max-width: 700px) { .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); } }
.stat-num { font-family: 'Sora', Georgia, serif; font-size: 26px; font-weight: 800; color: var(--ink); display: block; }
.stat-label { font-size: 12px; color: var(--muted); }

/* WORKS WITH */
.ww { text-align: center; padding: 40px 24px 8px; }
.ww-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--faint); margin-bottom: 16px; }
.ww-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px 44px; }
.ww-item { font-size: 19px; font-weight: 800; color: #c3c8d1; letter-spacing: -.01em;
  white-space: nowrap; transition: color .2s; cursor: default; font-family: 'Sora', Georgia, serif; }
.ww-item:hover { color: var(--body); }
@media (max-width: 700px) { .ww-row { gap: 10px 26px; } .ww-item { font-size: 16px; } }

/* PATH (steps + included) */
.path { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1100px;
  margin: 0 auto; padding: 0 24px; align-items: start; }
@media (max-width: 900px) { .path { grid-template-columns: 1fr; } }
.path-col-label { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--deep); margin-bottom: 18px; display: block; }
.path-steps { display: flex; flex-direction: column; gap: 0; }
.path-step { display: flex; gap: 16px; padding: 14px 0; align-items: flex-start; }
.path-num { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--grad);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', Georgia, serif; font-size: 13px; font-weight: 800; margin-top: 2px; }
.path-step h3 { font-size: 16px; margin: 2px 0 4px; }
.path-step p { font-size: 13.5px; color: var(--body); margin: 0; }
.path-included { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 26px; }
.path-included ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.path-included li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--body); }
.path-included li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; stroke: var(--pink); stroke-width: 2.5; fill: none; stroke-linecap: round; }
.path-included strong { color: var(--ink); }

/* TRUST */
.trust { max-width: 900px; margin: 0 auto; padding: 0 24px; text-align: center; }
.trust-card { background: linear-gradient(135deg, rgba(236,72,153,.06), rgba(168,85,247,.05));
  border: 1px solid rgba(168,85,247,.2); border-radius: 22px; padding: 44px 36px; }
.trust-stats { display: flex; gap: 36px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.trust-stat { border: none !important; padding: 0; }
.trust-stat .stat-num { font-size: 30px; }

/* FOOTER */
.footer { background: #0f0a1e; color: rgba(255,255,255,.6); padding: 56px 0 0; margin-top: 0; }
.footer a { color: rgba(255,255,255,.65); text-decoration: none !important; font-size: 14px; }
.footer a:hover { color: #ffffff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand-name { font-family: 'Sora', Georgia, serif; font-size: 18px; font-weight: 800; color: #ffffff; margin-bottom: 10px; }
.footer-brand-name span { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.footer-blurb { font-size: 13px; line-height: 1.7; max-width: 240px; }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 12px; color: rgba(255,255,255,.4); }
