@import url('https://fonts.googleapis.com/css?family=Josefin+Sans:400,700|Playfair+Display');

.demo-2 {
	font-family: 'Josefin Sans', sans-serif;
	--color-text: #000;
	--color-bg: #9c9c9c;
	--color-link: #8958b1;
	--color-link-hover: #fff;
	--color-info: #000;
	--hero-bg: #0b1f33;
	--hero-bg-deep: #071523;
	--hero-wallpaper: url('../img/blueprint_wallpaper_home.png');
	--hero-grid-minor: rgba(247, 247, 245, 0.06);
	--hero-grid-major: rgba(247, 247, 245, 0.11);
	--hero-blueprint-wash: rgba(53, 92, 125, 0.18);
	--hero-schematic-line: rgba(247, 247, 245, 0.18);
	--hero-schematic-soft: rgba(53, 92, 125, 0.16);
	--hero-ground-glow: rgba(53, 92, 125, 0.2);
	--hero-ground-line: rgba(247, 247, 245, 0.24);
	--hero-title-color: #f7f7f5;
	--hero-ground-bottom: clamp(3.5rem, 10vh, 5.75rem);
	--rainbow-vermilion: #c85741;
	--rainbow-marigold: #e4a847;
	--rainbow-citron: #c7d964;
	--rainbow-verdigris: #4f998f;
	--rainbow-cerulean: #5b9bcb;
	--rainbow-orchid: #9b77cb;
	--brand-night: #061525;
	--brand-deep-blue: #0a2036;
	--brand-blue-grey: #4f6474;
	--brand-blue-grey-light: #7f929e;
	--brand-orange-red: #ff4b2b;
	--brand-alpine-white: #f8fbff;
	--brand-deep-navy: #0b1f33;
	--brand-slate-blue: #355c7d;
	--brand-warm-gray: #d9d9d9;
	--brand-off-white: #f7f7f5;
	--brand-signal-orange: #f28c28;
	--page-ink: #13263a;
	--page-muted: #526374;
	--page-border: rgba(11, 31, 51, 0.12);
	--page-surface: rgba(255, 255, 255, 0.82);
	--page-shadow: 0 20px 42px rgba(11, 31, 51, 0.08);
}

.content__title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2rem, 6.4vw, 6.2rem);
	margin: 0;
	position: relative;
	font-weight: normal;
}

.content__subtitle {
	font-size: 1.45rem;
	padding: 1rem 0;
	letter-spacing: 2px;
	text-indent: 2px;
}

.content__subtitle::after {
	content: '\2014';
	position: relative;
	display: block;
	font-size: 2.75rem;
	text-align: center;
}

#home .content__title {
	color: var(--hero-title-color);
	letter-spacing: 0.02em;
	line-height: 0.95;
	text-align: center;
	text-transform: none;
	text-shadow: 0 0 24px rgba(247, 247, 245, 0.14), 0 0 52px rgba(53, 92, 125, 0.18);
}

#home .content__subtitle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.5rem;
	border: 1px solid rgba(232, 247, 255, 0.28);
	border-radius: 999px;
	background: rgba(4, 27, 48, 0.52);
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset, 0 18px 45px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	color: rgba(244, 251, 255, 0.92);
	font-size: clamp(0.78rem, 1.6vw, 1.05rem);
	font-style: normal;
	letter-spacing: 0.28em;
	text-indent: 0.28em;
	text-transform: uppercase;
	text-shadow: 0 0 18px rgba(180, 227, 255, 0.16);
}

#home .content__subtitle::after {
	content: none;
}

.sms-chat-entry {
	grid-area: demos;
	display: flex;
	align-self: start;
	justify-self: end;
	line-height: 1;
	margin: 0;
	pointer-events: auto;
}

.menu-trigger {
	display: none;
}

.chat-trigger {
	position: relative;
	display: inline-block;
	align-self: start;
	padding: 0.72rem 1rem;
	border: 1px solid rgba(242, 140, 40, 0.42);
	border-radius: 999px;
	background: rgba(6, 21, 37, 0.84);
	box-shadow: 0 14px 34px rgba(2, 8, 19, 0.34);
	color: var(--brand-alpine-white);
	cursor: pointer;
	font-family: inherit;
	pointer-events: auto;
	white-space: nowrap;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
	appearance: none;
	-webkit-appearance: none;
}

.chat-trigger:hover,
.chat-trigger:focus {
	background: rgba(242, 140, 40, 0.18);
	border-color: rgba(242, 140, 40, 0.84);
	color: var(--brand-alpine-white);
	transform: translateY(-1px);
}

