/* SMB Catch — brand: #6D28D9 purple, #111111 ink, white field. Poppins. */
:root {
  --purple: #6D28D9;
  --purple-dark: #5a1fb8;
  --ink: #111111;
  --slate: #55555f;
  --field: #ffffff;
  --wash: #f7f6fb;
  --radius: 14px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--ink);
  background: var(--field);
  line-height: 1.6;
}
a { color: var(--purple); text-decoration: none; }

/* wordmark pill */
.wordmark { display: inline-flex; align-items: center; gap: .35em; font-weight: 700; white-space: nowrap; }
.wordmark .prefix { color: var(--purple); letter-spacing: .01em; }
.wordmark .pill {
  display: inline-flex; align-items: center; gap: .3em;
  border: .12em solid var(--ink); border-radius: .9em;
  padding: .05em .55em .1em; color: var(--ink); font-weight: 600;
}
.wordmark .pill .check { color: var(--purple); width: .78em; height: .78em; flex: none; stroke: currentColor; }
.wordmark.inverse .prefix { color: #fff; }
.wordmark.inverse .pill { border-color: #fff; color: #fff; }

header.site {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px clamp(20px, 6vw, 72px); border-bottom: 1px solid #eeecf5;
  position: sticky; top: 0; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); z-index: 10;
}
header.site nav a { margin-left: 26px; color: var(--ink); font-size: 15px; font-weight: 500; }
header.site nav a.cta { color: var(--purple); font-weight: 600; }
/* phones: the wordmark + 4 links don't fit on one 375px row — wrap the nav
   under the mark instead of forcing horizontal scroll */
@media (max-width: 560px) {
  header.site { flex-wrap: wrap; gap: 8px 0; padding-top: 14px; padding-bottom: 12px; }
  header.site nav { width: 100%; display: flex; flex-wrap: wrap; gap: 6px 16px; }
  header.site nav a { margin-left: 0; font-size: 14px; }
  .btn.small { white-space: normal; }
}

.hero { text-align: center; padding: clamp(60px, 12vh, 120px) 20px 70px; }
.hero .wordmark { font-size: clamp(40px, 8vw, 84px); }
.hero .tagline {
  margin-top: 26px; color: var(--purple); font-weight: 600;
  letter-spacing: .35em; text-transform: uppercase; font-size: clamp(12px, 2vw, 16px);
}
.hero p.sub { max-width: 640px; margin: 22px auto 0; color: var(--slate); font-size: 17px; }
.hero .actions { margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block; padding: 13px 30px; border-radius: 999px; font-weight: 600;
  font-size: 16px; border: 2px solid var(--purple); transition: all .15s ease; cursor: pointer;
}
.btn.primary { background: var(--purple); color: #fff; }
.btn.primary:hover { background: var(--purple-dark); border-color: var(--purple-dark); }
.btn.ghost { color: var(--purple); background: transparent; }
.btn.ghost:hover { background: var(--purple); color: #fff; }

section { padding: 70px clamp(20px, 6vw, 72px); }
section.wash { background: var(--wash); }
.kicker { color: var(--purple); font-weight: 600; letter-spacing: .25em; text-transform: uppercase; font-size: 13px; text-align: center; }
h2.section { text-align: center; font-size: clamp(26px, 4vw, 38px); font-weight: 700; margin-top: 10px; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(205px, 1fr)); gap: 18px; margin-top: 48px; }
.card {
  background: #fff; border: 1px solid #eeecf5; border-radius: var(--radius);
  padding: 30px 26px; text-align: center; box-shadow: 0 2px 10px rgba(17,17,17,.04);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.card .wordmark { font-size: 22px; }
.card svg { width: 46px; height: 46px; stroke: var(--purple); }
.card p { color: var(--slate); font-size: 14.5px; }
.card .status { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.card .status.live { color: #16a34a; }
.card .status.soon { color: #a3a0b5; }
.card a.more { font-weight: 600; font-size: 14.5px; }

.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; margin-top: 48px; max-width: 1040px; margin-left: auto; margin-right: auto; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step .n {
  flex: 0 0 38px; height: 38px; border-radius: 50%; background: var(--purple);
  color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.step h3 { font-size: 17px; margin-bottom: 4px; }
.step p { color: var(--slate); font-size: 15px; }

.price-box {
  max-width: 460px; margin: 48px auto 0; text-align: center; background: #fff;
  border: 2px solid var(--purple); border-radius: var(--radius); padding: 40px 34px;
}
.price-box .amount { font-size: 54px; font-weight: 700; color: var(--purple); }
.price-box .amount span { font-size: 20px; color: var(--slate); font-weight: 500; }
.price-box ul { list-style: none; margin: 22px 0; text-align: left; }
.price-box li { padding: 7px 0 7px 30px; position: relative; color: var(--ink); font-size: 15px; }
.price-box li::before { content: "✓"; position: absolute; left: 4px; color: var(--purple); font-weight: 800; }

form.lead { max-width: 520px; margin: 44px auto 0; display: grid; gap: 14px; }
form.lead input, form.lead textarea {
  font: inherit; padding: 13px 16px; border: 1.5px solid #ddd9ec; border-radius: 10px; width: 100%;
}
form.lead input:focus, form.lead textarea:focus { outline: none; border-color: var(--purple); }
form.lead .hp { position: absolute; left: -6000px; }
form.lead .msg { text-align: center; font-weight: 600; min-height: 24px; }
form.lead .msg.ok { color: #16a34a; }
form.lead .msg.err { color: #dc2626; }

footer.site {
  background: var(--ink); color: #b9b6c9; padding: 44px clamp(20px, 6vw, 72px);
  display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; align-items: center; font-size: 14px;
}
footer.site nav a { color: #dcd9ea; margin-left: 22px; }
footer.site .wordmark { font-size: 18px; }

.legal { max-width: 760px; margin: 0 auto; padding: 60px 20px; }
.legal h1 { font-size: 30px; margin-bottom: 6px; }
.legal .updated { color: var(--slate); font-size: 14px; margin-bottom: 30px; }
.legal h2 { font-size: 19px; margin: 28px 0 8px; }
.legal p, .legal li { color: #333; font-size: 15px; }
.legal ul { padding-left: 22px; margin: 8px 0; }
