:root {
	--ink: #2b1857;
	--brand: #7d4ee8;
	--brand-dark: #33196a;
	--brand-soft: #e9e2ff;
	--cream: #fbf8f1;
	--paper: #fffdf8;
	--white: #ffffff;
	--orange: #ff7227;
	--red: #ed3d32;
	--green: #24b96f;
	--blue: #3c68ff;
	--muted: #7e749a;
	--line: rgba(69, 39, 128, 0.14);
	--shadow: 0 28px 90px rgba(43, 24, 87, 0.14);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 76px;
}

body {
	margin: 0;
	min-width: 320px;
	background: var(--cream);
	color: var(--ink);
	font-family: "Geologica", sans-serif;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.is-modal-open {
	overflow: hidden;
}

body.has-custom-cursor {
	cursor: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

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

button,
input,
textarea {
	font: inherit;
}

button {
	border: 0;
	cursor: pointer;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: fixed;
	left: 18px;
	top: -100px;
	z-index: 1000;
	padding: 12px 18px;
	border-radius: 999px;
	background: var(--ink);
	color: var(--white);
}

.skip-link:focus {
	top: 12px;
}

.lead-landing {
	position: relative;
	overflow: hidden;
}

.section-shell {
	width: min(100% - 112px, 1340px);
	margin-inline: auto;
}

.grain {
	position: fixed;
	inset: 0;
	z-index: 3;
	pointer-events: none;
	opacity: 0.025;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
	background-size: 160px;
}

.cursor {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9999;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--brand);
	pointer-events: none;
	transform: translate(-50%, -50%);
	transition: width 180ms ease, height 180ms ease, opacity 180ms ease;
	mix-blend-mode: multiply;
}

body.has-custom-cursor .cursor {
	display: block;
}

.cursor.big {
	width: 46px;
	height: 46px;
	opacity: 0.18;
}

.lead-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	height: 76px;
	padding-inline: max(28px, calc((100vw - 1340px) / 2));
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	border-bottom: 1px solid var(--line);
	background: rgba(251, 248, 241, 0.9);
	backdrop-filter: blur(18px);
}

body.admin-bar .lead-nav {
	top: 32px;
}

.nav-logo {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.nav-logo__image {
	width: auto;
	height: 31px;
}

.lead-nav__actions {
	display: flex;
	align-items: center;
	gap: 18px;
}

.lead-nav__phone {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.01em;
	color: var(--brand);
}

.nav-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	padding: 10px 20px;
	border-radius: 999px;
	background: var(--ink);
	color: var(--white);
	font-size: 13px;
	font-weight: 600;
	transition: background-color 180ms ease, transform 180ms ease;
}

.nav-pill:hover,
.nav-pill:focus-visible {
	background: var(--brand);
	transform: translateY(-2px);
}

.nav-pill__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #72efb3;
	box-shadow: 0 0 0 5px rgba(114, 239, 179, 0.12);
	animation: pulse 2s ease-in-out infinite;
}

.lead-hero {
	position: relative;
	min-height: 100svh;
	display: grid;
	align-items: center;
	padding: 116px 0 60px;
	background: var(--cream);
}

.lead-hero::before {
	content: "";
	position: absolute;
	left: -7vw;
	bottom: 9vh;
	width: 15vw;
	aspect-ratio: 1;
	border: 1px solid rgba(125, 78, 232, 0.25);
	border-radius: 50%;
}

.lead-hero__grid {
	display: grid;
	grid-template-columns: minmax(360px, 0.76fr) minmax(560px, 1.24fr);
	align-items: center;
	gap: clamp(48px, 6vw, 96px);
}

.lead-hero__copy {
	position: relative;
	z-index: 2;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 34px;
	padding: 9px 17px;
	border: 1px solid rgba(125, 78, 232, 0.18);
	border-radius: 999px;
	background: var(--brand-soft);
	color: var(--brand);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.075em;
	line-height: 1.35;
	text-transform: uppercase;
}

.eyebrow-dot {
	width: 7px;
	height: 7px;
	flex: 0 0 7px;
	border-radius: 50%;
	background: var(--red);
	animation: pulse 2s ease-in-out infinite;
}

.hero-h1 {
	max-width: 660px;
	margin: 0;
	font-family: "Unbounded", sans-serif;
	font-size: clamp(42px, 5.25vw, 75px);
	font-weight: 900;
	line-height: 1.03;
	letter-spacing: -0.055em;
}