.sms-chat-modal {
	position: fixed;
	inset: 0;
	z-index: 2000;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

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

.sms-chat-modal--open {
	opacity: 1;
	pointer-events: none;
}

.sms-chat-modal[aria-hidden="true"] .sms-chat-modal__panel {
	pointer-events: none;
}

.sms-chat-modal__backdrop {
	position: absolute;
	inset: 0;
	background: transparent;
	pointer-events: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

.sms-chat-modal__panel {
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	width: min(28rem, calc(100vw - 2rem));
	height: min(36rem, calc(100vh - 2rem));
	height: min(36rem, calc(100dvh - 2rem));
	max-height: calc(100vh - 2rem);
	max-height: calc(100dvh - 2rem);
	padding: 1.2rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 1.5rem;
	background: rgba(14, 24, 40, 0.76);
	box-shadow: 0 22px 55px rgba(5, 10, 18, 0.45);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	color: #f7fbff;
	overflow-x: hidden;
	overflow-y: auto;
	pointer-events: auto;
}

.sms-chat-modal__close {
	position: absolute;
	top: 0.9rem;
	right: 0.9rem;
	width: 2rem;
	height: 2rem;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: inherit;
	font-size: 1.3rem;
	line-height: 1;
}

.sms-chat-modal__header {
	padding-right: 2.25rem;
}

.sms-chat-modal__eyebrow {
	font-size: 0.72rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(235, 244, 255, 0.68);
}

.sms-chat-modal__title {
	margin: 0.4rem 0 0;
	font-family: 'Playfair Display', serif;
	font-size: 1.9rem;
	font-weight: normal;
}

.sms-chat-modal__status {
	margin: 0.5rem 0 0;
	font-size: 0.95rem;
	color: rgba(235, 244, 255, 0.78);
}

.sms-chat-modal__setup {
	display: grid;
	gap: 1rem;
	margin-top: 1.5rem;
	padding: 1rem;
	border-radius: 1.15rem;
	background: rgba(255, 255, 255, 0.07);
}

.sms-chat-modal__setup-copy {
	margin: 0;
	line-height: 1.6;
	color: rgba(247, 251, 255, 0.92);
}

.sms-chat-modal__field {
	display: block;
	width: 100%;
	padding: 0.85rem 1rem;
	border: 1px solid rgba(248, 251, 255, 0.52);
	border-radius: 1rem;
	background: rgba(3, 10, 20, 0.34);
	background-clip: padding-box;
	box-shadow:
		inset 0 0 0 1px rgba(248, 251, 255, 0.22),
		0 0 0 1px rgba(255, 75, 43, 0.62),
		0 0 18px rgba(255, 75, 43, 0.16);
	color: inherit;
	appearance: none;
	-webkit-appearance: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.sms-chat-modal__action,
.sms-chat-modal__button {
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	color: inherit;
	font-size: 0.9rem;
	letter-spacing: 0.08em;
	text-transform: lowercase;
	padding: 0.75rem 1.15rem;
}

.sms-chat-modal__button--secondary {
	background: transparent;
}

.sms-chat-modal__button--danger {
	border-color: rgba(255, 138, 138, 0.38);
	background: rgba(120, 25, 25, 0.18);
	color: rgba(255, 220, 220, 0.96);
}

.sms-chat-modal__thread {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-height: 0;
	margin-top: 1.25rem;
	overflow-x: hidden;
	overflow-y: auto;
}

.sms-chat-modal__prompt {
	display: grid;
	flex: 0 0 auto;
	gap: 0.75rem;
	margin-bottom: 1rem;
	padding: 1rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.06);
}

.sms-chat-modal__prompt-copy {
	margin: 0;
	line-height: 1.6;
	color: rgba(247, 251, 255, 0.88);
}

.sms-chat-modal__prompt-form {
	display: grid;
	gap: 0.7rem;
}

.sms-chat-modal__honeypot {
	position: absolute;
	left: -10000px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.sms-chat-modal__input-frame {
	display: block;
	width: 100%;
	border: 1px solid rgba(248, 251, 255, 0.62);
	border-radius: 1rem;
	background: rgba(3, 10, 20, 0.34);
	background-clip: padding-box;
	box-shadow:
		inset 0 0 0 1px rgba(248, 251, 255, 0.24),
		inset 0 0 0 2px rgba(255, 75, 43, 0.78),
		0 0 20px rgba(255, 75, 43, 0.18);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.sms-chat-modal__input-frame:focus-within {
	border-color: rgba(248, 251, 255, 0.82);
	box-shadow:
		inset 0 0 0 1px rgba(248, 251, 255, 0.34),
		inset 0 0 0 2px rgba(255, 75, 43, 0.94),
		0 0 0 2px rgba(255, 75, 43, 0.24),
		0 0 28px rgba(255, 75, 43, 0.28);
}

.sms-chat-modal__input-frame--email .sms-chat-modal__input {
	min-height: 8rem;
}

.sms-chat-modal__error {
	margin: 0;
	font-size: 0.82rem;
	color: rgba(255, 154, 154, 0.95);
}

.sms-chat-modal__messages {
	flex: 1;
	min-height: 0;
	overflow-y: auto;
	padding-right: 0.35rem;
}

.sms-chat-modal__message {
	display: flex;
	margin-bottom: 0.85rem;
}

.sms-chat-modal__message--outgoing {
	justify-content: flex-end;
}

.sms-chat-modal__bubble {
	max-width: 84%;
	padding: 0.8rem 0.95rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.08);
	line-height: 1.45;
}

.sms-chat-modal__message--outgoing .sms-chat-modal__bubble {
	background: rgba(125, 169, 232, 0.32);
}

.sms-chat-modal__message--system .sms-chat-modal__bubble {
	background: rgba(255, 255, 255, 0.03);
	color: rgba(247, 251, 255, 0.75);
}

.sms-chat-modal__bubble--failed {
	border: 1px solid rgba(255, 125, 125, 0.48);
}

.sms-chat-modal__meta {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(247, 251, 255, 0.65);
}

.sms-chat-modal__composer {
	display: grid;
	flex: 0 0 auto;
	gap: 0.7rem;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sms-chat-modal__postchat {
	display: grid;
	flex: 0 0 auto;
	gap: 0.7rem;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sms-chat-modal__label {
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(247, 251, 255, 0.68);
}

.sms-chat-modal__input {
	display: block;
	width: 100%;
	min-height: 5.4rem;
	resize: none;
	padding: 0.85rem 1rem;
	border: 0;
	border-radius: 1rem;
	background: transparent;
	background-clip: padding-box;
	box-shadow: none;
	color: inherit;
	appearance: none;
	-webkit-appearance: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.sms-chat-modal__input:focus {
	outline: none;
}

.sms-chat-modal__field:focus {
	outline: none;
	border-color: rgba(248, 251, 255, 0.72);
	box-shadow:
		inset 0 0 0 1px rgba(248, 251, 255, 0.34),
		0 0 0 1px rgba(255, 75, 43, 0.9),
		0 0 0 3px rgba(255, 75, 43, 0.3),
		0 0 28px rgba(255, 75, 43, 0.26);
}

.sms-chat-modal__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.sms-chat-modal__actions--setup {
	margin-top: 0.2rem;
}

.sms-chat-modal__button--push {
	margin-left: auto;
}

.sms-chat-modal__action:disabled,
.sms-chat-modal__button:disabled,
.sms-chat-modal__field:disabled,
.sms-chat-modal__input:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.sms-chat-modal__retry {
	margin-top: 0.7rem;
	border: 0;
	background: transparent;
	color: rgba(255, 205, 205, 0.96);
	font-size: 0.8rem;
	letter-spacing: 0.08em;
	text-transform: lowercase;
	text-decoration: underline;
	text-underline-offset: 0.16em;
}

.grim {
	display: none;
}

.content--switch {
	background-size: cover;
	scroll-margin-top: 5.75rem;
}

.content--switch::after {
	content: '';
	pointer-events: none;
	position: absolute;
	width: 100%;
	height: 20%;
	bottom: 0;
	background: linear-gradient(transparent, #000);
}

#home {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	align-items: center;
	justify-content: center;
	background-color: var(--hero-bg);
	background-image:
		radial-gradient(circle at 16% 18%, rgba(242, 140, 40, 0.16), transparent 25%),
		radial-gradient(circle at 84% 22%, rgba(53, 92, 125, 0.24), transparent 30%),
		linear-gradient(145deg, rgba(7, 27, 45, 0.22) 0%, rgba(3, 14, 28, 0.72) 100%),
		radial-gradient(circle at 50% 10%, rgba(247, 247, 245, 0.08), transparent 28%),
		var(--hero-wallpaper);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.js #home.content--switch {
	display: flex;
}

.js #home.content--switch:not(.content--switch-current) {
	position: fixed;
	inset: 0;
	z-index: -1;
	visibility: hidden;
	pointer-events: none;
}

#about,
#pricing,
#testimonials,
#product {
	isolation: isolate;
	color: var(--brand-alpine-white);
	text-align: center;
}

#about .content__title,
#pricing .content__title,
#testimonials .content__title,
#product .content__title {
	color: var(--brand-alpine-white);
	text-shadow: 0 12px 34px rgba(2, 8, 19, 0.42);
}

#about .content__subtitle,
#pricing .content__subtitle,
#testimonials .content__subtitle,
#product .content__subtitle {
	color: rgba(248, 251, 255, 0.78);
	text-shadow: 0 8px 24px rgba(2, 8, 19, 0.32);
}

#about .content__subtitle::after,
#pricing .content__subtitle::after,
#testimonials .content__subtitle::after,
#product .content__subtitle::after {
	color: var(--brand-orange-red);
	text-shadow: 0 0 22px rgba(255, 75, 43, 0.34);
}

#home.content--switch::after {
	background: linear-gradient(180deg, rgba(3, 14, 28, 0) 10%, rgba(3, 14, 28, 0.18) 58%, var(--hero-bg-deep) 100%);
}

#home::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		repeating-linear-gradient(0deg, transparent 0 31px, var(--hero-grid-minor) 31px 32px),
		repeating-linear-gradient(90deg, transparent 0 31px, var(--hero-grid-minor) 31px 32px),
		repeating-linear-gradient(0deg, transparent 0 127px, var(--hero-grid-major) 127px 128px),
		repeating-linear-gradient(90deg, transparent 0 127px, var(--hero-grid-major) 127px 128px),
		radial-gradient(circle, transparent 56%, var(--hero-schematic-line) 56.8%, var(--hero-schematic-line) 58.2%, transparent 59%) 80% 27% / clamp(7rem, 15vw, 11rem) clamp(7rem, 15vw, 11rem) no-repeat,
		radial-gradient(circle, transparent 34%, var(--hero-schematic-soft) 34.8%, var(--hero-schematic-soft) 36.2%, transparent 37%) 80% 27% / clamp(7rem, 15vw, 11rem) clamp(7rem, 15vw, 11rem) no-repeat,
		linear-gradient(var(--hero-schematic-line), var(--hero-schematic-line)) 11% 20% / clamp(10rem, 23vw, 17rem) 1px no-repeat,
		linear-gradient(var(--hero-schematic-line), var(--hero-schematic-line)) 11% 20% / 1px clamp(7rem, 16vh, 12rem) no-repeat,
		linear-gradient(var(--hero-schematic-line), var(--hero-schematic-line)) 11% 44% / clamp(10rem, 23vw, 17rem) 1px no-repeat,
		linear-gradient(var(--hero-schematic-line), var(--hero-schematic-line)) 31% 20% / 1px clamp(7rem, 16vh, 12rem) no-repeat,
		linear-gradient(var(--hero-schematic-soft), var(--hero-schematic-soft)) 14% 27% / clamp(8rem, 18vw, 13rem) 1px no-repeat,
		linear-gradient(var(--hero-schematic-soft), var(--hero-schematic-soft)) 14% 34% / clamp(8rem, 18vw, 13rem) 1px no-repeat,
		linear-gradient(var(--hero-schematic-soft), var(--hero-schematic-soft)) 19% 22% / 1px clamp(5rem, 12vh, 8rem) no-repeat,
		linear-gradient(var(--hero-schematic-line), var(--hero-schematic-line)) 64% 68% / clamp(11rem, 21vw, 16rem) 1px no-repeat,
		linear-gradient(var(--hero-schematic-line), var(--hero-schematic-line)) 64% 68% / 1px clamp(4rem, 10vh, 6rem) no-repeat,
		linear-gradient(var(--hero-schematic-line), var(--hero-schematic-line)) 84% 68% / 1px clamp(4rem, 10vh, 6rem) no-repeat,
		linear-gradient(var(--hero-schematic-line), var(--hero-schematic-line)) 64% 82% / clamp(11rem, 21vw, 16rem) 1px no-repeat,
		linear-gradient(135deg, transparent 48.8%, var(--hero-schematic-soft) 49.4%, var(--hero-schematic-soft) 50.6%, transparent 51.2%) 72% 65% / clamp(8rem, 14vw, 11rem) clamp(8rem, 14vw, 11rem) no-repeat,
		radial-gradient(circle at 50% 50%, var(--hero-blueprint-wash), transparent 68%);
	opacity: 0.92;
	pointer-events: none;
}

