:root {
  --bg: #fcf8ff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-border: rgba(196, 157, 224, 0.34);
  --text: #261732;
  --muted: #735286;
  --accent: #c7548a;
  --accent-2: #8f50d9;
  --accent-3: #f9cf6b;
  --shadow: rgba(146, 95, 191, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 213, 232, 0.8), transparent 28%),
    radial-gradient(circle at top right, rgba(220, 202, 255, 0.82), transparent 30%),
    linear-gradient(180deg, #fff9fd 0%, var(--bg) 42%, #f8f1ff 100%);
}

a {
  color: inherit;
}

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

.page-glow {
  position: fixed;
  z-index: -1;
  width: 26rem;
  height: 26rem;
  filter: blur(54px);
  opacity: 0.55;
  pointer-events: none;
}

.page-glow-left {
  top: -8rem;
  left: -10rem;
  background: rgba(255, 185, 214, 0.75);
}

.page-glow-right {
  top: 10rem;
  right: -10rem;
  background: rgba(174, 133, 255, 0.38);
}

.hero {
  padding: 72px 0 28px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  padding: 9px 14px;
  border: 1px solid rgba(199, 84, 138, 0.15);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.7);
  font: 600 13px/1 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.95;
}

.lede {
  width: min(700px, 100%);
  margin: 18px auto 0;
  color: var(--muted);
  font: 500 1.05rem/1.75 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-nav a {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(143, 80, 217, 0.14);
  background: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  font: 600 0.95rem/1 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.hero-nav a:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px var(--shadow);
  border-color: rgba(143, 80, 217, 0.3);
}

.card {
  margin: 22px 0;
  padding: 28px;
  border: 1px solid var(--surface-border);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 24px 50px var(--shadow);
  backdrop-filter: blur(12px);
}

.card-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.label {
  margin: 0 0 8px;
  color: var(--accent);
  font: 700 0.8rem/1 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.effective {
  margin: 0;
  color: var(--muted);
  font: 500 0.95rem/1.5 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.content-grid article {
  min-width: 0;
}

.content-grid h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}

.content-grid p {
  margin: 0 0 18px;
  color: var(--muted);
  font: 500 1rem/1.75 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0 44px;
  color: var(--muted);
  font: 500 0.92rem/1.6 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.footer p {
  margin: 0;
}

@media (max-width: 760px) {
  .hero {
    padding-top: 52px;
  }

  .card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .card-head,
  .footer,
  .content-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .card-head {
    gap: 8px;
  }
}