.hero-h1 .wave {
	position: relative;
	display: inline-block;
	font-family: "Lora", serif;
	font-weight: 600;
	font-style: italic;
	letter-spacing: -0.04em;
	color: var(--brand);
}

.hero-h1 .wave::after {
	content: "";
	position: absolute;
	left: 1%;
	right: -2%;
	bottom: -5px;
	height: 5px;
	border-radius: 50%;
	background: var(--orange);
	transform: rotate(-1deg);
}

.video-stage {
	position: relative;
	z-index: 2;
	padding: 12px;
	border: 1px solid rgba(69, 39, 128, 0.2);
	border-radius: 25px 25px 34px 25px;
	background: rgba(255, 255, 255, 0.84);
	box-shadow: 7px 8px 0 rgba(69, 39, 128, 0.15), 0 18px 48px rgba(43, 24, 87, 0.11);
}

.video-stage::before {
	content: "";
	position: absolute;
	z-index: 4;
	top: -2px;
	left: 30px;
	width: 84px;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--brand) 0 74%, var(--orange) 74% 100%);
}

.video-frame {
	position: relative;
	z-index: 2;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border: 1px solid rgba(43, 24, 87, 0.1);
	border-radius: 16px 16px 24px 16px;
	background: #120925;
	box-shadow: 0 8px 24px rgba(29, 12, 66, 0.12);
}

.video-frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.video-stage__orbit {
	display: none;
}

.video-stage__orbit--one {
	width: 108px;
	height: 108px;
	right: -46px;
	top: -40px;
	background: var(--orange);
}

.video-stage__orbit--two {
	width: 58px;
	height: 58px;
	left: -27px;
	bottom: 38px;
	border: 11px solid var(--paper);
	background: var(--red);
}

.video-stage__spark {
	position: absolute;
	z-index: 5;
	right: 22px;
	bottom: -17px;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(69, 39, 128, 0.16);
	border-radius: 50%;
	background: var(--paper);
	box-shadow: 0 7px 18px rgba(43, 24, 87, 0.12);
	color: var(--orange);
	font-size: 18px;
	line-height: 1;
}

.subscription-section {
	position: relative;
	min-height: 100svh;
	padding: 124px 0 92px;
	background: var(--brand-soft);
}

.subscription-section::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 34px;
	height: 1px;
	background: repeating-linear-gradient(90deg, transparent 0 18px, rgba(69, 39, 128, 0.18) 18px 24px);
}

.subscription-section__grid {
	display: grid;
	grid-template-columns: minmax(420px, 0.9fr) minmax(470px, 1.1fr);
	align-items: center;
	gap: clamp(54px, 7vw, 104px);
}

.subscription-card {
	position: relative;
	z-index: 2;
	padding: clamp(32px, 4vw, 54px);
	border: 1px solid rgba(69, 39, 128, 0.13);
	border-radius: 30px;
	background: var(--paper);
	box-shadow: var(--shadow);
}

