@charset "utf-8";
:root {
	--ink: #312444;
	--purple: #68448b;
	--lav: #a985c6;
	--mist: #f4eef8;
	--cream: #fffdf9;
	--line: #dfd3e8;
	--sage: #71806b;
	--gold: #b89459
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--cream);
	font: 17px/1.72 Georgia, "Times New Roman", serif
}

a {
	color: inherit
}

.wrap {
	width: min(1160px, 92vw);
	margin: auto
}

.eyebrow {
	font: 600 12px/1.2 Arial, sans-serif;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--purple)
}

h1,
h2,
h3 {
	margin: 0 0 .55em;
	line-height: 1.12;
	font-weight: 500
}

h1 {
	font-size: clamp(3.1rem, 7vw, 6rem)
}

h2 {
	font-size: clamp(2rem, 4vw, 3.5rem)
}

h3 {
	font-size: 1.5rem
}

p {
	margin: .45em 0 1.05em
}

.btn {
	display: inline-block;
	padding: .82rem 1.35rem;
	border: 1px solid var(--purple);
	border-radius: 999px;
	text-decoration: none;
	font: 600 13px Arial, sans-serif;
	letter-spacing: .05em;
	background: var(--purple);
	color: white
}

.btn.alt {
	background: transparent;
	color: var(--purple)
}

.top {
	border-bottom: 1px solid var(--line);
	background: rgba(255, 253, 249, .96);
	position: sticky;
	top: 0;
	z-index: 5
}

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

.sidebar {
	position: fixed;
	top: 0;
	right: 0;
	height: 100vh;
	width: 250px;
	z-index: 999;
	background-color: rgba(255, 255, 255, 0.2);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
	display: none;
	flex-direction: column;
	justify-content: flex-start;
}

.sidebar li {
	width: 100%;
	list-style: none;
	margin-top: 20px;
	font-weight: bold
}

.sidebar a {
	width: 100%;
}

.sidebar ul {
	padding-left: 20px;
}

.brand {
	text-decoration: none
}

.brand b {
	display: block;
	font-size: 1.28rem;
	letter-spacing: .07em
}

.brand small {
	display: block;
	font: 11px Arial, sans-serif;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--purple)
}

nav {
	display: flex;
	gap: 1.3rem;
	align-items: center;
	font: 14px Arial, sans-serif
}

nav a {
	text-decoration: none
}

.hero-grid {
	min-height: 610px;
	display: grid;
	grid-template-columns: 1.08fr .92fr;
	gap: 4rem;
	align-items: center;
	padding: 4.5rem 0
}

.hero h1 em {
	display: block;
	color: var(--purple);
	font-weight: 400
}

.lead {
	font-size: 1.25rem;
	max-width: 650px
}

.butterfly-stage {
	min-height: 430px;
	display: grid;
	place-items: center;
	position: relative
}

.butterfly-stage:before {
	content: "";
	position: absolute;
	width: 390px;
	height: 390px;
	border: 1px solid rgba(104, 68, 139, .2);
	border-radius: 50%
}

.butterfly {
	position: relative;
	width: min(430px, 90%);
	filter: drop-shadow(0 20px 25px rgba(73, 45, 95, .18))
}

.section {
	padding: 6rem 0
}

.center {
	text-align: center;
	max-width: 790px;
	margin: 0 auto 3rem
}

.tint {
	background: var(--mist)
}

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

.cta {
	text-align: center;
	background: linear-gradient(135deg, #60417c, #342244);
	color: white
}

.cta .eyebrow {
	color: #ddcae8
}

.cta .btn {
	background: white;
	color: var(--purple);
	border-color: white
}

.footer {
	padding: 3rem 0;
	background: #21182d;
	color: #eadff1
}

.footer a {
	color: #eadff1
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr .8fr .8fr;
	gap: 3rem
}


.fine {
	font: 12px/1.6 Arial, sans-serif;
	color: #bfaecb
}
		
.notice {
	margin-top: 2rem;
	padding: 1.25rem 1.5rem;
	background: #f8f2fa;
	border-left: 4px solid var(--purple)
}
