:root {
  --ink: #312742;
  --muted: #665a76;
  --primary: #6e4baa;
  --primary-dark: #58378d;
  --accent: #d36aa3;
  --accent-soft: #f8f2fa;
  --lavender: #eee5f7;
  --bg: #fbf9fc;
  --white: #fff;
  --shadow-soft: 0 18px 50px rgba(82, 54, 125, .12);
  --shadow-card: 0 10px 30px rgba(82, 54, 125, .10);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max-width: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(211,106,163,.16), transparent 34rem),
    radial-gradient(circle at 85% 10%, rgba(110,75,170,.13), transparent 28rem),
    var(--bg);
}
.page-shell {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 48px;
}
.section-card {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(110,75,170,.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: clamp(24px, 4vw, 44px);
  backdrop-filter: blur(10px);
}
.hero { position: relative; overflow: hidden; box-shadow: var(--shadow-soft); }
.hero::after {
  content: "";
  position: absolute;
  right: -12rem; top: -12rem;
  width: 30rem; height: 30rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(211,106,163,.18), rgba(110,75,170,.10));
  pointer-events: none;
}
.brand { display: flex; justify-content: center; margin-bottom: 8px; }
.brand-logo { width: min(230px, 64vw); height: auto; display: block; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  color: var(--accent);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  margin: 0 0 10px;
  text-transform: uppercase;
}
h1, h2 { line-height: 1.12; margin: 0 0 16px; }
h1 {
  color: var(--primary);
  font-size: clamp(2.5rem, 8vw, 5.1rem);
  letter-spacing: -.055em;
}
h2 {
  color: var(--primary);
  font-size: clamp(1.55rem, 4vw, 2.25rem);
  letter-spacing: -.035em;
}
.lead {
  color: var(--accent);
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  font-weight: 700;
  margin: 0 0 22px;
}
.intro { color: var(--muted); font-size: 1.08rem; margin: 0; max-width: 64ch; }
.hero-actions, .registration-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
  align-items: center;
}
.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 10px 24px rgba(110,75,170,.24);
  color: var(--white);
}
.button-secondary { background: var(--lavender); color: var(--primary-dark); }
.text-link { color: var(--primary); font-weight: 800; text-decoration-color: rgba(110,75,170,.35); text-underline-offset: 3px; }
.facts-card {
  background: linear-gradient(180deg, var(--accent-soft), #fff);
  border: 1px solid rgba(211,106,163,.26);
  border-radius: var(--radius-md);
  padding: 24px;
}
.facts-card dl { margin: 0; }
.facts-card div { border-bottom: 1px solid rgba(110,75,170,.12); padding: 14px 0; }
.facts-card div:first-child { padding-top: 0; }
.facts-card div:last-child { border-bottom: 0; padding-bottom: 0; }
.facts-card dt {
  color: var(--accent);
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.facts-card dd { color: var(--ink); font-size: 1.05rem; font-weight: 800; margin: 2px 0 0; }
section + section, .split, .quote-band { margin-top: 24px; }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}
.audience-grid li, .check-list li {
  background: var(--accent-soft);
  border: 1px solid rgba(110,75,170,.10);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 700;
  padding: 10px 14px;
}
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; }
.check-list { display: grid; gap: 10px; list-style: none; margin: 0; padding: 0; }
.check-list li { border-radius: 16px; position: relative; padding-left: 42px; }
.check-list li::before {
  content: "✓";
  background: var(--primary);
  border-radius: 50%;
  color: #fff;
  display: grid;
  font-size: .8rem;
  font-weight: 900;
  height: 22px;
  left: 12px;
  place-items: center;
  position: absolute;
  top: 12px;
  width: 22px;
}
.accent-card { background: linear-gradient(135deg, rgba(248,242,250,.96), rgba(238,229,247,.82)), #fff; }
.quote-band {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-lg);
  color: #fff;
  padding: clamp(28px, 5vw, 44px);
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.quote-band p { font-size: clamp(1.35rem, 4vw, 2.25rem); font-weight: 800; line-height: 1.25; margin: 0; }
.profile {
  align-items: center;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 44px);
}
.profile-image-wrap {
  background: linear-gradient(135deg, var(--lavender), var(--accent-soft));
  border-radius: 50%;
  padding: 8px;
  box-shadow: var(--shadow-card);
}
.profile-image { aspect-ratio: 1; border-radius: 50%; display: block; height: auto; object-fit: cover; width: 100%; }
.registration { border: 2px solid rgba(211,106,163,.24); }
.fineprint { color: var(--muted); font-size: .93rem; margin: 18px 0 0; }

@media (max-width: 880px) {
  .page-shell { width: min(100% - 22px, var(--max-width)); padding-top: 12px; }
  .section-card { border-radius: 22px; padding: 22px; }
  .hero-grid, .split, .profile { grid-template-columns: 1fr; }
  .facts-card { order: -1; }
  .audience-grid { grid-template-columns: 1fr; }
  .hero-actions, .registration-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .profile-image-wrap { justify-self: center; width: min(210px, 72vw); }
}
@media (max-width: 480px) {
  body { background: radial-gradient(circle at top left, rgba(211,106,163,.18), transparent 24rem), var(--bg); }
  .brand-logo { width: min(190px, 70vw); }
  h1 { font-size: clamp(2.35rem, 15vw, 4rem); }
  .lead { font-size: 1.08rem; }
  .intro { font-size: 1rem; }
  .facts-card { padding: 18px; }
}