.section-kicker {
	margin: 0 0 14px;
	color: var(--brand);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.subscription-card h2,
.pricing-heading h2 {
	margin: 0;
	font-family: "Unbounded", sans-serif;
	font-size: clamp(30px, 3vw, 46px);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: -0.04em;
}

.subscription-card__intro {
	margin: 18px 0 30px;
	font-family: "Lora", serif;
	font-size: 18px;
	line-height: 1.6;
	color: var(--muted);
}

.lead-form {
	display: grid;
	gap: 19px;
}

.form-honeypot {
	position: absolute;
	left: -9999px;
	top: 0;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-field {
	display: grid;
	gap: 8px;
}

.form-field label {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
}

.form-field input,
.form-field textarea {
	width: 100%;
	border: 1.5px solid rgba(69, 39, 128, 0.17);
	border-radius: 15px;
	outline: 0;
	background: var(--white);
	color: var(--ink);
	font-size: 15px;
	line-height: 1.45;
	transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.form-field input {
	height: 54px;
	padding: 0 16px;
}

.form-field textarea {
	min-height: 126px;
	padding: 15px 16px;
	resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
	color: #aaa2bd;
}

.form-field input:focus,
.form-field textarea:focus {
	border-color: var(--brand);
	box-shadow: 0 0 0 4px rgba(125, 78, 232, 0.12);
}

.form-field.is-invalid input,
.form-field.is-invalid textarea,
.form-field.is-invalid .phone-field {
	border-color: var(--red);
	box-shadow: 0 0 0 4px rgba(237, 61, 50, 0.1);
}

.phone-field {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	border: 1.5px solid rgba(69, 39, 128, 0.17);
	border-radius: 15px;
	background: var(--white);
	overflow: hidden;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.phone-field:focus-within {
	border-color: var(--brand);
	box-shadow: 0 0 0 4px rgba(125, 78, 232, 0.12);
}

.phone-field__prefix {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding-left: 16px;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
}

.phone-field input {
	border: 0;
	border-radius: 0;
	box-shadow: none !important;
}

.form-field__error {
	display: none;
	font-size: 12px;
	line-height: 1.4;
	color: #b52b21;
}

.form-field.is-invalid .form-field__error {
	display: block;
}

.submit-button {
	width: 100%;
	min-height: 58px;
	margin-top: 3px;
	padding: 14px 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	border-radius: 15px;
	background: var(--brand);
	color: var(--white);
	font-size: 16px;
	font-weight: 700;
	transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.submit-button:hover,
.submit-button:focus-visible {
	background: var(--ink);
	box-shadow: 0 12px 28px rgba(43, 24, 87, 0.24);
	transform: translateY(-2px);
}

.submit-button:disabled {
	cursor: wait;
	opacity: 0.7;
	transform: none;
}

.form-feedback {
	display: none;
	padding: 11px 14px;
	border-radius: 12px;
	font-size: 13px;
	line-height: 1.45;
}

.form-feedback.is-visible {
	display: block;
}

.form-feedback[data-state="error"] {
	background: rgba(237, 61, 50, 0.09);
	color: #a5261d;
}

.form-privacy {
	margin: -6px 0 0;
	text-align: center;
	font-size: 11px;
	color: var(--muted);
}

.hero-r {
	position: relative;
	padding: 12px;
	border: 1px solid rgba(69, 39, 128, 0.2);
	border-radius: 28px 28px 38px 28px;
	background: rgba(255, 255, 255, 0.66);
	box-shadow: 7px 8px 0 rgba(69, 39, 128, 0.13), 0 20px 54px rgba(43, 24, 87, 0.11);
}

.hero-r::before {
	content: "";
	position: absolute;
	z-index: 4;
	top: -2px;
	right: 32px;
	width: 84px;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--brand) 0 74%, var(--orange) 74% 100%);
}

.hero-r__frame {
	position: relative;
	z-index: 2;
}

.chat-card {
	position: relative;
	padding: clamp(24px, 3.4vw, 40px);
	border: 1px solid rgba(69, 39, 128, 0.1);
	border-radius: 23px 23px 31px 23px;
	background: var(--white);
	box-shadow: 0 12px 30px rgba(43, 24, 87, 0.09);
}

.chat-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 22px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--line);
}

.chat-avatar {
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--brand);
	font-size: 21px;
}

.chat-name {
	font-size: 14px;
	font-weight: 700;
}

.chat-online {
	position: relative;
	padding-left: 10px;
	font-size: 11px;
	color: var(--green);
}

.chat-online::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
	transform: translateY(-50%);
}

.chat-time {
	margin-left: auto;
	font-size: 11px;
	color: var(--muted);
}

.messages {
	display: grid;
	gap: 9px;
}

.message {
	width: fit-content;
	max-width: 88%;
	padding: 11px 14px;
	border-radius: 16px;
	font-size: 13px;
	line-height: 1.5;
}

.message--in {
	border-bottom-left-radius: 4px;
	background: #f1edff;
}

.message--out {
	margin-left: auto;
	border-bottom-right-radius: 4px;
	background: var(--brand);
	color: var(--white);
}

.message--report {
	background: #dcf8e8;
	color: #145f3c;
}

.message-row--out {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.message-time {
	margin-top: 2px;
	font-size: 10px;
	color: var(--muted);
}

.blue-ticks {
	color: var(--blue);
}

.service-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 20px;
}

.service-tags span {
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--brand-soft);
	color: var(--brand);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.service-tags .service-tags__sos {
	background: #ffebe9;
	color: var(--red);
}