#home > * {
	position: relative;
	z-index: 1;
}

#home .content__copy {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	min-height: 100vh;
	padding: clamp(6rem, 14vh, 8rem) 1.25rem;
}

.content__copy--assembled {
	text-align: center;
}

.content__letter-stage {
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	width: min(100%, 70rem);
	min-height: clamp(24rem, 62vh, 36rem);
	padding-top: clamp(1rem, 4vh, 2.5rem);
}

.content__letter-stage::before {
	content: '';
	position: absolute;
	inset: 8% 10% 22%;
	background:
		radial-gradient(circle at center, rgba(180, 227, 255, 0.12), transparent 38%),
		radial-gradient(circle, transparent 54%, rgba(230, 246, 255, 0.18) 54.8%, rgba(230, 246, 255, 0.18) 55.8%, transparent 56.6%) center / clamp(16rem, 34vw, 24rem) clamp(16rem, 34vw, 24rem) no-repeat,
		radial-gradient(circle, transparent 69%, rgba(166, 220, 255, 0.12) 69.8%, rgba(166, 220, 255, 0.12) 70.8%, transparent 71.6%) center / clamp(23rem, 50vw, 37rem) clamp(23rem, 50vw, 37rem) no-repeat,
		linear-gradient(90deg, transparent, rgba(230, 246, 255, 0.22), transparent) center / min(78vw, 42rem) 1px no-repeat,
		linear-gradient(transparent, rgba(230, 246, 255, 0.2), transparent) center / 1px clamp(10rem, 30vh, 16rem) no-repeat;
	opacity: 0.8;
	pointer-events: none;
}

.content__ground {
	position: absolute;
	left: 50%;
	bottom: var(--hero-ground-bottom);
	width: min(26rem, 56vw);
	height: clamp(3.25rem, 8vh, 4.75rem);
	transform: translateX(-50%);
	pointer-events: none;
}

.content__ground::before,
.content__ground::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.content__ground::before {
	bottom: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: radial-gradient(ellipse at center, var(--hero-ground-glow) 0%, rgba(103, 190, 255, 0.12) 48%, transparent 74%);
	filter: blur(12px);
}

.content__ground::after {
	bottom: 0.75rem;
	width: min(24rem, 52vw);
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--hero-ground-line), transparent);
	box-shadow: 0 0 18px rgba(214, 241, 255, 0.22);
}

.content__title--assembled {
	position: relative;
	z-index: 1;
}

[data-home-title-variant='stacked'] [data-home-title] {
	--title-letter-gap: 0.035em;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-areas:
		'build'
		'the'
		'change';
	align-items: center;
	justify-items: center;
	row-gap: clamp(0.15rem, 1.6vh, 0.7rem);
	width: min(92vw, 32rem);
	font-size: clamp(3.5rem, 9vw, 6.25rem);
}

[data-home-title-variant='horizontal'] [data-home-title] {
	--title-letter-gap: 0.035em;
	--title-word-gap: clamp(0.6rem, 2vw, 1.4rem);
	display: grid;
	grid-template-columns: auto auto;
	grid-template-areas:
		'build build'
		'the change';
	align-items: end;
	justify-content: center;
	row-gap: clamp(0.25rem, 1.4vw, 0.85rem);
	column-gap: var(--title-word-gap);
	width: min(92vw, 42rem);
	font-size: clamp(3.5rem, 9vw, 6.25rem);
}

[data-home-title-variant='inline'] [data-home-title] {
	--title-letter-gap: 0.035em;
	--title-word-gap: clamp(0.65rem, 2vw, 1.5rem);
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-end;
	justify-content: center;
	gap: var(--title-word-gap);
	width: min(96vw, 64rem);
	font-size: clamp(2.75rem, 6vw, 5.25rem);
}

[data-home-title-variant='horizontal'] [data-home-title] .content__title-word,
[data-home-title-variant='stacked'] [data-home-title] .content__title-word,
[data-home-title-variant='inline'] [data-home-title] .content__title-word {
	display: inline-flex;
	align-items: flex-end;
	justify-content: center;
	gap: var(--title-letter-gap);
}

[data-home-title-variant='stacked'] [data-home-title] .content__title-word[data-home-title-word='build'] {
	grid-area: build;
}

[data-home-title-variant='stacked'] [data-home-title] .content__title-word[data-home-title-word='the'] {
	grid-area: the;
}

[data-home-title-variant='stacked'] [data-home-title] .content__title-word[data-home-title-word='change'] {
	grid-area: change;
}

[data-home-title-variant='horizontal'] [data-home-title] .content__title-word[data-home-title-word='the'] {
	justify-self: end;
}

[data-home-title-variant='horizontal'] [data-home-title] .content__title-word[data-home-title-word='change'] {
	justify-self: start;
}

[data-home-title-variant='horizontal'] [data-home-title] .content__title-word[data-home-title-word='build'] {
	grid-area: build;
	justify-self: center;
}

[data-home-title-variant='horizontal'] [data-home-title] .content__title-word[data-home-title-word='the'] {
	grid-area: the;
}

[data-home-title-variant='horizontal'] [data-home-title] .content__title-word[data-home-title-word='change'] {
	grid-area: change;
}

[data-home-title-variant='horizontal'] [data-home-title] .content__title-slot,
[data-home-title-variant='stacked'] [data-home-title] .content__title-slot,
[data-home-title-variant='inline'] [data-home-title] .content__title-slot {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	width: auto;
	height: 0.9em;
}

.content__title-letter {
	position: relative;
	display: block;
	width: auto;
	text-align: center;
	transform-origin: 50% 100%;
	will-change: transform, opacity;
}

[data-home-title-variant='horizontal'] [data-home-title] .content__title-letter,
[data-home-title-variant='stacked'] [data-home-title] .content__title-letter,
[data-home-title-variant='inline'] [data-home-title] .content__title-letter {
	line-height: 0.9;
}

#about {
	background-color: var(--brand-night);
	background-image:
		linear-gradient(115deg, rgba(255, 75, 43, 0.34) 0 16%, transparent 16% 100%),
		radial-gradient(circle at 18% 22%, rgba(255, 75, 43, 0.24), transparent 28%),
		radial-gradient(circle at 78% 20%, rgba(127, 146, 158, 0.22), transparent 36%),
		linear-gradient(145deg, #0c2b49 0%, var(--brand-night) 58%, #020813 100%);
}

#blog {
	align-items: stretch;
	justify-content: flex-start;
	padding: clamp(4.5rem, 8vw, 7rem) clamp(1rem, 4vw, 4rem);
	background-color: #4f6474;
	background-image:
		radial-gradient(circle at 18% 12%, rgba(166, 190, 207, 0.42), transparent 38%),
		radial-gradient(circle at 82% 18%, rgba(45, 72, 96, 0.48), transparent 42%),
		linear-gradient(135deg, #7f929e 0%, #4f6474 44%, #263849 100%);
}

