:root {
  --purple: #794ff8;
  --purple-deep: #4f23c8;
  --purple-ink: #1c0a47;
  --purple-soft: #efe7ff;
  --lime: #d8ff3a;
  --lime-deep: #b6e21f;
  --pink: #ff7ec1;
  --orange: #ff9446;
  --cream: #fbf7ee;
  --cream-2: #f4ecdb;
  --ink: #160830;
  --muted: #6a5f86;
  --line: rgba(28, 10, 71, 0.12);
  --shadow-card: 0 24px 60px -28px rgba(79, 35, 200, 0.35), 0 8px 20px -10px rgba(28, 10, 71, 0.18);
  --radius: 22px;
  --max: 1240px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  max-width: 100%;
}

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: "Onest", system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.09 0 0 0 0 0.04 0 0 0 0 0.28 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

::selection { background: var(--purple); color: #fff; }

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.mkt-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

/* ----- nav ----- */
.mkt-nav {
  position: sticky;
  top: 12px;
  z-index: 50;
  margin: 12px auto 0;
  max-width: calc(var(--max) + 60px);
  padding: 0 16px;
}

.mkt-nav__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px 10px 18px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 30px -16px rgba(28, 10, 71, 0.18);
}

.mkt-nav__logo img { height: 32px; display: block; }
.mkt-nav__logo:hover { opacity: 0.9; }

.mkt-nav__actions {
  margin-left: auto;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-ink);
  background: transparent;
  border: 1px solid var(--line);
}

.lang-pill__btn {
  border: none;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: var(--purple-ink);
  transition: background 0.2s, color 0.2s;
}

.lang-pill__btn:hover { background: var(--purple-soft); }
.lang-pill__btn[aria-pressed="true"] {
  background: var(--purple);
  color: #fff;
}

.mkt-nav__inner:has(.lang-pill) .mkt-nav__actions { margin-left: auto; }

.mkt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.25s ease, background 0.2s;
  white-space: nowrap;
}

.mkt-btn--primary {
  background: var(--ink);
  color: var(--lime);
  box-shadow: 0 8px 22px -8px rgba(22, 8, 48, 0.55);
}

.mkt-btn--primary:hover {
  transform: translateY(-2px);
  background: var(--purple);
  color: #fff;
}

.mkt-btn--ghost {
  background: transparent;
  color: var(--purple-ink);
  border: 1px solid var(--line);
}

.mkt-btn--ghost:hover {
  background: var(--purple-ink);
  color: #fff;
  border-color: var(--purple-ink);
}

.mkt-btn--purple {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 10px 28px -8px rgba(121, 79, 248, 0.55);
}

.mkt-btn--purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px -10px rgba(121, 79, 248, 0.7);
}

.mkt-btn--big { padding: 16px 26px; font-size: 16px; }

/* ----- hero ----- */
.mkt-hero {
  position: relative;
  padding: 48px 0 80px;
  overflow: hidden;
  text-align: center;
}

.mkt-hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(28, 10, 71, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 10, 71, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
}

.mkt-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
}

.mkt-hero__blob--a {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #c4adff 0%, transparent 70%);
  top: -100px;
  left: -80px;
}

.mkt-hero__blob--b {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, #c0ffb3 0%, transparent 70%);
  bottom: -60px;
  right: -60px;
}

.mkt-hero__inner { position: relative; z-index: 2; padding-top: 24px; }

.mkt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-ink);
  box-shadow: 0 8px 18px -10px rgba(28, 10, 71, 0.2);
}

.mkt-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(216, 255, 58, 0.35);
}

.mkt-hero h1 {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--purple-ink);
  margin: 22px auto 0;
  max-width: 16ch;
}

.mkt-hero h1 .script {
  font-family: "Caveat", cursive;
  font-weight: 700;
  color: var(--purple);
  font-size: 1.12em;
  display: inline-block;
  transform: rotate(-3deg);
}

.mkt-hero__sub {
  max-width: 58ch;
  margin: 20px auto 0;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--muted);
}

.mkt-hero__cta {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.mkt-hero__meta {
  margin-top: 22px;
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.mkt-hero__meta i { color: var(--purple); margin-right: 4px; }

/* ----- sections ----- */
.mkt-section {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.mkt-section--white { background: #fff; border-block: 1px solid var(--line); }

.mkt-sec-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.mkt-sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--purple-soft);
  color: var(--purple-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mkt-sec-title {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--purple-ink);
  margin: 16px 0 0;
}

.mkt-sec-title .script {
  font-family: "Caveat", cursive;
  color: var(--purple);
  font-weight: 700;
  display: inline-block;
  transform: rotate(-3deg);
  margin-left: 4px;
}

.mkt-sec-sub {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

/* ----- partner cards ----- */
.mkt-partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.mkt-partner-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 12px;
  transition: all 0.2s;
}

.mkt-partner-card:hover {
  background: var(--purple-soft);
  border-color: var(--purple);
  transform: translateY(-3px);
}

.mkt-partner-card__logo {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
}

.mkt-partner-card__logo img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
}

.mkt-partner-card__name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--purple-ink);
  text-align: center;
}

.mkt-support-note {
  margin-top: 28px;
  padding: 18px 22px;
  border-radius: 16px;
  background: rgba(239, 231, 255, 0.5);
  border: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ----- coop cards ----- */
.mkt-coop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mkt-coop-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, border-color 0.2s;
}