.service-tags .service-tags__done {
	background: #dcf8e8;
	color: #16613d;
}

.floating-badge {
	position: absolute;
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 13px;
	background: var(--white);
	border: 1px solid rgba(69, 39, 128, 0.1);
	box-shadow: 0 8px 20px rgba(43, 24, 87, 0.1);
	font-size: 12px;
	font-weight: 600;
	white-space: nowrap;
}

.floating-badge--route {
	top: -18px;
	right: 18px;
	transform: rotate(1deg);
}

.floating-badge--done {
	left: -18px;
	bottom: -17px;
	transform: rotate(-1deg);
	animation-delay: 1.2s;
}

.floating-badge--done span {
	color: var(--brand);
}

.floating-badge__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--green);
}

.pricing-section {
	position: relative;
	min-height: 100svh;
	padding: 118px 0 104px;
	background: var(--cream);
}

.pricing-section::before {
	content: "";
	position: absolute;
	right: -95px;
	top: 88px;
	width: 240px;
	height: 240px;
	border: 32px solid var(--brand-soft);
	border-radius: 50%;
}

.pricing-heading {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 36px;
}

.section-number {
	width: 56px;
	height: 56px;
	flex: 0 0 56px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--brand);
	color: var(--white);
	font-family: "Unbounded", sans-serif;
	font-size: 15px;
	font-weight: 900;
}

.pricing-note {
	display: flex;
	align-items: center;
	gap: 13px;
	margin-bottom: 38px;
	padding: 17px 20px;
	border: 1px solid rgba(69, 39, 128, 0.28);
	border-radius: 15px;
	background: var(--paper);
	font-size: 15px;
	line-height: 1.5;
}

.pricing-note > span {
	font-size: 20px;
}

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

.price-card {
	display: flex;
	flex-direction: column;
	min-height: 430px;
	padding: 28px 30px 24px;
	border: 2px solid var(--brand);
	border-radius: 26px 26px 50px 26px;
	background: var(--paper);
	box-shadow: 10px 12px 0 var(--brand-soft);
}

.price-card--popular {
	border-color: var(--brand-dark);
	background: var(--brand-dark);
	box-shadow: 10px 12px 0 var(--orange);
	color: var(--white);
}

.price-card__top {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: start;
	gap: 20px;
	margin-bottom: 14px;
}

