/* Public marketing / signup — Spendvora ink + violet + aurora */
.mkt {
  --mkt-max: 1100px;
  --mkt-gutter: 20px;
  margin: 0;
  min-height: 100vh;
  background: #F6F7FB;
  color: #1e293b;
  font-family: "Segoe UI", ui-sans-serif, system-ui, -apple-system, sans-serif;
}
.mkt a { color: #6C5CE7; }
.mkt a:hover { color: #5A4BD6; }

.mkt-wrap {
  width: min(var(--mkt-max), calc(100% - (var(--mkt-gutter) * 2)));
  margin-left: auto;
  margin-right: auto;
}

.mkt-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 247, 251, 0.92);
  border-bottom: 1px solid #e2e8f0;
}
.mkt-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}
.mkt-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0B1220 !important;
  font-weight: 800;
  font-size: 1.35rem;
  text-decoration: none;
  letter-spacing: -0.035em;
}
.mkt-nav__brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.mkt-nav__brand .wordmark__vora { color: #6C5CE7; }
.mkt-nav__links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.mkt-nav__links a {
  color: #475569;
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
}
.mkt-nav__links a.is-active,
.mkt-nav__links a:hover { color: #0B1220; }
.mkt-nav__signin {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 8px;
  background: #0B1220;
  color: #fff !important;
}
.mkt-nav__signin:hover { background: #151E36; color: #fff !important; }

.mkt-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: min(88vh, 780px);
  padding: 56px 0;
  background: linear-gradient(180deg, #0B1220 0%, #121a30 55%, #151E36 100%);
  color: #fff;
}
.mkt-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  width: min(var(--mkt-max), calc(100% - (var(--mkt-gutter) * 2)));
  margin-left: auto;
  margin-right: auto;
}
.mkt-hero__copy { position: relative; z-index: 1; min-width: 0; }
.mkt-hero__brand {
  margin: 0 0 14px;
  font-size: clamp(3.2rem, 8vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  color: #fff;
  line-height: 0.92;
}
.mkt-hero__brand .wordmark__vora { color: #A78BFA; }
.mkt-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 600;
  color: #A78BFA;
  letter-spacing: -0.02em;
}
.mkt-hero__lead {
  margin: 0 0 28px;
  font-size: 1.1rem;
  line-height: 1.55;
  color: #cbd5e1;
  max-width: 32em;
}
.mkt-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
/* Marketing CTAs: white on violet */
.mkt .btn,
.mkt .btn--lg,
.mkt .btn--secondary,
.mkt .btn--ghost,
.mkt-hero .btn--ghost {
  background: #6C5CE7 !important;
  color: #fff !important;
  border: 1px solid #6C5CE7 !important;
}
.mkt .btn:hover,
.mkt .btn--lg:hover,
.mkt .btn--secondary:hover,
.mkt .btn--ghost:hover,
.mkt-hero .btn--ghost:hover {
  background: #5A4BD6 !important;
  border-color: #5A4BD6 !important;
  color: #fff !important;
}
.mkt-hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.mkt-hero__frame {
  width: min(100%, 440px);
  padding: 14px;
  border-radius: 28px;
  background: #6C5CE7;
  box-shadow: 0 28px 60px rgba(0,0,0,.35);
  animation: mkt-rise .7s ease-out both;
}
.mkt-stage {
  width: 100%;
  background: #fff;
  color: #1e293b;
  border-radius: 16px;
  padding: 16px;
}
.mkt-stage__top {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
  font-size: .85rem;
  color: #0B1220;
}
.mkt-stage__top strong { margin-left: 8px; }
.mkt-stage__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #cbd5e1;
}
.mkt-stage__dot:first-child { background: #6C5CE7; }
.mkt-stage__row {
  position: relative;
  padding: 10px 10px 14px;
  margin-bottom: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: .82rem;
}
.mkt-stage__row span { display: block; font-weight: 600; color: #0B1220; }
.mkt-stage__row em {
  display: block;
  font-style: normal;
  color: #64748b;
  margin: 2px 0 8px;
}
.mkt-stage__row i {
  display: block;
  height: 6px;
  border-radius: 99px;
  background: #6C5CE7;
  max-width: 100%;
}
.mkt-stage__row.is-done i { background: #17C08A; }
.mkt-stage__row.is-run {
  border-color: #c4b5fd;
  background: #EEF0FF;
}
.mkt-stage__budget {
  margin-top: 12px;
  padding: 12px;
  background: #0B1220;
  color: #fff;
  border-radius: 8px;
  font-size: .82rem;
}
.mkt-stage__budget span { color: #94a3b8; display: block; margin-bottom: 4px; }
.mkt-stage__budget strong { display: block; margin-bottom: 8px; }
.mkt-stage__budget b {
  display: block;
  height: 8px;
  background: #1e293b;
  border-radius: 99px;
  overflow: hidden;
}
.mkt-stage__budget b i {
  display: block;
  height: 100%;
  background: #17C08A;
}
@keyframes mkt-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

.mkt-section { padding: 72px 0; background: #F6F7FB; }
.mkt-section--tint { background: #fff; border-block: 1px solid #e2e8f0; }
.mkt-section h2 {
  margin: 0 0 10px;
  color: #0B1220;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: -0.02em;
}
.mkt-section__lead {
  margin: 0 0 36px;
  color: #64748b;
  max-width: 40em;
  font-size: 1.05rem;
}
.mkt-trust {
  text-align: center;
  padding: 28px 0;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
  color: #475569;
  font-size: 1.05rem;
  font-weight: 500;
}
.mkt-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mkt-features--wide {
  grid-template-columns: repeat(2, 1fr);
}
.mkt-features p {
  margin: 0;
  color: #64748b;
  line-height: 1.55;
}
.mkt-feature-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 22px 20px;
  box-shadow: 0 1px 2px rgba(11,18,32,.04);
}
.mkt-feature-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.mkt-feature-card__head h3 {
  margin: 0;
  color: #0B1220;
  font-size: 1.1rem;
  line-height: 1.25;
}
.mkt-feature-card__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #EEF0FF;
  color: #6C5CE7;
}
.mkt-feature-card__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}
.mkt-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mkt-step {
  position: relative;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px 20px;
}
.mkt-step__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.mkt-step__head h3 {
  margin: 0;
  color: #0B1220;
  font-size: 1.1rem;
  line-height: 1.25;
}
.mkt-step__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 99px;
  background: #6C5CE7;
  color: #fff;
}
.mkt-step__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.mkt-step p {
  margin: 0;
  color: #64748b;
  line-height: 1.55;
}
.mkt-modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.mkt-mode {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
}
.mkt-mode h3 {
  margin: 0 0 8px;
  color: #0B1220;
}
.mkt-mode p {
  margin: 0;
  color: #64748b;
  line-height: 1.55;
}
.mkt-mode--accent {
  border-color: #6C5CE7;
  box-shadow: 0 8px 28px rgba(108,92,231,.08);
}

.mkt-pagehead {
  padding: 48px 0 40px;
  background: #0B1220;
  color: #fff;
}
.mkt-pagehead h1 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}
.mkt-pagehead p {
  margin: 0;
  color: #94a3b8;
  max-width: 40em;
  line-height: 1.55;
}

.mkt-billing-toggle {
  display: inline-flex;
  margin-bottom: 28px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.mkt-billing-toggle a {
  padding: 8px 16px;
  color: #64748b;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
}
.mkt-billing-toggle a.is-active {
  background: #0B1220;
  color: #fff;
}

.mkt-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.mkt-plan {
  position: relative;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(11,18,32,.04);
}
.mkt-plan--featured {
  border-color: #6C5CE7;
  box-shadow: 0 8px 28px rgba(108,92,231,.12);
}
.mkt-plan__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff;
  background: #6C5CE7;
  padding: 4px 8px;
  border-radius: 6px;
}
.mkt-plan h3 {
  margin: 0 0 16px;
  color: #0B1220;
  font-size: 1.25rem;
}
.mkt-plan__price { margin-bottom: 18px; }
.mkt-plan__amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0B1220;
  letter-spacing: -0.03em;
}
.mkt-plan__period {
  display: block;
  color: #64748b;
  font-size: .9rem;
  margin-top: 2px;
}
.mkt-plan__list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}
.mkt-plan__list li {
  padding: 8px 0;
  border-top: 1px solid #f1f5f9;
  color: #334155;
  font-size: .92rem;
}
.mkt-plan .btn { width: 100%; justify-content: center; }
.mkt-pricing__note {
  margin: 28px 0 0;
  color: #64748b;
  font-size: .9rem;
}

.mkt-cta {
  text-align: center;
  padding: 48px 24px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
}
.mkt-cta h2 { margin-bottom: 8px; }
.mkt-cta p { color: #64748b; margin: 0 0 20px; }

.mkt-section--form { padding: 28px 0 64px; }
.mkt-signup { max-width: 640px; }

.mkt-form { display: flex; flex-direction: column; gap: 14px; }
.mkt-form fieldset {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin: 0;
  padding: 16px 18px 18px;
  background: #fff;
  min-width: 0;
  overflow: hidden;
}
.mkt-form legend {
  float: left;
  width: 100%;
  padding: 0 0 12px;
  margin: 0 0 4px;
  border-bottom: 1px solid #f1f5f9;
  color: #0B1220;
  font-size: .95rem;
  font-weight: 700;
}
.mkt-form legend + * { clear: both; }
.mkt-form .field { margin: 0; }
.mkt-form label {
  color: #475569;
  margin-bottom: 6px;
}
.mkt-form input,
.mkt-form select,
.mkt-form textarea {
  background: #fff;
  border-color: #e2e8f0;
  color: #0B1220;
  padding: 10px 12px;
}
.mkt-form textarea { min-height: 88px; }
.mkt-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}
.mkt-form__span { grid-column: 1 / -1; }
.mkt-form .help {
  margin: 10px 0 0;
  color: #64748b;
  line-height: 1.4;
}
.mkt-form .help a { color: #6C5CE7; }
.mkt-form__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding-top: 4px;
}
.mkt-form__actions .help { margin: 0; }
.mkt-thanks { max-width: 560px; }
.mkt-thanks h1 { color: #0B1220; margin-top: 0; }
.mkt-thanks p { color: #64748b; }

.mkt-footer {
  border-top: 1px solid #e2e8f0;
  margin-top: 24px;
  background: #fff;
}
.mkt-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #64748b;
  font-size: .9rem;
  padding: 28px 0 16px;
}
.mkt-footer strong { color: #0B1220; display: block; margin-bottom: 4px; font-size: 1.05rem; letter-spacing: -.02em; }
.mkt-footer .wordmark__vora { color: #6C5CE7; }
.mkt-footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.mkt-footer__meta a { color: #475569; text-decoration: none; }
.mkt-footer__meta a:hover { color: #0B1220; }
.mkt-footer__legal {
  width: 100%;
  border-top: 1px solid #f1f5f9;
  padding: 16px 0 28px;
  color: #94a3b8;
  font-size: .78rem;
  line-height: 1.55;
}
.mkt-footer__legal p { margin: 0 0 4px; }

@media (max-width: 960px) {
  .mkt-hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .mkt-features,
  .mkt-features--wide,
  .mkt-steps,
  .mkt-modes,
  .mkt-pricing { grid-template-columns: 1fr; }
  .mkt-form__grid { grid-template-columns: 1fr; }
}
