:root {
  color-scheme: light;
  --ink: #251f2b;
  --muted: #766d7d;
  --rose: #ff6b8a;
  --plum: #5b2b73;
  --cream: #fff7ed;
  --line: rgba(91, 43, 115, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top left, #ffe1ea 0, transparent 34%), var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.hero__content,
.hero__card,
.research {
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 24px 80px rgba(91, 43, 115, 0.12);
}

.hero__content {
  padding: clamp(32px, 6vw, 72px);
}

.hero__card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  background: linear-gradient(160deg, rgba(91, 43, 115, 0.94), rgba(255, 107, 138, 0.9));
  color: white;
}

.eyebrow,
.badge {
  margin: 0 0 16px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.badge {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: white;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(40px, 7vw, 82px);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.lead {
  max-width: 640px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--plum);
  color: white;
  box-shadow: 0 16px 40px rgba(91, 43, 115, 0.22);
}

.button--secondary {
  background: var(--rose);
  color: white;
  box-shadow: 0 16px 40px rgba(255, 107, 138, 0.22);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.status {
  min-height: 24px;
  margin: 22px 0 0;
  color: var(--plum);
  font-weight: 700;
}

.hero__card ul {
  margin: 10px 0 0;
  padding-left: 20px;
  line-height: 1.7;
}

.research {
  margin-top: 28px;
  padding: clamp(28px, 5vw, 48px);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.grid article {
  min-height: 180px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  background: white;
}

.grid p {
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 820px) {
  .page {
    padding: 24px 0;
  }

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

  .hero__content,
  .hero__card,
  .research {
    border-radius: 24px;
  }

  .actions,
  .button {
    width: 100%;
  }
}