.price-card h3 {
	margin: 0;
	font-family: "Geologica", sans-serif;
	font-size: clamp(21px, 1.8vw, 26px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.025em;
}

.plan-badge {
	min-width: 145px;
	padding: 10px 18px;
	border-radius: 11px;
	background: #c8b3f6;
	color: var(--ink);
	text-align: center;
	font-size: 12px;
	font-weight: 700;
}

.plan-badge--popular {
	background: var(--orange);
	color: var(--white);
}

.price-card > p {
	margin: 0 0 18px;
	font-size: 15px;
	line-height: 1.55;
}

.price-card--popular > p {
	color: rgba(255, 255, 255, 0.82);
}

.price-card > p strong {
	color: inherit;
}

.plan-features {
	display: grid;
	gap: 15px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.plan-features li {
	display: grid;
	grid-template-columns: 24px 1fr;
	align-items: start;
	gap: 9px;
	font-size: 15px;
	line-height: 1.4;
}

.plan-features li > span:first-child {
	filter: hue-rotate(5deg) saturate(1.15);
}

.plan-features small {
	display: inline-block;
	font-size: 10px;
	line-height: 1.3;
	vertical-align: middle;
}

.price-card--popular .plan-features {
	color: rgba(255, 255, 255, 0.9);
}

.price-card__price {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	margin-top: auto;
	padding-top: 24px;
	font-family: "Unbounded", sans-serif;
	font-size: clamp(16px, 1.75vw, 22px);
	line-height: 1.25;
	white-space: nowrap;
}

.price-card__price span {
	color: rgba(69, 39, 128, 0.25);
}

.price-card__price b {
	color: var(--brand);
}

.price-card--popular .price-card__price span {
	color: rgba(255, 255, 255, 0.25);
}

.price-card--popular .price-card__price b {
	color: var(--orange);
}

.care-story {
	position: relative;
	min-height: 100svh;
	padding-top: 118px;
	background: #f1edff;
}

.care-story__grid {
	display: grid;
	grid-template-columns: minmax(430px, 0.95fr) minmax(460px, 1.05fr);
	align-items: center;
	gap: clamp(56px, 7vw, 108px);
	padding-bottom: 96px;
}

.hero-lede {
	max-width: 640px;
	margin: 0 0 32px;
	font-family: "Lora", serif;
	font-size: clamp(24px, 2.3vw, 34px);
	line-height: 1.45;
	color: var(--muted);
}

.hero-lede b {
	font-weight: 600;
	color: var(--ink);
}

.hooks {
	display: grid;
}

.hook {
	position: relative;
	display: grid;
	grid-template-columns: 44px 1fr;
	align-items: start;
	gap: 15px;
	padding: 15px 0;
	border-top: 1px solid var(--line);
}

.hook:last-child {
	border-bottom: 1px solid var(--line);
}

.hook-icon {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border-radius: 13px;
	background: var(--paper);
	font-size: 20px;
	box-shadow: 0 5px 18px rgba(43, 24, 87, 0.08);
}

.hook-title {
	margin-bottom: 3px;
	font-size: 14px;
	font-weight: 700;
}

.hook-sub {
	font-size: 12px;
	line-height: 1.55;
	color: var(--muted);
}

.social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 30px;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-width: 156px;
	padding: 13px 17px;
	border: 1px solid var(--brand);
	border-radius: 999px;
	color: var(--brand);
	font-size: 13px;
	font-weight: 700;
	transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
	background: var(--brand);
	color: var(--white);
	transform: translateY(-2px);
}

.social-link__identity {
	display: inline-flex;
	align-items: center;
	gap: 9px;
}

.social-link__icon {
	display: block;
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	object-fit: contain;
}

.social-link__icon--tiktok {
	padding: 1px;
	border-radius: 6px;
	background: var(--white);
}

.social-link__arrow {
	margin-left: auto;
	font-size: 14px;
	line-height: 1;
}

.social-links--mobile {
	display: none;
}

.care-story__media {
	position: relative;
	margin: 0;
	padding: 18px;
	border-radius: 170px 32px 32px 32px;
	background: var(--brand);
	box-shadow: 22px 24px 0 var(--ink);
}

.care-story__media img {
	width: 100%;
	max-height: 720px;
	object-fit: cover;
	object-position: 50% 54%;
	border-radius: 150px 22px 22px 22px;
}

.care-story__sticker {
	position: absolute;
	left: -26px;
	top: 48px;
	z-index: 2;
	padding: 11px 20px;
	border-radius: 999px;
	background: var(--orange);
	color: var(--white);
	font-family: "Unbounded", sans-serif;
	font-size: 15px;
	font-weight: 900;
	transform: rotate(-8deg);
}

.lead-footer {
	padding: 28px 0;
	background: var(--ink);
	color: var(--white);
}

.lead-footer__inner {
	display: flex;
	align-items: center;
	gap: 28px;
	font-size: 13px;
}

.lead-footer img {
	width: auto;
	height: 25px;
	margin-right: auto;
}

.lead-footer a {
	font-weight: 600;
}

.success-modal[hidden] {
	display: none !important;
}

.success-modal {
	position: fixed;
	inset: 0;
	z-index: 999;
	display: grid;
	place-items: center;
	padding: 20px;
}

.success-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(26, 11, 57, 0.62);
	backdrop-filter: blur(8px);
}

.success-modal__panel {
	position: relative;
	z-index: 1;
	width: min(100%, 470px);
	padding: 38px 34px 30px;
	border-radius: 30px;
	background: var(--brand);
	box-shadow: 0 30px 100px rgba(18, 5, 46, 0.38);
	color: var(--white);
	text-align: center;
	opacity: 0;
	transform: translateY(18px) scale(0.98);
	transition: opacity 220ms ease, transform 220ms ease;
}

.success-modal.is-visible .success-modal__panel {
	opacity: 1;
	transform: none;
}

.success-modal__close {
	position: absolute;
	right: 15px;
	top: 15px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	color: var(--white);
	font-size: 22px;
}

.success-icon {
	width: 74px;
	height: 74px;
	margin: 0 auto 18px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	font-size: 34px;
}

.success-title {
	margin: 0 0 12px;
	font-family: "Unbounded", sans-serif;
	font-size: 25px;
	font-weight: 900;
}