#blog.content--switch::after {
	content: none;
}

.blog-reader {
	--blog-ink: #f8fbff;
	--blog-muted: rgba(232, 240, 250, 0.7);
	--blog-blue: #061525;
	--blog-blue-mid: #0a2036;
	--blog-blue-card: rgba(8, 27, 47, 0.88);
	--blog-orange: #ff4b2b;
	--blog-orange-soft: rgba(255, 75, 43, 0.22);
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	width: min(100%, 72rem);
	padding: clamp(1rem, 2.6vw, 1.75rem);
	border: 1px solid rgba(255, 75, 43, 0.32);
	border-radius: 1.35rem;
	background:
		radial-gradient(circle at 12% 0%, var(--blog-orange-soft), transparent 32%),
		radial-gradient(circle at 90% 18%, rgba(91, 155, 203, 0.16), transparent 34%),
		linear-gradient(145deg, rgba(11, 36, 61, 0.96), var(--blog-blue) 58%, #020813 100%);
	box-shadow: 0 28px 82px rgba(0, 8, 18, 0.54), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
	color: var(--blog-ink);
	overflow: visible;
}

.blog-reader__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
}

.blog-reader__header > div {
	display: grid;
	gap: 0.65rem;
}

.blog-reader__title {
	font-size: clamp(2.35rem, 6vw, 5rem);
	line-height: 0.92;
}

.blog-reader__subtitle {
	padding: 0;
	font-size: clamp(0.8rem, 1.6vw, 1rem);
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.blog-reader__subtitle::after {
	content: none;
}

.blog-reader__source,
.blog-reader__link,
.blog-reader__button {
	border: 1px solid rgba(255, 75, 43, 0.5);
	border-radius: 999px;
	background: rgba(255, 75, 43, 0.12);
	color: var(--blog-ink);
	font-size: 0.78rem;
	letter-spacing: 0.11em;
	line-height: 1;
	text-transform: lowercase;
	white-space: nowrap;
}

.blog-reader__source,
.blog-reader__link {
	display: inline-flex;
	align-items: center;
	padding: 0.75rem 1rem;
}

.blog-reader__button {
	padding: 0.75rem 1rem;
}

.blog-reader__button:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.blog-reader__status {
	margin: 0;
	color: var(--blog-muted);
	font-size: 0.95rem;
}

.blog-reader__posts {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	overflow: visible;
	min-height: auto;
	padding: 0.15rem 0 0 0;
}

.blog-reader__post,
.blog-reader__fallback {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	width: 100%;
	padding: clamp(1rem, 2vw, 1.35rem);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-left: 0.42rem solid var(--blog-orange);
	border-radius: 1rem;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 36%),
		var(--blog-blue-card);
	box-shadow: 0 16px 38px rgba(0, 5, 14, 0.34);
	overflow-wrap: anywhere;
	white-space: normal;
}

.blog-reader__post--featured {
	border-color: rgba(255, 75, 43, 0.34);
	border-left-color: var(--blog-orange);
	background:
		radial-gradient(circle at top right, rgba(255, 75, 43, 0.24), transparent 42%),
		linear-gradient(135deg, #0d2a47, #061525 62%, #020813);
	color: var(--blog-ink);
}

.blog-reader__meta {
	font-size: 0.72rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--blog-muted);
}

.blog-reader__post--featured .blog-reader__meta {
	color: rgba(248, 251, 255, 0.68);
}

.blog-reader__post-title {
	margin: 0;
	font-family: 'Playfair Display', serif;
	font-size: clamp(1.25rem, 2.6vw, 2.2rem);
	font-weight: normal;
	line-height: 1.12;
}

.blog-reader__excerpt,
.blog-reader__fallback p {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.55;
}

.blog-reader__preview {
	--blog-media-max: 40.5rem;
	display: grid;
	gap: 0.95rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: inherit;
	opacity: 0.88;
}

.blog-reader__preview[hidden] {
	display: none;
}

.blog-reader__preview > * {
	margin: 0;
}

.blog-reader__preview p,
.blog-reader__preview li,
.blog-reader__preview figcaption {
	font-size: 0.96rem;
	line-height: 1.65;
}

.blog-reader__preview h2,
.blog-reader__preview h3,
.blog-reader__preview h4 {
	font-family: 'Playfair Display', serif;
	font-weight: normal;
	line-height: 1.08;
	letter-spacing: 0;
	color: var(--blog-ink);
}

.blog-reader__preview h2 {
	font-size: clamp(1.35rem, 2.8vw, 1.95rem);
}

.blog-reader__preview h3,
.blog-reader__preview h4 {
	font-size: clamp(1.1rem, 2.1vw, 1.45rem);
}

.blog-reader__preview ul,
.blog-reader__preview ol {
	display: grid;
	gap: 0.45rem;
	margin: 0;
	padding-left: 1.35rem;
}

.blog-reader__preview blockquote {
	padding: 0.95rem 1rem;
	border-left: 0.28rem solid var(--blog-orange);
	border-radius: 0.85rem;
	background: rgba(255, 255, 255, 0.05);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
	font-family: 'Playfair Display', serif;
	font-size: 1.08rem;
	line-height: 1.5;
	color: rgba(248, 251, 255, 0.94);
}

.blog-reader__preview figure {
	display: grid;
	gap: 0.55rem;
	justify-self: center;
	width: min(100%, var(--blog-media-max));
}

.blog-reader__preview img {
	display: block;
	width: min(100%, var(--blog-media-max));
	height: auto;
	margin-inline: auto;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 0.95rem;
	background: rgba(255, 255, 255, 0.02);
	box-shadow: 0 16px 36px rgba(0, 5, 14, 0.28);
}

.blog-reader__preview figcaption {
	color: var(--blog-muted);
}

.blog-reader__preview hr {
	width: 100%;
	height: 1px;
	border: 0;
	background: linear-gradient(90deg, rgba(255, 75, 43, 0.78), rgba(255, 255, 255, 0.08));
}

.blog-reader__preview a {
	color: inherit;
	text-decoration: underline;
	text-decoration-color: rgba(255, 75, 43, 0.62);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

.blog-reader__preview pre,
.blog-reader__preview code {
	font-family: ui-monospace, SFMono-Regular, SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
	font-size: 0.9rem;
}

.blog-reader__preview pre {
	padding: 0.9rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 0.85rem;
	background: rgba(0, 0, 0, 0.24);
	overflow-x: auto;
}

.blog-reader__post--featured .blog-reader__preview {
	border-top-color: rgba(255, 255, 255, 0.15);
}

.blog-reader__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin-top: auto;
}

.blog-reader__post--featured .blog-reader__button,
.blog-reader__post--featured .blog-reader__link {
	border-color: rgba(255, 75, 43, 0.58);
	background: rgba(255, 75, 43, 0.14);
	color: var(--blog-ink);
}

#pricing {
	background-color: var(--brand-deep-blue);
	background-image:
		radial-gradient(circle at 80% 16%, rgba(255, 75, 43, 0.28), transparent 30%),
		linear-gradient(90deg, transparent 0 48%, rgba(248, 251, 255, 0.08) 48% 49%, transparent 49% 100%),
		linear-gradient(0deg, transparent 0 46%, rgba(127, 146, 158, 0.18) 46% 47%, transparent 47% 100%),
		linear-gradient(135deg, #172f48 0%, var(--brand-deep-blue) 56%, #061525 100%);
}

#testimonials {
	background-color: var(--brand-blue-grey);
	background-image:
		radial-gradient(circle at 20% 18%, rgba(248, 251, 255, 0.22), transparent 30%),
		radial-gradient(circle at 78% 78%, rgba(255, 75, 43, 0.26), transparent 28%),
		linear-gradient(145deg, var(--brand-blue-grey-light) 0%, var(--brand-blue-grey) 42%, #263849 100%);
}