.mkt-section:not(.mkt-section--white) .mkt-coop-card {
  background: rgba(255, 255, 255, 0.85);
}

.mkt-coop-card:hover {
  transform: translateY(-4px);
  border-color: var(--purple);
}

.mkt-coop-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--lime);
  color: var(--purple-ink);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.mkt-coop-card h3 {
  font-family: "Unbounded", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--purple-ink);
  margin: 0 0 10px;
  line-height: 1.25;
}

.mkt-coop-card p {
  margin: 0;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ----- benefits ----- */
.mkt-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}

.mkt-benefit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
}

.mkt-section:not(.mkt-section--white) .mkt-benefit {
  background: rgba(255, 255, 255, 0.88);
}

.mkt-benefit__num {
  font-family: "Unbounded", sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 12px;
}

.mkt-benefit h3 {
  font-family: "Unbounded", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--purple-ink);
  margin: 0 0 10px;
  line-height: 1.25;
}

.mkt-benefit p {
  margin: 0;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ----- steps ----- */
.mkt-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 720px;
  margin-inline: auto;
  display: grid;
  gap: 0;
}

.mkt-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px dashed var(--line);
}

.mkt-step:last-child { border-bottom: none; padding-bottom: 0; }

.mkt-step__badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--lime);
  color: var(--purple-ink);
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: 18px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.mkt-step__body h3 {
  font-family: "Unbounded", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--purple-ink);
  margin: 0 0 8px;
}

.mkt-step__body p {
  margin: 0;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ----- platform tools ----- */
.mkt-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mkt-tool-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}

.mkt-section:not(.mkt-section--white) .mkt-tool-card {
  background: rgba(255, 255, 255, 0.88);
}

.mkt-tool-card:hover {
  transform: translateY(-4px);
  border-color: var(--purple);
  text-decoration: none;
}

.mkt-tool-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--purple-soft);
  color: var(--purple);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.mkt-tool-card h3 {
  font-family: "Unbounded", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--purple-ink);
  margin: 0 0 10px;
  line-height: 1.25;
}

.mkt-tool-card p {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

.mkt-tool-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.mkt-tool-card:hover .mkt-tool-card__link { color: var(--purple-deep); }

/* ----- trust block ----- */
.mkt-trust {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.mkt-trust__title {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.2vw, 32px);
  color: var(--purple-ink);
  line-height: 1.15;
  margin: 14px 0 16px;
}

.mkt-trust__title .script {
  font-family: "Caveat", cursive;
  color: var(--purple);
  font-size: 1.2em;
}

.mkt-trust__body {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 12px;
}

.mkt-trust__body strong { color: var(--purple-ink); font-weight: 600; }

.mkt-trust__list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  font-size: 13.5px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.mkt-trust__list strong { color: var(--purple-ink); }

/* ----- CTA ----- */
.mkt-cta {
  padding: 90px 0;
  position: relative;
  z-index: 2;
  background: var(--purple-ink);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.mkt-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(121, 79, 248, 0.35) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(216, 255, 58, 0.12) 0%, transparent 40%);
  pointer-events: none;
}

.mkt-cta__inner { position: relative; z-index: 1; }

.mkt-cta h2 {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 52px);
  margin: 0;
  line-height: 1.05;
}

.mkt-cta h2 .script {
  font-family: "Caveat", cursive;
  color: var(--lime);
  font-size: 1.15em;
}

.mkt-cta p {
  max-width: 48ch;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
}

.mkt-cta__actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.mkt-cta .mkt-btn--ghost {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.mkt-cta .mkt-btn--ghost:hover {
  background: #fff;
  color: var(--purple-ink);
}

/* ----- footer ----- */
.mkt-footer {
  background: var(--purple-ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 36px;
  position: relative;
  z-index: 2;
}

.mkt-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 48px;
}

.mkt-footer__logo {
  display: inline-flex;
  padding: 12px 18px;
  margin-bottom: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.mkt-footer__logo img { height: 32px; display: block; }

.mkt-footer__brand p {
  font-size: 14px;
  max-width: 36ch;
  margin: 0;
  line-height: 1.5;
}

.mkt-footer__col h5 {
  font-family: "Unbounded", sans-serif;
  font-size: 12px;
  color: var(--lime);
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mkt-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.mkt-footer__col a:hover { color: var(--lime); }

.mkt-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
}

/* ----- reveal ----- */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].in {
  opacity: 1;
  transform: none;
}

[data-reveal][data-delay="100"] { transition-delay: 0.1s; }
[data-reveal][data-delay="200"] { transition-delay: 0.2s; }

@media (max-width: 960px) {
  .mkt-partners-grid { grid-template-columns: repeat(2, 1fr); }
  .mkt-coop-grid { grid-template-columns: 1fr; }
  .mkt-benefits-grid { grid-template-columns: 1fr; }
  .mkt-tools-grid { grid-template-columns: 1fr; }
  .mkt-trust { grid-template-columns: 1fr; }
  .mkt-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .mkt-wrap { padding: 0 18px; }
  .mkt-nav__inner { border-radius: 20px; flex-wrap: wrap; }
  .mkt-nav__actions { width: 100%; justify-content: stretch; }
  .mkt-nav__actions .mkt-btn { flex: 1; justify-content: center; font-size: 13px; padding: 10px 14px; }
  .lang-pill { order: 3; width: 100%; justify-content: center; }
  .mkt-footer__grid { grid-template-columns: 1fr; }
}