.success-modal__panel p {
	margin: 0 0 24px;
	font-size: 15px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.84);
}

.success-cta {
	width: 100%;
	min-height: 52px;
	padding: 12px 18px;
	border-radius: 14px;
	background: var(--white);
	color: var(--ink);
	font-weight: 700;
}

.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.72, 0.25, 1);
}

.lead-hero__copy .hero-h1 {
	transition-delay: 110ms;
}

.reveal.in {
	opacity: 1;
	transform: none;
}

@keyframes pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.48; transform: scale(1.35); }
}

@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-7px); }
}

@media (max-width: 1180px) {
	.section-shell {
		width: min(100% - 64px, 1080px);
	}

	.lead-hero__grid {
		grid-template-columns: minmax(330px, 0.8fr) minmax(480px, 1.2fr);
		gap: 52px;
	}

	.hero-h1 {
		font-size: clamp(38px, 5vw, 58px);
	}

	.subscription-section__grid,
	.care-story__grid {
		gap: 52px;
	}

	.price-card {
		padding-inline: 24px;
	}

	.price-card__price {
		font-size: 17px;
	}
}

@media (max-width: 960px) {
	.section-shell {
		width: min(100% - 48px, 780px);
	}

	.lead-hero {
		min-height: auto;
		padding: 124px 0 90px;
	}

	.lead-hero__grid,
	.subscription-section__grid,
	.care-story__grid {
		grid-template-columns: 1fr;
	}

	.lead-hero__grid {
		gap: 54px;
	}

	.lead-hero__copy {
		max-width: 650px;
	}

	.hero-h1 {
		font-size: clamp(45px, 8.5vw, 68px);
	}

	.video-stage {
		max-width: 760px;
	}

	.subscription-section,
	.pricing-section,
	.care-story {
		min-height: auto;
	}

	.subscription-section__grid {
		max-width: 720px;
	}

	.hero-r {
		grid-row: 2;
	}

	.pricing-grid {
		grid-template-columns: 1fr;
		max-width: 760px;
		margin-inline: auto;
	}

	.price-card {
		min-height: 0;
	}

	.care-story__media {
		max-width: 680px;
		margin-inline: auto;
	}

	.care-story__media img {
		max-height: 760px;
	}
}

@media (max-width: 782px) {
	body.admin-bar .lead-nav {
		top: 46px;
	}
}