#product {
	background-color: var(--brand-night);
	background-image:
		linear-gradient(135deg, rgba(255, 75, 43, 0.34) 0 1px, transparent 1px) 0 0 / 4.5rem 4.5rem,
		radial-gradient(circle at 16% 78%, rgba(255, 75, 43, 0.24), transparent 28%),
		radial-gradient(circle at 82% 20%, rgba(127, 146, 158, 0.2), transparent 34%),
		linear-gradient(145deg, #0d2a47 0%, var(--brand-night) 64%, #020813 100%);
}

#about,
#blog,
#pricing,
#testimonials,
#product {
	align-items: flex-start;
	justify-content: flex-start;
	padding: clamp(5.5rem, 10vw, 7.25rem) 1rem clamp(3rem, 6vw, 4.5rem);
	color: var(--brand-off-white);
	text-align: left;
}

#about.content--switch::after,
#blog.content--switch::after,
#pricing.content--switch::after,
#testimonials.content--switch::after,
#product.content--switch::after {
	content: none;
}

#about {
	background-color: var(--brand-deep-navy);
	background-image:
		radial-gradient(circle at 12% 12%, rgba(242, 140, 40, 0.18), transparent 24%),
		radial-gradient(circle at 84% 18%, rgba(53, 92, 125, 0.24), transparent 26%),
		linear-gradient(180deg, rgba(217, 217, 217, 0.06) 0%, rgba(11, 31, 51, 0) 18%),
		linear-gradient(180deg, #173049 0%, var(--brand-deep-navy) 100%);
}

#pricing {
	background-color: var(--brand-deep-navy);
	background-image:
		radial-gradient(circle at 82% 14%, rgba(53, 92, 125, 0.24), transparent 24%),
		radial-gradient(circle at 14% 84%, rgba(242, 140, 40, 0.14), transparent 22%),
		linear-gradient(180deg, #173049 0%, var(--brand-deep-navy) 100%);
}

#testimonials {
	background-color: var(--brand-deep-navy);
	background-image:
		radial-gradient(circle at 16% 20%, rgba(53, 92, 125, 0.22), transparent 24%),
		radial-gradient(circle at 86% 82%, rgba(242, 140, 40, 0.16), transparent 18%),
		linear-gradient(180deg, #163148 0%, var(--brand-deep-navy) 100%);
}

#product {
	background-color: var(--brand-deep-navy);
	background-image:
		linear-gradient(135deg, rgba(247, 247, 245, 0.06) 0 1px, transparent 1px) 0 0 / 4.5rem 4.5rem,
		radial-gradient(circle at 82% 18%, rgba(53, 92, 125, 0.24), transparent 24%),
		radial-gradient(circle at 14% 82%, rgba(242, 140, 40, 0.14), transparent 22%),
		linear-gradient(180deg, #173049 0%, var(--brand-deep-navy) 100%);
}

#blog {
	align-items: stretch;
	background-color: var(--brand-deep-navy);
	background-image:
		radial-gradient(circle at 14% 14%, rgba(53, 92, 125, 0.22), transparent 24%),
		radial-gradient(circle at 86% 18%, rgba(242, 140, 40, 0.14), transparent 18%),
		linear-gradient(180deg, #173049 0%, var(--brand-deep-navy) 100%);
}

#about .content__title,
#blog .content__title,
#pricing .content__title,
#testimonials .content__title,
#product .content__title {
	color: var(--brand-off-white);
	text-shadow: none;
}

#about .content__subtitle,
#blog .content__subtitle,
#pricing .content__subtitle,
#testimonials .content__subtitle,
#product .content__subtitle {
	padding: 0;
	color: rgba(247, 247, 245, 0.8);
	font-size: clamp(0.82rem, 1.35vw, 0.96rem);
	letter-spacing: 0.22em;
	text-indent: 0;
	text-transform: uppercase;
	text-shadow: none;
}

#about .content__subtitle::after,
#blog .content__subtitle::after,
#pricing .content__subtitle::after,
#testimonials .content__subtitle::after,
#product .content__subtitle::after {
	content: '';
	display: block;
	width: 3.5rem;
	height: 2px;
	margin-top: 0.95rem;
	background: var(--brand-signal-orange);
}

.section-shell {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 1.4rem;
	width: min(100%, 78rem);
	margin: 0 auto;
}

.section-intro {
	display: grid;
	gap: 0.8rem;
	max-width: 64rem;
}

.section-hero {
	display: grid;
	gap: 1.25rem;
	align-items: start;
}

.portrait-card {
	width: min(100%, 20rem);
	margin: 0;
	padding: 0.65rem;
	justify-self: start;
	border: 1px solid rgba(247, 247, 245, 0.12);
	border-radius: 0.5rem;
	background: rgba(247, 247, 245, 0.06);
	box-shadow: 0 22px 46px rgba(0, 0, 0, 0.24);
}

.portrait-card img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 0.35rem;
}

