:root {
  color: #150a35;
  background: #fbf9ff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 15% 0%, rgba(165, 119, 255, 0.18), transparent 24rem),
    radial-gradient(circle at 90% 10%, rgba(21, 10, 53, 0.08), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, #fbf9ff 48%, #f6f1ff 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 72px;
}

.header,
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header {
  padding: 16px 0 58px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 999px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(21, 10, 53, 0.62);
  font-size: 14px;
  font-weight: 700;
}

.hero {
  border: 1px solid rgba(21, 10, 53, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 10%, rgba(165, 119, 255, 0.18), transparent 18rem),
    #ffffff;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: 0 24px 70px rgba(21, 10, 53, 0.08);
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.hero-media {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(21, 10, 53, 0.08);
  border-radius: 26px;
  background: #efe8ff;
  box-shadow: 0 22px 54px rgba(21, 10, 53, 0.1);
}

.eyebrow,
.tag {
  color: #a577ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  border: 1px solid rgba(165, 119, 255, 0.28);
  border-radius: 999px;
  background: rgba(165, 119, 255, 0.1);
  padding: 10px 16px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin: 28px 0 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: 0;
}

.subtitle {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(21, 10, 53, 0.68);
  font-size: 18px;
  line-height: 1.7;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  background: #a577ff;
  padding: 0 22px;
  color: #150a35;
  font-size: 14px;
  font-weight: 800;
}

.button.secondary {
  border: 1px solid rgba(21, 10, 53, 0.12);
  background: #ffffff;
}

.section {
  padding: 72px 0 0;
}

.two-col,
.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.split-band {
  border: 1px solid rgba(21, 10, 53, 0.08);
  border-radius: 32px;
  background: #ffffff;
  margin-top: 72px;
  padding: clamp(28px, 5vw, 48px);
  box-shadow: 0 22px 60px rgba(21, 10, 53, 0.07);
}

.section-header {
  max-width: 760px;
}

.section h2 {
  margin: 14px 0 0;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.12;
}

.section-header p,
.card p,
.faq p,
.lead,
.footer {
  color: rgba(21, 10, 53, 0.64);
  line-height: 1.7;
}

.lead {
  margin: 0;
  font-size: 19px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.card,
.faq,
.cta {
  border: 1px solid rgba(21, 10, 53, 0.08);
  border-radius: 28px;
  background: #ffffff;
  padding: 26px;
  box-shadow: 0 20px 60px rgba(21, 10, 53, 0.07);
}

.card h3,
.faq h3 {
  margin: 12px 0 10px;
  font-size: 21px;
  line-height: 1.2;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: flex;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(21, 10, 53, 0.08);
  border-radius: 18px;
  background: #fbf9ff;
  padding: 16px;
  color: rgba(21, 10, 53, 0.76);
  font-weight: 700;
}

.steps span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(165, 119, 255, 0.12);
  color: #a577ff;
  font-size: 14px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.metric-grid span,
.check-list li,
.related-card {
  border: 1px solid rgba(21, 10, 53, 0.08);
  border-radius: 18px;
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 14px 38px rgba(21, 10, 53, 0.06);
}

.metric-grid span {
  color: #a577ff;
  font-size: 20px;
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 48px;
  color: rgba(21, 10, 53, 0.68);
  line-height: 1.6;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 18px;
  color: #a577ff;
  font-weight: 900;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.related-card {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  color: #150a35;
  font-weight: 800;
}

.related-card span {
  color: #a577ff;
  font-size: 22px;
}

.cta {
  display: grid;
  gap: 18px;
  margin-top: 72px;
}

.footer {
  margin-top: 80px;
  border-top: 1px solid rgba(21, 10, 53, 0.1);
  padding-top: 28px;
  font-size: 14px;
}

@media (max-width: 780px) {
  .page {
    width: min(100% - 28px, 1120px);
    padding-top: 20px;
  }

  .header,
  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-split,
  .two-col,
  .split-band {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .faq-list,
  .metric-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