@media (max-width: 640px) {
	html {
		scroll-padding-top: 66px;
	}

	.section-shell {
		width: min(100% - 32px, 560px);
	}

	.lead-nav {
		height: 66px;
		padding-inline: 16px;
		gap: 12px;
	}

	.nav-logo__image {
		height: 25px;
	}

	.lead-nav__actions {
		gap: 8px;
	}

	.lead-nav__phone {
		display: none;
	}

	.nav-pill {
		min-height: 40px;
		padding: 8px 14px;
		font-size: 11px;
	}

	.lead-hero {
		padding: 106px 0 66px;
	}

	.lead-hero__grid {
		gap: 46px;
	}

	.eyebrow {
		margin-bottom: 24px;
		padding: 8px 12px;
		font-size: 9px;
	}

	.hero-h1 {
		font-size: clamp(36px, 11.5vw, 54px);
		line-height: 1.05;
	}

	.hero-h1 .wave::after {
		height: 3px;
	}

	.video-stage {
		padding: 8px;
		border-radius: 18px 18px 24px 18px;
		box-shadow: 5px 6px 0 rgba(69, 39, 128, 0.14), 0 12px 30px rgba(43, 24, 87, 0.1);
	}

	.video-stage::before {
		top: -2px;
		right: auto;
		bottom: auto;
		left: 22px;
		width: 62px;
		height: 3px;
		border-radius: 999px;
	}

	.video-frame {
		border-width: 1px;
		border-radius: 12px 12px 17px 12px;
	}

	.video-stage__orbit--one {
		width: 58px;
		height: 58px;
		right: -23px;
		top: -25px;
	}

	.video-stage__orbit--two {
		display: none;
	}

	.video-stage__spark {
		right: 13px;
		bottom: -14px;
		width: 28px;
		height: 28px;
		font-size: 15px;
	}

	.subscription-section,
	.pricing-section,
	.care-story {
		padding-top: 88px;
	}

	.subscription-section {
		padding-bottom: 78px;
	}

	.subscription-section__grid {
		gap: 60px;
	}

	.subscription-card {
		padding: 28px 20px;
		border-radius: 23px;
	}

	.subscription-card h2,
	.pricing-heading h2 {
		font-size: clamp(27px, 8.5vw, 38px);
	}

	.subscription-card__intro {
		font-size: 16px;
	}

	.form-field input {
		height: 52px;
	}

	.phone-field__prefix {
		padding-left: 12px;
		font-size: 13px;
	}

	.hero-r {
		padding: 8px;
		border-radius: 21px 21px 28px 21px;
		box-shadow: 5px 6px 0 rgba(69, 39, 128, 0.12), 0 12px 30px rgba(43, 24, 87, 0.1);
	}

	.hero-r::before {
		top: -2px;
		right: 24px;
		bottom: auto;
		left: auto;
		width: 64px;
		height: 3px;
		border-radius: 999px;
	}

	.chat-card {
		padding: 22px 15px;
		border-radius: 17px 17px 23px 17px;
	}

	.chat-avatar {
		width: 38px;
		height: 38px;
		flex-basis: 38px;
	}

	.chat-name {
		font-size: 12px;
	}

	.message {
		max-width: 94%;
		padding: 9px 11px;
		font-size: 11px;
	}

	.floating-badge {
		padding: 8px 10px;
		font-size: 10px;
	}

	.floating-badge--route {
		right: 9px;
	}

	.floating-badge--done {
		left: -8px;
	}

	.pricing-section {
		padding-bottom: 82px;
	}

	.pricing-section::before {
		display: none;
	}

	.pricing-heading {
		gap: 13px;
		margin-bottom: 26px;
	}

	.section-number {
		width: 44px;
		height: 44px;
		flex-basis: 44px;
		font-size: 12px;
	}

	.pricing-note {
		align-items: flex-start;
		margin-bottom: 28px;
		padding: 14px;
		font-size: 13px;
	}

	.pricing-grid {
		gap: 24px;
	}

	.price-card {
		padding: 24px 18px 22px;
		border-radius: 22px 22px 38px 22px;
		box-shadow: 7px 8px 0 var(--brand-soft);
	}

	.price-card--popular {
		box-shadow: 7px 8px 0 var(--orange);
	}

	.price-card__top {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.plan-badge {
		width: fit-content;
		min-width: 118px;
		padding: 8px 14px;
	}

	.price-card h3 {
		font-size: 21px;
	}

	.price-card > p,
	.plan-features li {
		font-size: 14px;
	}

	.plan-features small {
		display: block;
		margin-top: 3px;
	}

	.price-card__price {
		align-items: flex-end;
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 7px 10px;
		font-size: 15px;
		white-space: normal;
	}

	.care-story__grid {
		gap: 50px;
		padding-bottom: 74px;
	}

	.hero-lede {
		font-size: 23px;
	}

	.hook {
		grid-template-columns: 40px 1fr;
		gap: 12px;
	}

	.hook-icon {
		width: 38px;
		height: 38px;
		font-size: 18px;
	}

	.social-links--desktop {
		display: none;
	}

	.social-links--mobile {
		display: grid;
		grid-template-columns: 1fr 1fr;
		width: 100%;
		margin-top: -30px;
	}

	.social-links--mobile a {
		min-width: 0;
		gap: 12px;
	}

	.care-story__media {
		padding: 10px;
		border-radius: 80px 22px 22px 22px;
		box-shadow: 11px 13px 0 var(--ink);
	}

	.care-story__media img {
		border-radius: 70px 15px 15px 15px;
	}

	.care-story__sticker {
		left: -10px;
		top: 30px;
		font-size: 12px;
	}

	.lead-footer__inner {
		gap: 14px;
		font-size: 11px;
	}

	.lead-footer img {
		height: 21px;
	}

	.success-modal__panel {
		padding: 34px 22px 24px;
	}
}

@media (max-width: 380px) {
	.nav-pill__dot {
		display: none;
	}

	.nav-pill {
		padding-inline: 12px;
	}

	.lead-footer__inner {
		flex-wrap: wrap;
	}

	.lead-footer img {
		width: 100%;
		object-fit: contain;
		object-position: left;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	.reveal {
		opacity: 1 !important;
		transform: none !important;
	}
}