.section-kicker {
	margin: 0;
	color: rgba(247, 247, 245, 0.72);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.section-kicker--compact {
	margin-bottom: 0.45rem;
}

.section-lead {
	margin: 0;
	max-width: 58rem;
	font-size: clamp(1.04rem, 1.75vw, 1.18rem);
	color: rgba(247, 247, 245, 0.82);
	line-height: 1.68;
}

.section-copy {
	margin: 0;
	color: var(--page-muted);
	line-height: 1.68;
}

.section-note {
	margin: 0;
	max-width: 60rem;
	color: rgba(247, 247, 245, 0.74);
	font-size: 0.94rem;
	line-height: 1.6;
}

.text-nowrap {
	white-space: nowrap;
}

.surface-card {
	display: grid;
	gap: 0.9rem;
	padding: clamp(1rem, 2vw, 1.35rem);
	border: 1px solid var(--page-border);
	border-radius: 0.5rem;
	background: rgba(247, 247, 245, 0.96);
	box-shadow: var(--page-shadow);
}

.surface-card--feature {
	border-color: rgba(53, 92, 125, 0.18);
	background: rgba(247, 247, 245, 0.98);
}

.surface-card--quote {
	background: rgba(247, 247, 245, 0.96);
}

.surface-card .section-kicker,
.surface-card .quote-callout__meta,
.surface-card .section-link {
	color: var(--brand-slate-blue);
}

.section-card__title,
.capability-item h4 {
	margin: 0;
	font-family: 'Playfair Display', serif;
	font-weight: normal;
	color: var(--brand-deep-navy);
	letter-spacing: 0;
	line-height: 1.08;
}

.section-card__title {
	font-size: clamp(1.5rem, 2.5vw, 2.15rem);
}

.section-card__eyebrow {
	margin: 0;
	color: var(--brand-slate-blue);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.about-grid,
.product-layout,
.process-grid,
.pricing-grid,
.testimonial-grid,
.phase-grid,
.comparison-grid,
.capability-list,
.metric-grid {
	display: grid;
	gap: 1rem;
}

.about-grid,
.pricing-grid,
.testimonial-grid,
.process-grid {
	grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

.about-grid--secondary,
.phase-grid,
.comparison-grid {
	grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

.product-layout {
	grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
	align-items: start;
}

.metric-grid {
	grid-template-columns: repeat(auto-fit, minmax(7.25rem, 1fr));
}

.metric {
	display: grid;
	gap: 0.25rem;
	padding: 0.9rem;
	border: 1px solid rgba(53, 92, 125, 0.12);
	border-radius: 0.5rem;
	background: rgba(247, 247, 245, 0.85);
}

.metric__value {
	color: var(--brand-deep-navy);
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	line-height: 0.95;
}

.metric__label {
	color: var(--page-muted);
	font-size: 0.84rem;
	line-height: 1.45;
}

.business-identifiers-card {
	align-content: start;
}

.business-identifiers {
	display: grid;
	margin: 0;
}

.business-identifier {
	display: grid;
	grid-template-columns: minmax(0, 1.65fr) minmax(9rem, 1fr);
	gap: 1rem;
	align-items: baseline;
	padding: 0.8rem 0;
	border-bottom: 1px solid rgba(53, 92, 125, 0.13);
}

.business-identifier:last-child {
	border-bottom: 0;
}

.business-identifier dt {
	color: var(--page-muted);
	font-size: 0.86rem;
	line-height: 1.45;
}

.business-identifier dd {
	margin: 0;
	color: var(--brand-deep-navy);
	font-family: ui-monospace, SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
	font-size: 0.98rem;
	font-weight: 700;
	font-variant-numeric: lining-nums tabular-nums;
	letter-spacing: 0.025em;
	line-height: 1.35;
	text-align: right;
	white-space: nowrap;
}

@media screen and (max-width: 34em) {
	.business-identifier {
		grid-template-columns: 1fr;
		gap: 0.25rem;
	}

	.business-identifier dd {
		text-align: left;
	}
}

.detail-list {
	display: grid;
	gap: 0.55rem;
	margin: 0;
	padding-left: 1.15rem;
	color: var(--page-muted);
	line-height: 1.6;
}

.detail-list li::marker {
	color: var(--brand-signal-orange);
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tag-list li {
	padding: 0.52rem 0.72rem;
	border: 1px solid rgba(53, 92, 125, 0.16);
	border-radius: 999px;
	background: rgba(247, 247, 245, 0.92);
	color: var(--brand-deep-navy);
	font-size: 0.86rem;
	line-height: 1.2;
}

.quote-callout {
	margin: 0;
	font-family: 'Playfair Display', serif;
	font-size: clamp(1.45rem, 2.4vw, 2.05rem);
	line-height: 1.22;
	color: var(--brand-deep-navy);
}

.quote-callout--spaced {
	line-height: 1.29;
}

.quote-callout__meta {
	margin: 0;
	color: rgba(247, 247, 245, 0.72);
	font-size: 0.84rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.section-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.section-link {
	color: var(--brand-off-white);
	font-size: 0.88rem;
	text-decoration: underline;
	text-decoration-color: rgba(242, 140, 40, 0.7);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

.process-card__step {
	margin: 0;
	color: var(--brand-signal-orange);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.capability-list {
	grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
}

.capability-item {
	display: grid;
	gap: 0.5rem;
	padding: 0.95rem;
	border: 1px solid rgba(53, 92, 125, 0.14);
	border-radius: 0.5rem;
	background: rgba(247, 247, 245, 0.84);
}

.capability-item h4 {
	font-size: 1.16rem;
}

.capability-item p {
	margin: 0;
	color: var(--page-muted);
	line-height: 1.58;
}

.comparison-card {
	gap: 1.15rem;
}

.comparison-column {
	display: grid;
	gap: 0.7rem;
	padding: 1rem;
	border: 1px solid rgba(53, 92, 125, 0.12);
	border-radius: 0.5rem;
	background: rgba(255, 255, 255, 0.68);
}

.comparison-column--accent {
	background: rgba(247, 247, 245, 0.96);
	border-color: rgba(53, 92, 125, 0.18);
}

.comparison-column__label {
	margin: 0;
	color: var(--brand-slate-blue);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.pricing-pilot,
.pricing-highlight {
	gap: 1.2rem;
}

.pricing-pilot__header,
.pricing-highlight__header,
.pricing-card__header {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.75rem;
}

.price-block {
	display: grid;
	gap: 0.25rem;
	justify-items: end;
}

.price-block__value,
.pricing-card__price {
	margin: 0;
	font-family: 'Playfair Display', serif;
	font-size: clamp(2rem, 3vw, 2.6rem);
	line-height: 0.95;
	color: var(--brand-deep-navy);
}

.price-block__meta,
.pricing-card__meta,
.pricing-card__price-suffix {
	color: var(--brand-slate-blue);
	font-size: 0.8rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.pricing-card__meta {
	margin: -0.3rem 0 0;
	line-height: 1.5;
}

.pricing-card__price-suffix {
	display: block;
	margin-top: 0.35rem;
	letter-spacing: 0.1em;
}

.pricing-card__price--label {
	font-size: clamp(1.35rem, 2.2vw, 1.8rem);
	line-height: 1.05;
}

.pricing-stack,
.pricing-tier,
.pricing-tier__intro,
.pricing-highlight__details {
	display: grid;
	gap: 0.85rem;
}

.pricing-stack {
	gap: 1.5rem;
}

.pricing-tier {
	gap: 1rem;
}

.pricing-tier + .pricing-tier {
	padding-top: 1.25rem;
	border-top: 1px solid rgba(247, 247, 245, 0.08);
}

.pricing-tier__intro {
	max-width: 52rem;
}

.pricing-tier__intro .section-kicker {
	color: var(--brand-signal-orange);
}

.pricing-tier__intro .section-card__title {
	color: var(--brand-off-white);
}

.pricing-tier__intro .section-copy {
	color: rgba(247, 247, 245, 0.8);
}

.pricing-tier__grid {
	display: grid;
	gap: 1rem;
}

.pricing-tier__grid--four {
	grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

.pricing-tier__grid--two {
	grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
}

.pricing-tier__grid--one {
	grid-template-columns: minmax(0, 1fr);
	max-width: 28rem;
}

.pricing-package {
	background:
		linear-gradient(180deg, rgba(247, 247, 245, 0.98) 0%, rgba(242, 246, 250, 0.98) 100%);
}

.pricing-package .price-block__meta {
	max-width: none;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-align: right;
	white-space: nowrap;
}

.pricing-package .phase-card {
	background: rgba(255, 255, 255, 0.78);
}

.pricing-card .section-card__title {
	font-size: clamp(1.15rem, 1.7vw, 1.45rem);
}

.pricing-card--core {
	border-color: rgba(242, 140, 40, 0.22);
	background:
		linear-gradient(180deg, rgba(247, 247, 245, 0.98) 0%, rgba(251, 245, 236, 0.98) 100%);
	box-shadow: inset 0 3px 0 rgba(242, 140, 40, 0.72), var(--page-shadow);
}

.pricing-card--guided {
	border-color: rgba(53, 92, 125, 0.22);
	background:
		linear-gradient(180deg, rgba(247, 247, 245, 0.98) 0%, rgba(239, 245, 249, 0.98) 100%);
	box-shadow: inset 0 3px 0 rgba(53, 92, 125, 0.65), var(--page-shadow);
}

.pricing-card--advisory {
	border-color: rgba(23, 48, 73, 0.22);
	background:
		linear-gradient(180deg, rgba(247, 247, 245, 0.98) 0%, rgba(232, 240, 246, 0.98) 100%);
	box-shadow: inset 0 3px 0 rgba(11, 31, 51, 0.72), var(--page-shadow);
}

.phase-card {
	display: grid;
	gap: 0.55rem;
	padding: 1rem;
	border: 1px solid rgba(53, 92, 125, 0.14);
	border-radius: 0.5rem;
	background: rgba(255, 255, 255, 0.7);
}

.phase-card__name,
.phase-card__meta {
	margin: 0;
}

.phase-card__name {
	color: var(--brand-deep-navy);
	font-size: 1rem;
	font-weight: 700;
}

.phase-card__meta {
	color: var(--brand-slate-blue);
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.pilot-outcomes,
.pricing-highlight__details {
	display: grid;
	gap: 0.75rem;
}

.pricing-card strong {
	color: var(--brand-deep-navy);
	font-weight: 700;
}

.testimonial-card {
	align-content: start;
}

.testimonial-card blockquote {
	margin: 0;
	font-family: 'Playfair Display', serif;
	font-size: clamp(1.1rem, 2vw, 1.45rem);
	line-height: 1.45;
	color: var(--brand-deep-navy);
}

.testimonial-card figcaption {
	display: grid;
	gap: 0.18rem;
}

.testimonial-card__source,
.testimonial-card__role {
	font-size: 0.8rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.testimonial-card__source {
	color: var(--brand-slate-blue);
}

.testimonial-card__role {
	color: var(--page-muted);
}

.testimonial-card--featured {
	border-color: rgba(53, 92, 125, 0.22);
	background: rgba(247, 247, 245, 0.98);
}

.blog-reader {
	--blog-ink: var(--brand-off-white);
	--blog-muted: rgba(247, 247, 245, 0.72);
	--blog-blue: var(--brand-deep-navy);
	--blog-blue-mid: #173049;
	--blog-blue-card: rgba(247, 247, 245, 0.96);
	--blog-orange: var(--brand-signal-orange);
	--blog-orange-soft: rgba(242, 140, 40, 0.12);
	border: 1px solid rgba(247, 247, 245, 0.12);
	border-radius: 0.5rem;
	background: rgba(11, 31, 51, 0.92);
	box-shadow: var(--page-shadow);
	color: var(--brand-off-white);
}

.blog-reader__source,
.blog-reader__link,
.blog-reader__button {
	border-color: rgba(11, 31, 51, 0.14);
	background: rgba(53, 92, 125, 0.06);
	color: var(--page-ink);
}

.blog-reader__post,
.blog-reader__fallback {
	--blog-ink: var(--page-ink);
	--blog-muted: rgba(11, 31, 51, 0.68);
	border-color: rgba(11, 31, 51, 0.08);
	background: rgba(247, 247, 245, 0.96);
	box-shadow: 0 12px 28px rgba(11, 31, 51, 0.06);
	color: var(--page-ink);
}

.blog-reader__post--featured {
	border-color: rgba(53, 92, 125, 0.2);
	border-left-color: var(--blog-orange);
	background: rgba(247, 247, 245, 0.98);
	color: var(--page-ink);
}

.blog-reader__preview {
	border-top-color: rgba(11, 31, 51, 0.1);
}

.blog-reader__preview blockquote {
	background: rgba(53, 92, 125, 0.05);
	box-shadow: inset 0 0 0 1px rgba(53, 92, 125, 0.08);
	color: var(--page-ink);
}

.blog-reader__preview hr {
	background: linear-gradient(90deg, rgba(242, 140, 40, 0.8), rgba(11, 31, 51, 0.08));
}

.blog-reader__preview a {
	text-decoration-color: rgba(242, 140, 40, 0.7);
}

.blog-reader__header .blog-reader__source {
	border-color: rgba(247, 247, 245, 0.16);
	background: rgba(247, 247, 245, 0.08);
	color: var(--brand-off-white);
}

#blog {
	align-items: center;
}

.blog-reader {
	margin-inline: auto;
}

.blog-reader__posts {
	align-items: center;
}

.blog-reader__post,
.blog-reader__fallback {
	width: min(100%, 68rem);
}

.blog-reader__preview {
	justify-items: center;
}

.blog-reader__preview :where(p, h2, h3, h4, ul, ol, blockquote, pre),
.blog-reader__preview > :where(div, section, article) {
	justify-self: center;
	width: min(100%, 44rem);
}

.sms-chat-modal__backdrop {
	background: transparent;
	pointer-events: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

.sms-chat-modal__panel {
	border: 1px solid rgba(11, 31, 51, 0.12);
	border-radius: 0.5rem;
	background: rgba(11, 31, 51, 0.98);
	box-shadow: 0 24px 58px rgba(11, 31, 51, 0.2);
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	color: var(--brand-off-white);
}

.sms-chat-modal__close {
	background: rgba(247, 247, 245, 0.12);
	color: var(--brand-off-white);
}

.sms-chat-modal__eyebrow,
.sms-chat-modal__label,
.sms-chat-modal__meta {
	color: rgba(247, 247, 245, 0.72);
}

.sms-chat-modal__status,
.sms-chat-modal__setup-copy,
.sms-chat-modal__prompt-copy {
	color: rgba(247, 247, 245, 0.82);
}

.sms-chat-modal__error {
	color: var(--brand-signal-orange);
}

.sms-chat-modal__setup,
.sms-chat-modal__prompt {
	background: rgba(247, 247, 245, 0.08);
}

.sms-chat-modal__field,
.sms-chat-modal__input-frame {
	border-color: rgba(247, 247, 245, 0.18);
	background: rgba(247, 247, 245, 0.08);
	box-shadow: inset 0 0 0 1px rgba(247, 247, 245, 0.08);
}

.sms-chat-modal__input-frame:focus-within,
.sms-chat-modal__field:focus {
	border-color: rgba(242, 140, 40, 0.78);
	box-shadow:
		inset 0 0 0 1px rgba(242, 140, 40, 0.16),
		0 0 0 3px rgba(242, 140, 40, 0.16);
}

.sms-chat-modal__action,
.sms-chat-modal__button {
	border-color: rgba(11, 31, 51, 0.12);
	background: var(--brand-signal-orange);
	color: #fff;
	letter-spacing: 0.06em;
}

.sms-chat-modal__button--secondary {
	background: rgba(247, 247, 245, 0.1);
	color: var(--brand-off-white);
}

.sms-chat-modal__button--danger {
	border-color: rgba(247, 247, 245, 0.14);
	background: rgba(247, 247, 245, 0.08);
	color: var(--brand-off-white);
}

.sms-chat-modal__message--outgoing .sms-chat-modal__bubble {
	background: var(--brand-slate-blue);
	color: var(--brand-off-white);
}

.sms-chat-modal__bubble {
	background: rgba(247, 247, 245, 0.1);
}

.sms-chat-modal__message--system .sms-chat-modal__bubble {
	background: rgba(247, 247, 245, 0.06);
	color: rgba(247, 247, 245, 0.68);
}

.sms-chat-modal__bubble--failed {
	border: 1px solid rgba(242, 140, 40, 0.52);
}

.sms-chat-modal__composer,
.sms-chat-modal__postchat {
	border-top-color: rgba(11, 31, 51, 0.08);
}

.sms-chat-modal__retry {
	color: var(--brand-signal-orange);
}

@media (prefers-reduced-motion: reduce) {
	.content__title-letter {
		will-change: auto;
	}
}

@media screen and (max-width: 54.99em) {
	#home .content__copy {
		padding-right: 0.75rem;
		padding-left: 0.75rem;
	}

	.content__letter-stage {
		align-items: center;
		width: 100%;
		min-height: min(72vh, 34rem);
		padding-top: 0;
	}

	.content__letter-stage::before {
		inset: 4% -12% 16%;
	}

	.content__ground {
		bottom: clamp(2.75rem, 9vh, 4.5rem);
		width: min(20rem, 72vw);
	}

	[data-home-title-variant] [data-home-title] {
		--title-letter-gap: 0.035em;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: clamp(0.05rem, 1.4vh, 0.45rem);
		width: min(96vw, 28rem);
		font-size: clamp(4rem, 17.5vw, 7rem);
		line-height: 0.86;
	}

	[data-home-title-variant] [data-home-title] .content__title-word {
		display: flex;
		align-items: flex-end;
		justify-content: center;
		width: 100%;
		gap: var(--title-letter-gap);
	}

	[data-home-title-variant] [data-home-title] .content__title-word[data-home-title-word] {
		grid-area: auto;
		justify-self: center;
	}

	[data-home-title-variant] [data-home-title] .content__title-word[data-home-title-word] .content__title-slot {
		display: flex;
		align-items: flex-start;
		justify-content: center;
		width: auto;
		height: 0.86em;
	}

	[data-home-title-variant] [data-home-title] .content__title-word[data-home-title-word] .content__title-slot:nth-child(n) {
		margin-left: 0;
	}

	[data-home-title-variant] [data-home-title] .content__title-letter {
		line-height: 0.86;
		text-align: center;
		width: auto;
	}

	#blog {
		padding: 3rem 1rem;
	}

	.blog-reader {
		max-height: none;
	}

	.blog-reader__header {
		flex-direction: column;
	}

	.blog-reader__posts {
		overflow: visible;
		padding: 0;
	}

	#about,
	#blog,
	#pricing,
	#testimonials,
	#product {
		padding-top: 5.25rem;
	}

	.section-shell {
		gap: 1rem;
	}

	.pricing-pilot__header,
	.pricing-highlight__header,
	.pricing-card__header {
		flex-direction: column;
	}

	.price-block {
		justify-items: start;
	}

	.pricing-package .price-block__meta {
		text-align: left;
	}

	.metric-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.blog-reader__source {
		align-self: flex-start;
	}
}

@media screen and (min-width: 70em) {
	.section-hero--about {
		grid-template-columns: minmax(0, 1.3fr) minmax(16rem, 20rem);
		gap: 2rem;
	}

	.section-hero--about .portrait-card {
		justify-self: end;
	}

	.about-grid {
		grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
	}

	.about-grid--secondary {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.about-grid--secondary > .surface-card:last-child {
		grid-column: 1 / -1;
	}

	.product-layout {
		grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.95fr);
	}

	.section-lead--nowrap {
		max-width: none;
		white-space: nowrap;
	}

	.pricing-tier__intro {
		max-width: none;
	}

	.pricing-tier__intro .section-copy {
		white-space: nowrap;
		font-size: 0.92rem;
	}

	.pricing-tier__grid--four {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.pricing-tier__grid--two {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.testimonial-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.testimonial-card--featured {
		grid-column: span 2;
	}
}

@media screen and (min-width: 55em) {
	#home .content__copy {
		width: min(88vw, 64rem);
	}

	#home .content__subtitle {
		padding: 1rem 1.85rem;
	}

	.sms-chat-entry {
		display: flex;
		align-self: start;
		justify-self: end;
	}

	.menu-trigger,
	.chat-trigger {
		display: inline-block;
		background: rgba(6, 21, 37, 0.74);
		border: 1px solid rgba(242, 140, 40, 0.42);
		border-radius: 999px;
		align-self: start;
		cursor: pointer;
		pointer-events: auto;
		font-family: inherit;
		position: relative;
		padding: 0.72rem 1rem;
		color: var(--brand-alpine-white);
		box-shadow: 0 12px 30px rgba(2, 8, 19, 0.28);
		white-space: nowrap;
		transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
	}

	.menu-trigger:hover,
	.menu-trigger:focus,
	.chat-trigger:hover,
	.chat-trigger:focus {
		background: rgba(242, 140, 40, 0.18);
		border-color: rgba(242, 140, 40, 0.84);
		color: var(--brand-alpine-white);
		transform: translateY(-1px);
	}

	.menu-trigger {
		grid-area: menu;
		justify-self: start;
	}

	.chat-trigger {
		justify-self: end;
	}

	.menu-trigger--close {
		color: var(--brand-night);
		background: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		align-self: center;
	}

	.grim {
		display: grid;
		position: fixed;
		z-index: 1000;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		grid-template-columns: repeat(32,3.125vw);
		grid-template-rows: repeat(32,3.125vh);
		pointer-events: none;
	}

	.grim--open {
		pointer-events: auto;
	}

	.grim__item {
		position: relative;
		overflow: hidden;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.grim__item:first-child {
		grid-area: 31 / 1 / 33 / 2;
	}

	.grim__item:nth-child(2) {
		grid-area: 31 / 2 / 33 / 3;
	}

	.grim__item:nth-child(3) {
		grid-area: 29 / 1 / 31 / 3;
	}

	.grim__item:nth-child(4) {
		grid-area: 29 / 3 / 33 / 5;
	}

	.grim__item:nth-child(5) {
		grid-area: 25 / 1 / 29 / 5;
	}

	.grim__item:nth-child(6) {
		grid-area: 25 / 5 / 33 / 9;
	}

	.grim__item:nth-child(7) {
		grid-area: 17 / 1 / 25 / 9;
	}

	.grim__item:nth-child(8) {
		grid-area: 17 / 9 / 33 / 17;
	}

	.grim__item:nth-child(9) {
		grid-area: 1 / 1 / 17 / 17;
	}

	.grim__item:nth-child(10) {
		grid-area: 1 / 17 / 33 / 33;
	}

	.grim__item-bg {
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		opacity: 0;
		box-shadow: 0 0 0 2px currentColor;
		background: currentColor;
	}

	.grim__item-bg--1 {
		color: var(--brand-blue-grey);
		background:
			radial-gradient(circle at 22% 18%, rgba(248, 251, 255, 0.22), transparent 34%),
			linear-gradient(145deg, var(--brand-blue-grey-light), var(--brand-blue-grey) 56%, #263849);
	}
	.grim__item-bg--2 {
		color: var(--brand-night);
		background:
			radial-gradient(circle at 78% 24%, rgba(255, 75, 43, 0.26), transparent 36%),
			linear-gradient(145deg, #173a5a, var(--brand-deep-blue) 52%, var(--brand-night));
	}
	.grim__item-bg--3 { color: var(--brand-alpine-white); }
	.grim__item-bg--4 { color: var(--brand-blue-grey-light); }
	.grim__item-bg--5 { color: var(--brand-blue-grey); }

	.grim__item-bg--6 { color: var(--brand-orange-red); }
	.grim__item-bg--7 { color: var(--brand-night); }
	.grim__item-bg--8 { color: var(--brand-alpine-white); }
	.grim__item-bg--9 { color: var(--brand-blue-grey); }
	.grim__item-bg--10 { color: var(--brand-night); }

	.grim__item-img {
		position: absolute;
		width: 100%;
		height: 100%;
		opacity: 0;
		background-repeat: no-repeat;
		background-size: 100% auto;
		background-position: 50% 100%;
		background-color: currentColor;
	}

	.grim__item-img--1 {
		color: var(--brand-orange-red);
		background-image:
			radial-gradient(circle at 82% 18%, rgba(255, 230, 220, 0.22), transparent 34%),
			linear-gradient(145deg, #ff765d 0%, var(--brand-orange-red) 48%, #8e2118 100%);
	}

	.grim__item-img--2 {
		color: var(--brand-night);
		background-image:
			radial-gradient(circle at 18% 18%, rgba(255, 75, 43, 0.24), transparent 32%),
			linear-gradient(145deg, #143452 0%, var(--brand-deep-blue) 48%, var(--brand-night) 100%);
	}

	.grim__item-img--3 {
		color: var(--brand-alpine-white);
		background-image:
			radial-gradient(circle at 72% 20%, rgba(255, 75, 43, 0.16), transparent 34%),
			linear-gradient(145deg, #ffffff 0%, var(--brand-alpine-white) 54%, #cfd7df 100%);
	}

	.grim__item-img--4 {
		color: var(--brand-blue-grey);
		background-image:
			radial-gradient(circle at 68% 24%, rgba(248, 251, 255, 0.2), transparent 34%),
			radial-gradient(circle at 22% 78%, rgba(255, 75, 43, 0.18), transparent 34%),
			linear-gradient(145deg, var(--brand-blue-grey-light) 0%, var(--brand-blue-grey) 50%, #263849 100%);
	}

	.grim__item-img--5 {
		color: var(--brand-night);
		background-image:
			radial-gradient(circle at 82% 18%, rgba(255, 75, 43, 0.24), transparent 34%),
			linear-gradient(145deg, #254762 0%, var(--brand-deep-blue) 54%, #071827 100%);
	}

	.grim__item-content {
		position: relative;
		color: var(--brand-alpine-white);
		overflow: hidden;
	}

	.grim__item-content:hover,
	.grim__item-content:focus {
		opacity: 0.9;
		color: var(--brand-alpine-white);
		transition: opacity 0.3s, color 0.3s;
	}

	.grim__item-inner {
		padding: 0 1rem;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		position: relative;
		opacity: 0;
	}

	.grim__item-title {
		font-weight: normal;
		margin: 0;
		font-size: 4vmax;
		font-family: 'Playfair Display', serif;
		color: var(--brand-alpine-white);
		text-shadow: 0 10px 28px rgba(2, 8, 19, 0.34);
	}

	.grim__item:nth-child(-n+6) .grim__item-title {
		font-size: 2vmax;
	}

	.grim__item:nth-child(8) .grim__item-content,
	.grim__item:nth-child(8) .grim__item-content:hover,
	.grim__item:nth-child(8) .grim__item-content:focus,
	.grim__item:nth-child(8) .grim__item-title {
		color: var(--brand-night);
		text-shadow: none;
	}

	.grim__item-desc {
		font-size: 0.85rem;
		margin: 0.5rem 0 0 0;
		color: rgba(248, 251, 255, 0.78);
	}

	.grim__item:nth-child(8) .grim__item-desc {
		color: rgba(6, 21, 37, 0.72);
	}

	.grim__item:nth-child(8) .grim__item-desc::after {
		color: var(--brand-orange-red);
	}

	.grim__item-desc::after {
		content: '\2014';
		position: relative;
		display: block;
		font-size: 1.75rem;
		color: var(--brand-orange-red);
	}
}
