:root {
  color-scheme: light;
  --brand: #7e3285;
  --brand-dark: #54215c;
  --brand-soft: #f5eafa;
  --blue: #1c7ed6;
  --blue-soft: #eaf4ff;
  --green: #2f9e75;
  --green-soft: #eaf8f1;
  --ink: #172033;
  --muted: #5f6675;
  --line: #e6e8ef;
  --surface: #ffffff;
  --surface-alt: #f7f8fb;
  --shadow: 0 18px 50px rgba(31, 23, 58, 0.1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(230, 232, 239, 0.88);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  color: var(--brand);
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand-soft);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(126, 50, 133, 0.14);
}

.brand-mark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-links a,
.footer a {
  text-decoration: none;
}

.nav-links a {
  color: #394152;
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-links a:hover,
.footer a:hover {
  color: var(--brand);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  border-radius: 10px;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  font-size: 0.88rem;
  font-weight: 900;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}

.button.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(126, 50, 133, 0.22);
}

.button.secondary {
  border-color: rgba(126, 50, 133, 0.24);
  color: var(--brand);
  background: #fff;
}

.button.ghost {
  color: var(--brand);
  background: transparent;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(126, 50, 133, 0.15), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(28, 126, 214, 0.12), transparent 25%),
    linear-gradient(135deg, #fff 0%, #fbf6ff 50%, #f2fbf7 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
  padding: 80px 0 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--brand);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--ink);
}

h1 {
  margin: 0;
  font-size: clamp(2.55rem, 5vw, 5rem);
  max-width: 820px;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.lead {
  margin: 22px 0 0;
  max-width: 680px;
  color: #444b5d;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(126, 50, 133, 0.13);
  box-shadow: var(--shadow);
  border-radius: 20px;
  padding: 24px;
}

.platform-map {
  display: grid;
  gap: 12px;
}

.map-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--brand);
  background: var(--brand-soft);
  font-weight: 900;
  font-size: 1.35rem;
}

.icon.blue {
  color: var(--blue);
  background: var(--blue-soft);
}

.icon.green {
  color: var(--green);
  background: var(--green-soft);
}

.section {
  padding: 74px 0;
}

.section.alt {
  background: var(--surface-alt);
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head p,
.card p,
.step p,
.trust p,
.page-intro p,
.legal-card p,
.contact-card p {
  color: var(--muted);
  margin: 0;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.step,
.trust,
.legal-card,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(23, 32, 51, 0.04);
}

.card strong,
.step strong {
  color: var(--brand);
}

.steps {
  counter-reset: step;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
  margin-bottom: 16px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.trust-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #394152;
}

.trust-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  margin-top: 8px;
  border-radius: 99px;
  background: var(--green);
}

.cta-band {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: #fff;
  border-radius: 24px;
  padding: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow);
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.cta-band p {
  opacity: 0.86;
  max-width: 680px;
}

.cta-band .button.secondary {
  border-color: rgba(255, 255, 255, 0.36);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.footer {
  padding: 48px 0 28px;
  background: #121725;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 26px;
}

.footer h3 {
  color: #fff;
  font-size: 0.96rem;
}

.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  margin: 8px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 32px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.page-hero {
  background: linear-gradient(135deg, #fbf6ff, #f4fbf8);
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}

.page-intro {
  max-width: 780px;
}

.content {
  padding: 56px 0 74px;
}

.content section + section {
  margin-top: 28px;
}

.legal-card ul {
  color: var(--muted);
  margin: 12px 0 0;
  padding-left: 20px;
}

@media (max-width: 920px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .grid.three,
  .grid.four,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .nav-links,
  .nav-actions {
    display: none;
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .nav.open .nav-links,
  .nav.open .nav-actions {
    display: flex;
  }

  .nav-links a,
  .nav-actions .button {
    width: 100%;
    justify-content: center;
    padding: 10px 12px;
  }

  .hero-grid {
    padding: 54px 0 46px;
  }

  .section {
    padding: 54px 0;
  }

  .grid.three,
  .grid.four,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-band > div:last-child {
    width: 100%;
  }

  .hero-actions .button,
  .cta-band .button {
    width: 100%;
  }

  .cta-band {
    border-radius: 18px;
    padding: 26px;
  }
}
