:root {
  --purple: #6C4CF1;
  --purple-dark: #5536D6;
  --pink: #FF4FA0;
  --pink-dark: #E63A8B;
  --mid: #9B4CF1;
  --yellow: #FFC93C;
  --teal: #00C2CB;
  --ink: #251642;
  --ink-soft: #5b4d78;
  --bg: #FFFBF6;
  --card-border: #f0e4ff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a { color: var(--purple); text-decoration: none; font-weight: 600; }
a:hover { text-decoration: underline; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* ── Nav ─────────────────────────────────────────────────────────────── */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 24px 16px;
  flex-wrap: wrap;
  gap: 16px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-brand:hover { text-decoration: none; }
.nav-logo { height: 52px; width: auto; border-radius: 10px; }

.nav-links { list-style: none; display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.nav-links a { color: var(--ink-soft); font-size: 15px; font-weight: 700; }
.nav-links a:hover { color: var(--purple); text-decoration: none; }
.nav-links a.active { color: var(--purple); }
.nav-cta {
  background: linear-gradient(90deg, var(--purple), var(--pink));
  color: #fff !important;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 800 !important;
  box-shadow: 0 6px 18px rgba(108,76,241,0.35);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(108,76,241,0.45); text-decoration: none !important; }

/* ── Status banner ───────────────────────────────────────────────────── */
.status-banner {
  background: var(--yellow);
  text-align: center;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 700;
  color: #4a3200;
}
.status-banner a { color: #4a3200; text-decoration: underline; }

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 72px 24px 64px;
  background: linear-gradient(150deg, var(--purple) 0%, var(--mid) 45%, var(--pink) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.hero::before { width: 320px; height: 320px; top: -140px; left: -80px; }
.hero::after { width: 220px; height: 220px; bottom: -100px; right: -40px; background: rgba(255,201,60,0.18); }
.hero .wrap { position: relative; z-index: 1; }
.hero h1 { font-size: 44px; font-weight: 900; letter-spacing: -.7px; margin-bottom: 18px; text-shadow: 0 2px 12px rgba(0,0,0,0.12); }
.hero .tagline { font-size: 19px; color: #f4edff; max-width: 640px; margin: 0 auto 34px; font-weight: 500; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--yellow);
  color: #4a3200;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 16px;
  display: inline-block;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.22); text-decoration: none; }
.btn-secondary {
  background: rgba(255,255,255,0.15);
  border: 2px solid #fff;
  color: #fff;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  display: inline-block;
}
.btn-secondary:hover { background: rgba(255,255,255,0.28); text-decoration: none; }

/* Hero variant for inner pages (shorter, no giant tagline needed) */
.hero-page {
  text-align: center;
  padding: 56px 24px 40px;
  background: linear-gradient(150deg, var(--purple) 0%, var(--mid) 45%, var(--pink) 100%);
  color: #fff;
}
.hero-page h1 { font-size: 34px; font-weight: 900; letter-spacing: -.5px; margin-bottom: 10px; }
.hero-page .tagline { font-size: 16.5px; color: #f4edff; max-width: 600px; margin: 0 auto; font-weight: 500; }

/* ── Generic content ─────────────────────────────────────────────────── */
main { padding-bottom: 64px; }
h2 { font-size: 28px; font-weight: 900; margin: 0 0 8px; color: var(--ink); letter-spacing: -.4px; }
h3 { font-size: 17.5px; font-weight: 800; margin: 0 0 10px; color: var(--ink); }
p { margin-bottom: 14px; color: var(--ink-soft); font-size: 15.5px; }
ul, ol { margin: 0 0 14px 22px; color: var(--ink-soft); font-size: 15.5px; }
li { margin-bottom: 8px; }
strong { color: var(--ink); }
code {
  background: #f3ecff; color: var(--purple-dark);
  padding: 2px 7px; border-radius: 5px; font-size: 13.5px; font-weight: 700;
}

.section { padding: 56px 0; }
.section:nth-of-type(even) { background: #FFF3FA; }
.section-intro { text-align: center; max-width: 620px; margin: 0 auto 40px; }
.section-intro p { font-size: 16.5px; }

/* ── Feature grid ────────────────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.feature-card {
  background: #fff;
  border: 2px solid var(--card-border);
  border-radius: 16px;
  padding: 26px 24px 22px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(108,76,241,0.14); border-color: var(--purple); }
.feature-icon {
  font-size: 26px;
  margin-bottom: 12px;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--purple-light, #EDE8FF), #FFE6F2);
}
.feature-card h3 { font-size: 16px; margin-bottom: 6px; }
.feature-card p { font-size: 14.5px; margin-bottom: 0; }

/* Rotate accent colours across cards for a livelier grid */
.feature-grid .feature-card:nth-child(6n+1) .feature-icon { background: linear-gradient(135deg, #EDE8FF, #D9CCFF); }
.feature-grid .feature-card:nth-child(6n+2) .feature-icon { background: linear-gradient(135deg, #FFE6F2, #FFC6E2); }
.feature-grid .feature-card:nth-child(6n+3) .feature-icon { background: linear-gradient(135deg, #FFF6D9, #FFE49E); }
.feature-grid .feature-card:nth-child(6n+4) .feature-icon { background: linear-gradient(135deg, #DFFAFB, #B8F2F4); }
.feature-grid .feature-card:nth-child(6n+5) .feature-icon { background: linear-gradient(135deg, #DCFCE7, #B4F5CE); }
.feature-grid .feature-card:nth-child(6n+6) .feature-icon { background: linear-gradient(135deg, #FFE4EC, #FFC1D6); }

/* ── Cards / callouts ────────────────────────────────────────────────── */
.card {
  background: #fff;
  border: 2px solid var(--card-border);
  border-radius: 16px;
  padding: 24px 26px;
  margin-bottom: 18px;
}
.callout {
  background: linear-gradient(135deg, #F3ECFF, #FFE9F4);
  border: 2px solid #E7D6FF;
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 32px;
}
.callout p { color: var(--ink-soft); font-size: 15px; margin-bottom: 0; }
.warn {
  background: #FFF6E4;
  border: 2px solid #FFDE9E;
  border-radius: 14px;
  padding: 18px 22px;
  margin: 24px 0;
}
.warn p { color: #7a5400; margin-bottom: 0; }

.option-label {
  display: inline-block;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 12px;
}

/* ── Forms ───────────────────────────────────────────────────────────── */
.form-field { margin-bottom: 18px; }
.form-field label { display: block; margin-bottom: 6px; font-weight: 700; color: var(--ink); font-size: 14px; }
.form-field input, .form-field textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 2px solid var(--card-border);
  background: #fff; color: var(--ink); font-size: 14.5px; font-family: inherit;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--purple); }

.checklist { background: #fff; border: 2px solid var(--card-border); border-radius: 16px; padding: 24px 26px; margin: 28px 0; }
.checklist ul { margin-left: 0; list-style: none; }
.checklist li { padding-left: 30px; position: relative; font-weight: 600; color: var(--ink); }
.checklist li::before { content: "\2713"; position: absolute; left: 0; color: #16A34A; font-weight: 900; font-size: 17px; }

/* ── Pricing ─────────────────────────────────────────────────────────── */
.pricing-card {
  background: linear-gradient(150deg, var(--purple) 0%, var(--mid) 45%, var(--pink) 100%);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  color: #fff;
  max-width: 440px;
  margin: 0 auto;
  box-shadow: 0 14px 34px rgba(108,76,241,0.28);
}
.pricing-card .amount { font-size: 52px; font-weight: 900; letter-spacing: -1px; line-height: 1; }
.pricing-card .amount span { font-size: 18px; font-weight: 700; opacity: .85; }
.pricing-card .period { font-size: 15px; font-weight: 700; margin: 6px 0 18px; opacity: .9; }
.pricing-card p.note { color: #f4edff; font-size: 14px; margin-bottom: 22px; }

/* ── Shape pill list ─────────────────────────────────────────────────── */
.shape-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 22px 0 0; }
.shape-pill {
  background: #fff; border: 2px solid var(--card-border); border-radius: 999px;
  padding: 9px 18px; font-weight: 700; font-size: 14px; color: var(--ink);
}

/* ── Video embeds ────────────────────────────────────────────────────── */
.video-card { background: #fff; border: 2px solid var(--card-border); border-radius: 16px; padding: 18px; margin-bottom: 24px; }
.video-card h3 { margin-bottom: 12px; }
.video-frame { position: relative; width: 100%; padding-top: 56.25%; border-radius: 10px; overflow: hidden; background: #f3ecff; }
.video-frame iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-placeholder {
  position: relative; width: 100%; padding-top: 56.25%; border-radius: 10px;
  background: linear-gradient(135deg, #F3ECFF, #FFE9F4);
  border: 2px dashed #E7D6FF;
}
.video-placeholder span {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  color: var(--ink-soft); font-weight: 700; font-size: 14.5px; text-align: center; width: 80%;
}

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.faq-item { background: #fff; border: 2px solid var(--card-border); border-radius: 14px; padding: 22px 24px; margin-bottom: 14px; }
.faq-item h3 { margin-bottom: 8px; color: var(--purple-dark); }
.faq-item p { margin-bottom: 0; }

/* ── Footer ──────────────────────────────────────────────────────────── */
footer.site-footer {
  border-top: 2px solid var(--card-border);
  padding: 32px 24px;
  text-align: center;
  font-size: 13.5px;
  color: var(--ink-soft);
}
footer.site-footer a { color: var(--purple); }

/* ── Nav toggle (mobile) ─────────────────────────────────────────────── */
.nav-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 22px; height: 3px; border-radius: 2px; background: var(--purple); }

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 16px;
    padding: 18px 24px 22px;
    background: #fff;
    border-top: 2px solid var(--card-border);
  }
  .nav-links.open { display: flex; }
  .site-nav { padding-bottom: 12px; }
  .hero h1, .hero-page h1 { font-size: 30px; }
  .hero .tagline, .hero-page .tagline { font-size: 16px; }
}
