@font-face {
	font-family: "Fira Code";
	src: url("../fonts/FiraCode.woff2") format("woff2");
	font-style: normal;
	font-weight: 300 700;
	font-display: swap;
}

:root {
	--e-purple: #625af7;
	--e-purple-2: #675fea;
	--e-bg: #fdfcff;
	--e-white: #fff;
	--e-border: 1px solid var(--e-purple);
	--e-content: 700px;
	--e-panel: 636px;
	--e-font: "Fira Code", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	--e-reading-font: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
	--e-reading-ink: #201b4f;
	--e-reading-measure: 640px;
	--e-report-wide: 1040px;
}

* {
	box-sizing: border-box;
}

html {
	min-height: 100%;
	background: var(--e-bg);
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--e-bg);
	color: var(--e-purple);
	font-family: var(--e-font);
	font-size: 16px;
	line-height: 1.5;
	overflow-x: hidden;
}

body.ellipsis-theme {
	-webkit-font-smoothing: antialiased;
	text-rendering: geometricPrecision;
}

img,
svg,
video {
	display: block;
	max-width: 100%;
}

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

a:hover {
	text-decoration: underline;
}

button,
input,
textarea,
select {
	font: inherit;
	border-radius: 0;
}

button {
	color: inherit;
	cursor: pointer;
}

:focus-visible {
	outline: 2px solid var(--e-purple);
	outline-offset: 3px;
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 9999;
	padding: 10px 14px;
	background: var(--e-purple);
	color: var(--e-white);
	transform: translateY(-150%);
	transition: transform 160ms ease;
}

.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:focus {
	transform: translateY(-150%);
}

.skip-link:focus-visible {
	transform: translateY(0);
}

.site-shell {
	position: relative;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}

.page-column {
	width: min(100%, var(--e-content));
	margin: 0 auto;
	padding: 0 32px;
}

.site-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding: 80px 0 32px;
}

.site-header__logo {
	display: inline-flex;
	color: var(--e-purple);
}

.ellipsis-logo {
	position: relative;
	display: inline-block;
	width: 111px;
	height: 21px;
	color: var(--e-purple);
	overflow: hidden;
}

.ellipsis-logo__text {
	position: absolute;
	inset: 0 0 0 37.33%;
	width: 62.67%;
	height: 100%;
}

.ellipsis-logo__mark {
	position: absolute;
	left: 0;
	top: 9.2%;
	width: 33.47%;
	height: 86.74%;
}

.primary-nav {
	display: flex;
	gap: 32px;
	color: var(--e-purple);
	font-size: 16px;
}

.primary-nav a {
	display: inline-block;
	padding: 8px 4px;
	transition: color 200ms ease, background-color 200ms ease;
}

.panel {
	border: var(--e-border);
	background: transparent;
	transition: box-shadow 300ms ease, transform 300ms ease, background-color 300ms ease, color 300ms ease;
}

.panel:hover {
	box-shadow: 0 0 20px rgba(120, 113, 253, 0.3);
}

.hero-frame {
	position: relative;
	min-height: 310px;
	padding: 88px 32px 82px;
	cursor: pointer;
}

.hero-frame p {
	position: relative;
	z-index: 1;
	margin: 0;
	max-width: 570px;
	color: var(--e-purple);
	font-size: 22px;
	line-height: 1.5;
}

.hero-frame p span,
.page-hero p span,
.team-panel h2 span {
	display: inline;
	padding: 0 4px;
	background: var(--e-purple);
	color: var(--e-white);
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.corner-grid {
	position: absolute;
	inset: 30px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	pointer-events: none;
}

.corner-grid span {
	width: 27px;
	height: 27px;
	border: var(--e-border);
	background: transparent;
	animation: rotate-corner 20s linear infinite;
}

.corner-grid span:nth-child(2),
.corner-grid span:nth-child(4) {
	justify-self: end;
	animation-direction: reverse;
}

.corner-grid span:nth-child(3),
.corner-grid span:nth-child(4) {
	align-self: end;
}

.aside-note {
	display: flex;
	align-items: stretch;
	gap: 0;
	min-height: 113px;
}

.spark-wrap {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 68px;
	color: var(--e-purple);
}

.spark-wrap .icon {
	width: 52px;
	height: 52px;
	transition: transform 300ms ease;
}

.spark-wrap:hover .icon {
	transform: rotate(180deg) scale(1.1);
}

.aside-note__copy {
	flex: 1;
	padding: 24px;
	display: flex;
	align-items: center;
}

.aside-note__copy p {
	margin: 0;
	color: var(--e-purple);
	font-size: 14px;
	line-height: 1.5;
}

.proof-table {
	margin-bottom: 0;
	overflow: hidden;
}

.proof-table__intro {
	padding: 24px;
	border-bottom: var(--e-border);
}

.proof-table__intro p {
	margin: 0;
	color: var(--e-purple-2);
	font-size: 23px;
	line-height: 1.5;
}

.proof-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 112px;
	border-bottom: var(--e-border);
}

.proof-row:last-child {
	border-bottom: 0;
}

.proof-row > * + * {
	border-left: var(--e-border);
}

.proof-row--purple {
	background: var(--e-purple);
	border-color: var(--e-purple);
}

.proof-row--purple > * + * {
	border-left-color: var(--e-white);
}

.client-mark,
.proof-result {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	min-width: 0;
}

.client-mark {
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-weight: 800;
	font-size: 36px;
	letter-spacing: 0;
	color: var(--e-purple);
	text-align: center;
}

.proof-row--purple .client-mark {
	color: var(--e-white);
}

.client-mark--coppel {
	gap: 5px;
	font-size: 28px;
}

.client-mark--coppel span {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: currentColor;
}

.client-mark--codeable {
	gap: 10px;
	font-size: 24px;
}

.client-mark--codeable span {
	position: relative;
	width: 34px;
	height: 34px;
	background: currentColor;
}

.client-mark--codeable span::after {
	content: "";
	position: absolute;
	right: -10px;
	bottom: -10px;
	width: 24px;
	height: 24px;
	background: var(--e-purple);
	border-radius: 50%;
}

.client-mark--image {
	color: var(--e-purple);
}

.client-logo {
	display: block;
	width: min(64%, 172px);
	height: 46px;
	background: currentColor;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
}

.client-logo--rows {
	width: min(60%, 156px);
	-webkit-mask-image: url("../img/rows-logo-mask.png");
	mask-image: url("../img/rows-logo-mask.png");
}

.client-logo--portkey {
	width: min(64%, 172px);
	-webkit-mask-image: url("../img/portkey-logo-mask.png");
	mask-image: url("../img/portkey-logo-mask.png");
}

.client-logo--svg {
	height: 56px;
	background: transparent;
	-webkit-mask-image: none;
	mask-image: none;
}

.client-logo--svg svg {
	display: block;
	width: 100%;
	height: 100%;
	overflow: visible;
}

.client-logo__rows-text {
	fill: currentColor;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 70px;
	font-weight: 800;
	letter-spacing: 0;
}

.client-logo__portkey-shell {
	fill: none;
	stroke: currentColor;
	stroke-width: 10;
	stroke-linejoin: round;
}

.client-logo__portkey-text {
	fill: currentColor;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 52px;
	font-weight: 800;
	letter-spacing: 0;
}

.proof-result {
	flex-direction: column;
	align-items: flex-start;
	font-weight: 450;
	color: var(--e-purple);
}

.proof-result p,
.proof-result span {
	margin: 0;
	display: block;
}

.proof-result p {
	font-size: 31px;
	line-height: 1.5;
}

.proof-result span {
	font-size: 19px;
	line-height: 1.5;
}

.proof-result--compact p {
	white-space: nowrap;
}

.proof-result--rows p {
	font-size: 19px;
	line-height: 1.35;
}

.proof-result--rows span {
	font-size: 17px;
	line-height: 1.4;
}

.proof-result--portkey p {
	font-size: 25px;
	line-height: 1.35;
}

.proof-result--portkey span {
	font-size: 18px;
	line-height: 1.4;
}

.proof-result--white {
	color: var(--e-white);
}

@media (min-width: 768px) {
	.proof-row--logo {
		min-height: 124px;
	}
}

.proof-quote {
	display: grid;
	grid-template-columns: 128px minmax(0, 1fr);
	gap: 0;
	width: 100%;
	padding: 0;
	margin-bottom: 0;
	color: var(--e-purple);
}

.proof-quote--right {
	margin-left: 0;
}

.proof-quote--left {
	margin-right: 0;
}

.proof-quote + .proof-quote {
	margin-top: -1px;
}

.proof-quote + .cta-block {
	margin-top: -1px;
}

.proof-table + .proof-quote {
	margin-top: -1px;
}

.proof-quote__label {
	grid-row: 1 / span 2;
	margin: 0;
	border-right: var(--e-border);
	border-bottom: 0;
	padding: 18px 16px;
	color: var(--e-purple-2);
	font-size: 9.5px;
	font-weight: 600;
	line-height: 1.45;
	text-transform: uppercase;
}

.proof-quote blockquote {
	margin: 0;
	padding: 20px 24px 16px;
}

.proof-quote blockquote p {
	margin: 0;
	color: var(--e-reading-ink);
	font-family: var(--e-reading-font);
	font-size: 19px;
	line-height: 1.42;
}

.proof-quote--compact blockquote p {
	font-size: 18px;
}

.proof-quote__source {
	grid-column: 2;
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 6px 14px;
	margin: 0;
	border-top: var(--e-border);
	padding: 12px 24px 14px;
	color: var(--e-purple);
	font-size: 11.5px;
	line-height: 1.45;
}

.proof-quote__source strong {
	font-weight: 650;
}

.proof-quote__source span {
	color: var(--e-purple-2);
}

.cta-block {
	background: var(--e-purple);
	color: var(--e-white);
	padding: 40px;
	overflow: hidden;
}

.cta-block--first {
	margin-bottom: 0;
}

.cta-block__icons {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 32px;
}

.mini-mark .ellipsis-logo {
	width: 37px;
	height: 20px;
	color: var(--e-white);
}

.mini-mark .ellipsis-logo__text {
	display: none;
}

.mini-mark .ellipsis-logo__mark {
	inset: 0;
	width: 100%;
	height: 100%;
}

.cta-block .icon-arrow,
.cta-block__icons > .icon {
	width: 22px;
	height: 22px;
}

.cta-block > p {
	max-width: 448px;
	margin: 0 0 32px;
	font-size: 22px;
	line-height: 1.5;
}

.button-stack {
	position: relative;
	display: inline-block;
}

.offset-button,
.offset-button-shadow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 250px;
	height: 65px;
	border: 1px solid var(--e-white);
	background: var(--e-purple);
	color: var(--e-white);
}

.offset-button {
	position: relative;
	z-index: 1;
	font-size: 27px;
	line-height: 1.33;
	transition: transform 200ms ease, background-color 300ms ease, color 300ms ease;
}

.offset-button:hover,
.offset-button:focus-visible {
	background: var(--e-white);
	color: var(--e-purple);
	text-decoration: none;
	transform: scale(1.05);
}

.offset-button-shadow {
	position: absolute;
	left: 4px;
	top: 4px;
	z-index: 0;
	height: 64px;
	pointer-events: none;
}

.copy-panel {
	padding: 40px;
	color: var(--e-purple);
	font-size: 16px;
	line-height: 1.5;
}

.copy-panel p {
	margin: 0 0 16px;
}

.copy-panel p:last-child {
	margin-bottom: 0;
}

.copy-panel h1,
.copy-panel h2 {
	margin: 0 0 16px;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.5;
}

.copy-panel a,
.legal-copy a {
	text-decoration: underline;
}

.image-panel {
	margin: 0;
	overflow: hidden;
}

.image-panel img {
	width: 100%;
	height: 360px;
	object-fit: cover;
	filter: grayscale(1) sepia(1) hue-rotate(205deg) saturate(3.3) opacity(0.72);
}

.image-panel figcaption {
	border-top: var(--e-border);
	padding: 16px;
	color: var(--e-purple);
	font-size: 14px;
	text-align: center;
}

.section-heading {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 24px;
	min-height: 88px;
	color: var(--e-purple);
}

.section-heading p {
	margin: 0;
	font-size: 22px;
	line-height: 1.5;
}

.section-heading .icon-globe {
	width: 49px;
	height: 49px;
	flex: 0 0 auto;
	transition: transform 300ms ease;
}

.section-heading:hover .icon-globe {
	transform: rotate(90deg);
}

.section-heading--right {
	display: flex;
	justify-content: flex-end;
	align-items: stretch;
	gap: 16px;
}

.section-heading--right > .icon {
	width: 167px;
	height: 32px;
	align-self: center;
}

.section-heading--right .panel {
	padding: 24px;
	min-width: 248px;
}

.floating-line {
	margin-left: auto;
	width: 76px;
	height: 39px;
	border-top: var(--e-border);
	border-right: var(--e-border);
	transform: skew(-18deg);
	animation: bob-small 2s ease-in-out infinite;
}

.video-strip {
	display: flex;
	align-items: center;
	gap: 24px;
}

.video-card {
	width: 444px;
	height: 266px;
	padding: 0;
	overflow: hidden;
	background: transparent;
}

.video-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(1) sepia(1) hue-rotate(205deg) saturate(3.2) opacity(0.75);
	transition: transform 300ms ease;
}

.video-card:hover img {
	transform: scale(1.02);
}

.video-text-link {
	border: 0;
	background: transparent;
	color: var(--e-purple);
	font-size: 22px;
}

.video-text-link:hover {
	text-decoration: underline;
}

.service-stack {
	display: grid;
	grid-template-columns: 1fr;
}

.service-card {
	padding: 24px;
	color: var(--e-purple);
}

.service-card h2 {
	display: inline-block;
	margin: 0 0 16px;
	padding: 8px 16px;
	background: var(--e-purple);
	color: var(--e-white);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	transition: transform 200ms ease;
}

.service-card h2:hover {
	transform: scale(1.05);
}

.service-card p {
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
}

.falcon-lockup {
	display: flex;
	align-items: center;
	gap: 16px;
}

.falcon-lockup .icon {
	width: 44px;
	height: 50px;
}

.quote-card {
	position: relative;
	width: 340px;
	height: 328px;
	color: var(--e-purple-2);
}

.quote-card__bubble {
	position: absolute;
	inset: 0 0 82px 0;
	border: 1px solid var(--e-purple-2);
	border-radius: 34px 34px 34px 0;
	padding: 56px 30px 30px;
	display: flex;
	align-items: center;
}

.quote-card--left .quote-card__bubble {
	inset: 0 0 76px 0;
	border-radius: 34px 34px 0 34px;
}

.quote-card__bubble p,
.quote-card__byline p {
	margin: 0;
	font-size: 16px;
	line-height: normal;
}

.quote-card__byline {
	position: absolute;
	left: 30px;
	right: 0;
	bottom: 0;
	font-weight: 600;
}

.quote-card--left .quote-card__byline {
	text-align: right;
	right: 30px;
}

.page-hero {
	padding: 40px 32px;
	color: var(--e-purple);
}

.page-hero > div:first-child {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.page-hero p {
	margin: 0;
}

.page-hero p:first-child {
	font-size: 22px;
	line-height: 1.5;
}

.page-hero p:last-child {
	font-size: 16px;
	line-height: 1.5;
}

.hero-arrow {
	margin-left: auto;
	font-size: 44px;
	line-height: 1;
}

.ai-window-stage {
	position: relative;
	height: 350px;
	overflow: hidden;
	background: var(--e-bg);
}

.ai-window {
	position: absolute;
	width: min(47%, 340px);
	min-width: 288px;
	height: 268px;
	background: var(--e-purple);
	color: var(--e-white);
	padding: 28px 16px 20px;
	animation: bob-large 6s ease-in-out infinite;
}

.ai-window--one {
	left: 8px;
	top: 28px;
}

.ai-window--two {
	right: 18px;
	top: 64px;
	animation-delay: 1.2s;
}

.ai-window::after {
	content: "";
	position: absolute;
	left: 11px;
	right: 11px;
	bottom: 16px;
	height: 120px;
	background: var(--e-white);
}

.ai-window p {
	position: relative;
	z-index: 1;
	margin: 0;
}

.ai-window__meta,
.ai-window__label {
	display: inline-block;
	max-width: 100%;
	padding: 0 2px;
	color: var(--e-purple);
	background: var(--e-bg);
	font-size: 11px;
	line-height: 1.45;
	white-space: normal;
	overflow-wrap: anywhere;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.ai-window__prompt {
	width: min(100%, 270px);
	max-width: calc(100% - 8px);
	margin: 38px 0 28px !important;
	font-size: 12px;
	line-height: 1.3;
}

.ai-window__answers {
	position: relative;
	z-index: 1;
	counter-reset: ai-answer;
	margin: 12px 0 0;
	padding: 0;
	list-style: none;
	color: var(--e-purple);
	font-size: 11px;
	line-height: 1.5;
}

.ai-window__answers li {
	counter-increment: ai-answer;
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr);
	gap: 6px;
	margin: 0;
}

.ai-window__answers li::before {
	content: counter(ai-answer, decimal-leading-zero);
	color: var(--e-purple-2);
}

.founder-grid {
	position: relative;
	height: 249px;
	color: var(--e-purple-2);
}

.founder-grid__lead {
	position: absolute;
	top: 24px;
	left: 0;
	margin: 0;
	font-size: 20px;
	line-height: normal;
}

.stat-card {
	position: absolute;
	width: 215px;
	height: 139px;
	border: 1px solid var(--e-purple-2);
	padding: 56px 14px 14px;
	animation: bob-large 4s ease-in-out infinite;
}

.stat-card strong,
.stat-card span {
	display: block;
}

.stat-card strong {
	font-size: 22px;
	font-weight: 600;
	line-height: normal;
}

.stat-card span {
	font-size: 16px;
	line-height: normal;
}

.stat-card--one {
	left: 0;
	top: 110px;
}

.stat-card--two {
	left: 214px;
	top: 93px;
	animation-delay: 1.33s;
}

.stat-card--three {
	left: 429px;
	top: 72px;
	animation-delay: 2.66s;
}

.text-banner {
	padding: 24px 32px;
	color: var(--e-purple);
}

.text-banner p {
	margin: 0;
	font-size: 22px;
	line-height: 1.5;
}

.team-panel h2 {
	margin-bottom: 16px;
}

.principles-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.principle-card {
	padding: 32px;
	color: var(--e-purple);
}

.principle-card h2 {
	margin: 0 0 16px;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.35;
}

.principle-card p {
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
}

.orbit-dot {
	display: block;
	width: 46px;
	height: 46px;
	border: var(--e-border);
	transform: rotate(45deg);
}

.orbit-dot--small {
	width: 32px;
	height: 32px;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	max-width: 900px;
	width: calc(100% + 200px);
	margin-left: -100px;
}

.contact-form-wrap {
	background: var(--e-purple);
	color: var(--e-white);
	padding: 40px;
}

.contact-form p {
	margin: 0 0 24px;
}

.contact-form label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
}

.contact-form input:not([type="submit"]):not([type="button"]):not([type="hidden"]),
.contact-form textarea,
.contact-form select {
	width: 100%;
	border: 1px solid var(--e-white);
	background: transparent;
	color: var(--e-white);
	padding: 8px 12px;
}

.contact-form textarea {
	min-height: 192px;
	resize: vertical;
}

.contact-form #ellipsis-source {
	min-height: 96px;
}

.contact-form textarea[aria-invalid="true"] {
	border-color: currentColor;
	box-shadow: inset 0 0 0 1px currentColor;
}

.field-help {
	display: block;
	margin-top: 8px;
	font-size: 12px;
	line-height: 1.5;
}

.field-help[hidden] {
	display: none;
}

.contact-form option {
	background: var(--e-purple);
	color: var(--e-white);
}

.contact-form--gravity #gform_wrapper_4 {
	--gf-ctrl-label-color-primary: var(--e-white) !important;
	--gf-ctrl-label-color-secondary: var(--e-white) !important;
	--gf-color-out-ctrl-dark: var(--e-white) !important;
	--gf-color-out-ctrl-dark-lighter: var(--e-white) !important;
	--gf-color-in-ctrl-contrast: var(--e-white) !important;
	color: var(--e-white) !important;
}

.contact-form--gravity #gform_fields_4 {
	row-gap: 24px !important;
}

body.ellipsis-theme .contact-form--gravity #gform_wrapper_4 .gfield_label,
body.ellipsis-theme .contact-form--gravity #gform_wrapper_4 .gform-field-label,
body.ellipsis-theme .contact-form--gravity #gform_wrapper_4 .gfield_required,
body.ellipsis-theme .contact-form--gravity #gform_wrapper_4 .gfield_required_text,
body.ellipsis-theme .contact-form--gravity #gform_wrapper_4 .gfield_description,
body.ellipsis-theme .contact-form--gravity #gform_wrapper_4 .ginput_counter,
body.ellipsis-theme .contact-form--gravity #gform_wrapper_4 .validation_message {
	color: var(--e-white) !important;
	font-family: var(--e-font) !important;
}

body.ellipsis-theme .contact-form--gravity #gform_wrapper_4 .gfield_label {
	display: flex !important;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 6px 10px;
	margin-bottom: 8px !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	line-height: 1.35 !important;
}

body.ellipsis-theme .contact-form--gravity #gform_wrapper_4 .gfield_required {
	margin-left: 0 !important;
}

body.ellipsis-theme .contact-form--gravity #gform_wrapper_4 .gfield input:not([type="submit"]):not([type="button"]):not([type="hidden"]),
body.ellipsis-theme .contact-form--gravity #gform_wrapper_4 .gfield textarea,
body.ellipsis-theme .contact-form--gravity #gform_wrapper_4 .gfield select {
	border: 1px solid var(--e-white) !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: var(--e-white) !important;
	box-shadow: none !important;
	font-family: var(--e-font) !important;
	font-size: 14px !important;
}

body.ellipsis-theme .contact-form--gravity #gform_wrapper_4 .gfield input:not([type="submit"]):not([type="button"]):not([type="hidden"]) {
	min-height: 40px !important;
}

body.ellipsis-theme .contact-form--gravity #gform_wrapper_4 .gfield textarea {
	height: 192px !important;
	min-height: 192px !important;
	resize: vertical;
}

body.ellipsis-theme .contact-form--gravity #gform_wrapper_4 .ellipsis-source-gfield textarea {
	height: 96px !important;
	min-height: 96px !important;
}

body.ellipsis-theme .contact-form--gravity #gform_wrapper_4 .ginput_counter {
	margin-top: 8px !important;
	font-size: 12px !important;
	line-height: 1.5 !important;
	opacity: 0.82;
}

body.ellipsis-theme .contact-form--gravity #gform_wrapper_4 .field-help {
	color: var(--e-white) !important;
}

body.ellipsis-theme .contact-form--gravity #gform_wrapper_4 .gfield_error input,
body.ellipsis-theme .contact-form--gravity #gform_wrapper_4 .gfield_error textarea,
body.ellipsis-theme .contact-form--gravity #gform_wrapper_4 .gfield_error select {
	box-shadow: inset 0 0 0 1px var(--e-white) !important;
}

body.ellipsis-theme .contact-form--gravity #gform_wrapper_4 .gform_validation_errors {
	border: 1px solid var(--e-white) !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: var(--e-white) !important;
	box-shadow: none !important;
}

body.ellipsis-theme .contact-form--gravity #gform_wrapper_4 .gform_validation_errors h2 {
	color: var(--e-white) !important;
	font-family: var(--e-font) !important;
	font-size: 13px !important;
	line-height: 1.4 !important;
}

.contact-form--gravity #gform_wrapper_4 .gfield select option {
	background: var(--e-purple);
	color: var(--e-white);
}

body.ellipsis-theme .contact-form--gravity #gform_wrapper_4 .gform_footer {
	margin-top: 24px !important;
	padding: 0 !important;
}

body.ellipsis-theme .contact-form--gravity #gform_wrapper_4 .gform_button.button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: auto !important;
	min-height: 44px !important;
	border: 1px solid var(--e-white) !important;
	border-radius: 0 !important;
	background: var(--e-purple) !important;
	color: var(--e-white) !important;
	padding: 10px 16px !important;
	font-family: var(--e-font) !important;
	font-size: 14px !important;
	line-height: 1.2 !important;
}

body.ellipsis-theme .contact-form--gravity #gform_wrapper_4 .gform_button.button:hover,
body.ellipsis-theme .contact-form--gravity #gform_wrapper_4 .gform_button.button:focus-visible {
	background: var(--e-white) !important;
	color: var(--e-purple) !important;
}

body.ellipsis-theme .contact-form--gravity #gform_wrapper_4 .gform_confirmation_message {
	border: 1px solid currentColor;
	padding: 16px;
	color: var(--e-white);
}

.button-stack--form {
	margin-bottom: 24px;
}

.button-stack--form .offset-button {
	background: var(--e-purple);
}

.form-message {
	border: 1px solid currentColor;
	padding: 16px;
}

.next-panel {
	padding: 40px;
	color: var(--e-purple);
}

.next-panel h2 {
	margin: 0 0 24px;
	font-size: 18px;
	text-align: center;
}

.next-panel ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

.next-panel li {
	padding: 24px 0;
	border-top: var(--e-border);
}

.next-panel li:first-child {
	border-top: 0;
	padding-top: 0;
}

.next-panel strong,
.next-panel p {
	display: block;
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
}

.quote-large {
	padding: 40px;
	color: var(--e-purple);
}

.quote-large p:first-child {
	margin: 0 0 24px;
	font-size: 22px;
	line-height: 1.5;
}

.quote-large p:last-child {
	margin: 0;
	font-size: 16px;
}

.blog-list {
	display: grid;
	grid-template-columns: 1fr;
}

.blog-page {
	width: min(var(--e-report-wide), calc(100vw - 64px));
	margin-left: 50%;
	transform: translateX(-50%);
}

.research-hero {
	padding: 44px 32px 40px;
}

.research-hero p:first-child {
	max-width: 600px;
	font-size: 48px;
	font-weight: 450;
	line-height: 1.04;
}

.research-hero p:last-child {
	max-width: 560px;
	font-size: 18px;
	line-height: 1.55;
}

.research-proof-band {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-bottom: 0;
}

.research-proof-band div {
	min-height: 150px;
	padding: 24px;
	border-right: var(--e-border);
}

.research-proof-band div:last-child {
	border-right: 0;
}

.research-proof-band strong,
.research-proof-band span {
	display: block;
}

.research-proof-band strong {
	margin-bottom: 20px;
	font-size: 38px;
	font-weight: 500;
	line-height: 1;
}

.research-proof-band span {
	font-size: 12px;
	line-height: 1.45;
}

.featured-research {
	margin: 0;
}

.research-hero.reveal,
.research-proof-band.reveal,
.featured-research.reveal,
.research-card.reveal,
.research-article.reveal,
.pagination.reveal {
	opacity: 1;
	transform: none;
}

.featured-research a {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 190px;
	color: var(--e-purple);
}

.featured-research a:hover {
	text-decoration: none;
	background: rgba(102, 94, 253, 0.035);
}

.featured-research__copy {
	padding: 32px;
	border-right: var(--e-border);
}

.featured-research__label {
	margin: 0 0 22px;
	font-size: 12px;
	line-height: 1.4;
	text-transform: uppercase;
}

.featured-research h2 {
	margin: 24px 0;
	color: var(--e-reading-ink);
	font-family: var(--e-reading-font);
	font-size: 40px;
	font-weight: 450;
	letter-spacing: 0;
	line-height: 1.12;
}

.featured-research__copy > p:last-child {
	max-width: 740px;
	margin: 0;
	color: var(--e-reading-ink);
	font-family: var(--e-reading-font);
	font-size: 18px;
	line-height: 1.58;
}

.featured-research__metric {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 250px;
	padding: 24px;
	background: var(--e-purple);
	color: var(--e-white);
}

.featured-research__metric strong,
.featured-research__metric span {
	display: block;
}

.featured-research__metric strong {
	margin-bottom: 12px;
	font-size: 48px;
	font-weight: 500;
	line-height: 0.95;
}

.featured-research__metric span {
	font-size: 12px;
	line-height: 1.4;
}

.research-list {
	counter-reset: research-card;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.research-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.research-meta span,
.research-meta time {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 4px 8px;
	border: var(--e-border);
	font-size: 11px;
	line-height: 1.35;
}

.blog-card a {
	display: block;
	padding: 32px 30px;
	color: var(--e-purple);
}

.blog-card a:hover {
	text-decoration: none;
	background: rgba(102, 94, 253, 0.035);
}

.blog-card > a > time {
	display: block;
	margin-bottom: 24px;
	font-size: 14px;
	line-height: 1.5;
}

.research-meta > span,
.research-meta > time,
.blog-card .research-meta time,
.research-card .research-meta time,
.featured-research .research-meta time {
	display: inline-flex;
	margin: 0;
	font-size: 11px;
	line-height: 1.35;
}

.blog-card h2 {
	margin: 0 0 24px 10px;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.5;
}

.blog-card p {
	margin: 0 0 0 10px;
	font-size: 16px;
	line-height: 1.5;
}

.research-card h2 {
	margin: 26px 0 18px;
	color: var(--e-reading-ink);
	font-family: var(--e-reading-font);
	font-size: 29px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.17;
}

.research-card {
	counter-increment: research-card;
	min-height: 100%;
}

.research-list .research-card:last-child:nth-child(odd) {
	grid-column: 1 / -1;
}

.research-card a {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.research-card a::before {
	content: counter(research-card, decimal-leading-zero);
	position: absolute;
	top: 32px;
	right: 30px;
	color: var(--e-purple);
	font-size: 11px;
	line-height: 1.35;
}

.research-card .research-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding-right: 48px;
}

.featured-research .research-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.research-card p {
	margin-left: 0;
}

.research-card a > p:not(.research-card__finding) {
	max-width: 430px;
	color: var(--e-reading-ink);
	font-family: var(--e-reading-font);
	font-size: 17px;
	line-height: 1.56;
}

.research-card__finding {
	margin-top: 24px !important;
	padding-top: 18px;
	border-top: var(--e-border);
	color: var(--e-reading-ink);
	font-family: var(--e-reading-font);
	font-size: 15px !important;
	line-height: 1.55 !important;
}

.research-card__finding span {
	display: block;
	margin-bottom: 8px;
	color: var(--e-purple);
	font-family: var(--e-font);
	font-size: 11px;
	text-transform: uppercase;
}

.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 28px;
	color: var(--e-purple);
}

.pagination a,
.pagination span,
.pagination button {
	min-width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: transparent;
	color: var(--e-purple);
}

.pagination .current,
.pagination span[aria-current],
.pagination a:hover {
	background: var(--e-purple);
	color: var(--e-white);
	text-decoration: none;
}

.single-article {
	color: var(--e-purple);
}

.single-page {
	width: min(100vw - 64px, 1120px);
	margin-left: 50%;
	transform: translateX(-50%);
}

.research-article {
	overflow: visible;
}

.research-article.panel:hover {
	box-shadow: none;
}

.research-article__header {
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr) 210px;
	gap: 0 40px;
	align-items: start;
	padding: 56px 64px 52px;
	border-bottom: var(--e-border);
	background:
		linear-gradient(90deg, rgba(98, 90, 247, 0.08) 0 1px, transparent 1px) 64px 56px / calc(100% - 128px) 1px no-repeat,
		transparent;
}

.research-article__header .research-meta {
	grid-column: 1;
	grid-row: 1 / span 3;
	align-content: start;
	align-items: stretch;
	flex-direction: column;
	gap: 0;
	padding-top: 2px;
}

.research-article__header .research-meta span,
.research-article__header .research-meta time {
	justify-content: flex-start;
	width: 100%;
	min-height: 0;
	padding: 10px 0 9px;
	border: 0;
	border-top: 1px solid rgba(98, 90, 247, 0.46);
	color: rgba(98, 90, 247, 0.92);
}

.research-article__header .research-meta span:last-child,
.research-article__header .research-meta time:last-child {
	border-bottom: 1px solid rgba(98, 90, 247, 0.46);
}

.single-article time {
	display: inline-flex;
}

.single-article h1,
.research-article h1 {
	grid-column: 2 / 4;
	max-width: 880px;
	margin: 22px 0 24px;
	color: var(--e-reading-ink);
	font-family: var(--e-reading-font);
	font-size: clamp(58px, 6.4vw, 88px);
	font-weight: 500;
	line-height: 0.96;
	letter-spacing: 0;
	text-wrap: balance;
}

.research-article__dek {
	grid-column: 2;
	max-width: 660px;
	margin: 0 0 32px;
	color: var(--e-reading-ink);
	font-family: var(--e-reading-font);
	font-size: 23px;
	line-height: 1.46;
}

.research-article__byline {
	grid-column: 2;
	display: grid;
	gap: 8px;
	max-width: 660px;
	margin: -10px 0 30px;
	padding-top: 18px;
	border-top: 1px solid rgba(32, 24, 71, 0.24);
	color: var(--e-reading-ink);
}

.research-article__byline p {
	margin: 0;
}

.research-article__byline-author {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 8px;
	align-items: baseline;
	font-family: var(--e-reading-font);
	font-size: 16px;
	line-height: 1.48;
}

.research-article__byline-author span {
	color: var(--e-purple);
	font-family: var(--e-font);
	font-size: 11px;
	line-height: 1.4;
	text-transform: uppercase;
}

.research-article__byline-author a {
	color: inherit;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.research-article__byline-author em {
	color: rgba(32, 24, 71, 0.72);
	font-style: normal;
}

.research-article__byline-note {
	max-width: 610px;
	color: rgba(32, 24, 71, 0.68);
	font-family: var(--e-font);
	font-size: 12px;
	line-height: 1.55;
}

.research-article__metric {
	grid-column: 3;
	align-self: end;
	display: grid;
	gap: 9px;
	justify-self: end;
	width: 210px;
	margin-top: 0;
	padding: 18px 0 0;
	border-top: 2px solid var(--e-purple);
}

.research-article__metric strong,
.research-article__metric span {
	display: block;
	padding: 0;
}

.research-article__metric strong {
	background: transparent;
	color: var(--e-purple);
	font-family: var(--e-reading-font);
	font-size: 48px;
	font-weight: 500;
	line-height: 0.95;
}

.research-article__metric span {
	max-width: 190px;
	font-size: 12px;
	line-height: 1.4;
	text-transform: uppercase;
}

.research-toc {
	margin: 0;
	padding: 20px 64px 22px;
	border-top: 0;
	border-right: 0;
	border-left: 0;
	background: rgba(98, 90, 247, 0.018);
}

.research-toc p {
	margin: 0 0 12px;
	color: var(--e-purple);
	font-size: 11px;
	line-height: 1.35;
	text-transform: uppercase;
}

.research-toc ol {
	counter-reset: report-section;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.research-toc li {
	counter-increment: report-section;
	margin: 0;
	font-size: 13px;
	line-height: 1.45;
}

.research-toc a {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr);
	gap: 9px;
	min-height: 42px;
	padding: 10px 16px 10px 0;
	border-top: 1px solid rgba(98, 90, 247, 0.5);
	color: var(--e-reading-ink);
	text-decoration: none;
}

.research-toc a::before {
	content: counter(report-section, decimal-leading-zero);
	color: var(--e-purple);
	font-size: 11px;
	line-height: 1.35;
}

.research-toc a:hover {
	background: rgba(98, 90, 247, 0.045);
	text-decoration: none;
}

.single-content {
	padding: 72px 64px 82px;
	font-size: 18px;
	line-height: 1.72;
}

.research-toc + .single-content {
	padding-top: 48px;
}

.single-content p,
.single-content ul,
.single-content ol,
.single-content blockquote {
	margin: 0 0 30px;
}

.research-content {
	counter-reset: research-section;
	color: var(--e-reading-ink);
	font-family: var(--e-reading-font);
	font-size: 20px;
	line-height: 1.72;
}

.research-content > p,
.research-content > ul,
.research-content > ol {
	max-width: var(--e-reading-measure);
	margin-right: auto;
	margin-left: auto;
}

.research-content > p {
	text-wrap: pretty;
}

.research-content > p + p {
	margin-top: 32px;
}

.research-content li {
	margin-bottom: 14px;
	padding-left: 3px;
}

.research-content h2,
.research-content h3 {
	max-width: 760px;
	margin: 86px auto 26px;
	padding-top: 18px;
	border-top: var(--e-border);
	color: var(--e-purple);
	font-family: var(--e-font);
	font-weight: 450;
	line-height: 1.25;
}

.research-content h2 {
	counter-increment: research-section;
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 18px;
	align-items: start;
	font-size: 34px;
}

.research-content h2::before {
	content: counter(research-section, decimal-leading-zero);
	padding-top: 6px;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.35;
}

.research-content h2 + p {
	max-width: 720px;
	color: var(--e-reading-ink);
	font-size: 22px;
	line-height: 1.62;
}

.research-content > h2.ellipsis-closing-takeaway__title {
	max-width: 820px;
	margin: 82px auto 0;
	padding: 26px 28px 0;
	border: var(--e-border);
	border-bottom: 0;
	background: rgba(98, 90, 247, 0.035);
	color: var(--e-purple);
}

.research-content > p.ellipsis-closing-takeaway {
	max-width: 820px;
	margin: 0 auto 16px;
	padding: 18px 28px 30px 94px;
	border-right: var(--e-border);
	border-bottom: var(--e-border);
	border-left: var(--e-border);
	background: rgba(98, 90, 247, 0.035);
	color: var(--e-reading-ink);
	font-family: var(--e-reading-font);
	font-size: 28px;
	font-weight: 500;
	line-height: 1.34;
	text-wrap: balance;
}

.research-content h3 {
	font-size: 22px;
}

.research-content blockquote {
	max-width: 720px;
	margin-right: auto;
	margin-left: auto;
	padding: 24px;
	border: var(--e-border);
	background: var(--e-purple);
	color: var(--e-white);
	font-family: var(--e-font);
}

.research-content blockquote p:last-child {
	margin-bottom: 0;
}

.research-content table {
	width: 100%;
	border-collapse: collapse;
}

.research-content .ellipsis-report-hero,
.research-content .ellipsis-metric-strip,
.research-content .ellipsis-research-chart,
.research-content .ellipsis-comparison-table {
	width: 100%;
	max-width: 100%;
	margin: 64px 0;
}

.research-content > .ellipsis-report-hero:first-child {
	margin-top: 0;
}

.research-content .ellipsis-research-chart,
.research-content .ellipsis-comparison-table {
	width: min(var(--e-report-wide), calc(100vw - 96px));
	max-width: calc(100% + 64px);
	margin-right: -32px;
	margin-left: -32px;
}

.research-content .ellipsis-research-chart {
	margin-top: 92px;
	margin-bottom: 92px;
}

.research-content .ellipsis-research-chart h3 {
	margin: 0 0 10px;
	padding-top: 0;
	border-top: 0;
}

.research-content .ellipsis-research-chart p {
	margin: 0;
}

.research-content .ellipsis-research-chart .ellipsis-research-chart__takeaway {
	margin-top: 10px;
}

.research-content .ellipsis-key-finding,
.research-content .ellipsis-methodology-note,
.research-content .ellipsis-citation-note {
	max-width: 820px;
	margin: 64px auto 0;
	font-family: var(--e-font);
}

.research-content .ellipsis-citation-note {
	margin-top: 24px;
}

.research-content .ellipsis-report-hero + .ellipsis-key-finding,
.research-content .ellipsis-report-hero + .ellipsis-key-finding + .ellipsis-metric-strip {
	width: 100%;
	max-width: 100%;
	margin-right: 0;
	margin-left: 0;
}

.research-content .ellipsis-report-hero {
	margin-bottom: 0;
}

.research-content .ellipsis-report-hero--post-intro {
	grid-template-columns: 156px minmax(0, 1fr);
	gap: 0 30px;
	width: min(820px, 100%);
	max-width: 820px;
	margin: 0 auto 48px;
	border-top: 2px solid var(--e-reading-ink);
	border-right: 0;
	border-bottom: 1px solid rgba(32, 24, 71, 0.28);
	border-left: 0;
	background: transparent;
}

.research-content .ellipsis-report-hero--post-intro .ellipsis-report-hero__copy {
	display: contents;
	border: 0;
	padding: 0;
}

.research-content .ellipsis-report-hero--post-intro .ellipsis-report-hero__eyebrow {
	grid-column: 1;
	margin: 0;
	padding: 22px 0 0;
	color: var(--e-purple);
	font-size: 11px;
	line-height: 1.35;
}

.research-content .ellipsis-report-hero--post-intro .ellipsis-report-hero__dek {
	grid-column: 2;
	max-width: 620px;
	margin: 0;
	padding: 20px 0 24px;
	color: var(--e-reading-ink);
	font-family: var(--e-reading-font);
	font-size: 22px;
	font-weight: 500;
	line-height: 1.48;
	text-wrap: balance;
}

.research-content .ellipsis-report-hero + .ellipsis-key-finding {
	display: grid;
	grid-template-columns: 190px minmax(0, 1fr);
	margin-top: 0;
	margin-bottom: 0;
	padding: 0;
	border-top: 0;
	background: var(--e-purple);
	color: var(--e-white);
}

.research-content .ellipsis-report-hero--post-intro + .ellipsis-key-finding {
	margin-top: 0;
}

.research-content .ellipsis-report-hero + .ellipsis-key-finding .ellipsis-key-finding__label {
	grid-row: 1 / span 3;
	margin: 0;
	padding: 28px 24px;
	border-right: 1px solid currentColor;
}

.research-content .ellipsis-report-hero + .ellipsis-key-finding .ellipsis-key-finding__finding {
	margin: 0;
	padding: 30px 34px 18px;
	font-family: var(--e-reading-font);
	font-size: 31px;
	font-weight: 500;
	line-height: 1.24;
	letter-spacing: 0;
}

.research-content .ellipsis-report-hero + .ellipsis-key-finding .ellipsis-key-finding__detail {
	margin: 0;
	padding: 0 34px 20px;
	font-family: var(--e-reading-font);
	font-size: 17px;
	line-height: 1.5;
}

.research-content .ellipsis-report-hero + .ellipsis-key-finding .ellipsis-key-finding__confidence {
	grid-column: 2;
	margin: 0 34px 30px;
	padding-top: 16px;
	font-size: 12px;
	line-height: 1.5;
}

.research-content .ellipsis-report-hero + .ellipsis-key-finding + .ellipsis-metric-strip {
	margin-top: 0;
	border-top: 0;
}

.research-content .ellipsis-implication-panel {
	max-width: 820px;
	margin: 46px auto 54px;
	border: var(--e-border);
	color: var(--e-purple);
	font-family: var(--e-font);
}

.research-content .ellipsis-implication-panel > .wp-block-group__inner-container {
	display: grid;
	grid-template-columns: 190px minmax(0, 1fr);
}

.research-content .ellipsis-implication-panel__label {
	max-width: none;
	margin: 0;
	padding: 24px;
	border-right: var(--e-border);
	font-size: 12px;
	line-height: 1.45;
	text-transform: uppercase;
}

.research-content .ellipsis-implication-panel ol {
	grid-column: 2;
	grid-row: 1;
	counter-reset: implication;
	max-width: none;
	margin: 0;
	padding: 0;
	list-style: none;
}

.research-content .ellipsis-implication-panel li {
	counter-increment: implication;
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 16px;
	margin: 0;
	padding: 20px 24px;
	border-bottom: var(--e-border);
	color: var(--e-reading-ink);
	font-family: var(--e-reading-font);
	font-size: 18px;
	line-height: 1.55;
}

.research-content .ellipsis-implication-panel li:last-child {
	border-bottom: 0;
}

.research-content .ellipsis-implication-panel li::before {
	content: counter(implication, decimal-leading-zero);
	color: var(--e-purple);
	font-family: var(--e-font);
	font-size: 12px;
	line-height: 1.5;
}

.editor-styles-wrapper .ellipsis-report-hero + .ellipsis-key-finding,
.editor-styles-wrapper .ellipsis-report-hero + .ellipsis-key-finding + .ellipsis-metric-strip {
	width: 100%;
	max-width: 100%;
	margin-right: 0;
	margin-left: 0;
}

.editor-styles-wrapper .ellipsis-report-hero {
	margin-bottom: 0;
}

.editor-styles-wrapper .ellipsis-report-hero + .ellipsis-key-finding {
	display: grid;
	grid-template-columns: 190px minmax(0, 1fr);
	margin-top: 0;
	margin-bottom: 0;
	padding: 0;
	border-top: 0;
	background: var(--e-purple);
	color: var(--e-white);
}

.editor-styles-wrapper .ellipsis-report-hero + .ellipsis-key-finding .ellipsis-key-finding__label {
	grid-row: 1 / span 3;
	margin: 0;
	padding: 28px 24px;
	border-right: 1px solid currentColor;
}

.editor-styles-wrapper .ellipsis-report-hero + .ellipsis-key-finding .ellipsis-key-finding__finding {
	margin: 0;
	padding: 30px 34px 18px;
	font-family: var(--e-reading-font);
	font-size: 31px;
	font-weight: 500;
	line-height: 1.24;
	letter-spacing: 0;
}

.editor-styles-wrapper .ellipsis-report-hero + .ellipsis-key-finding .ellipsis-key-finding__detail {
	margin: 0;
	padding: 0 34px 20px;
	font-family: var(--e-reading-font);
	font-size: 17px;
	line-height: 1.5;
}

.editor-styles-wrapper .ellipsis-report-hero + .ellipsis-key-finding .ellipsis-key-finding__confidence {
	grid-column: 2;
	margin: 0 34px 30px;
	padding-top: 16px;
	font-size: 12px;
	line-height: 1.5;
}

.editor-styles-wrapper .ellipsis-report-hero + .ellipsis-key-finding + .ellipsis-metric-strip {
	margin-top: 0;
	border-top: 0;
}

.editor-styles-wrapper .ellipsis-implication-panel {
	max-width: 820px;
	margin: 46px auto 54px;
	border: var(--e-border);
	color: var(--e-purple);
	font-family: var(--e-font);
}


.editor-styles-wrapper .ellipsis-implication-panel > .wp-block-group__inner-container,
.editor-styles-wrapper .ellipsis-implication-panel > .block-editor-inner-blocks > .block-editor-block-list__layout {
	display: grid;
	grid-template-columns: 190px minmax(0, 1fr);
}

.editor-styles-wrapper .ellipsis-implication-panel__label {
	max-width: none;
	margin: 0;
	padding: 24px;
	border-right: var(--e-border);
	font-size: 12px;
	line-height: 1.45;
	text-transform: uppercase;
}

.editor-styles-wrapper .ellipsis-implication-panel ol {
	grid-column: 2;
	grid-row: 1;
	counter-reset: implication;
	max-width: none;
	margin: 0;
	padding: 0;
	list-style: none;
}

.editor-styles-wrapper .ellipsis-implication-panel li {
	counter-increment: implication;
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 16px;
	margin: 0;
	padding: 20px 24px;
	border-bottom: var(--e-border);
	color: var(--e-reading-ink);
	font-family: var(--e-reading-font);
	font-size: 18px;
	line-height: 1.55;
}

.editor-styles-wrapper .ellipsis-implication-panel li:last-child {
	border-bottom: 0;
}

.editor-styles-wrapper .ellipsis-implication-panel li::before {
	content: counter(implication, decimal-leading-zero);
	color: var(--e-purple);
	font-family: var(--e-font);
	font-size: 12px;
	line-height: 1.5;
}

.site-footer {
	padding: 48px 0 0;
	border-top: var(--e-border);
	color: var(--e-purple);
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
	margin-bottom: 32px;
}

.footer-grid p,
.footer-grid a {
	margin: 0;
	font-size: 14px;
	line-height: 1.45;
}

.footer-title {
	margin-bottom: 12px !important;
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer-legal {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 32px 0;
	border-top: var(--e-border);
	font-size: 12px;
}

.footer-legal p {
	margin: 0;
}

.footer-legal a {
	text-decoration: underline;
	transition: color 200ms ease, background-color 200ms ease;
}

.footer-legal a:hover {
	background: var(--e-purple);
	color: var(--e-white);
}

.cookie-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 80;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 34px;
	padding: 28px 32px;
	border-top: var(--e-border);
	background: rgba(253, 252, 255, 0.96);
	color: var(--e-purple);
	box-shadow: 0 -18px 40px rgba(102, 94, 253, 0.08);
}

.cookie-banner[hidden] {
	display: none;
}

.cookie-banner p {
	width: min(100%, 394px);
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
}

.cookie-banner a {
	text-decoration: underline;
}

.cookie-banner__actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.cookie-banner button {
	height: 39px;
	border: var(--e-border);
	background: transparent;
	color: var(--e-purple);
	padding: 0 18px;
}

.cookie-banner button:hover,
.cookie-banner button[data-cookie-choice="accept"] {
	background: var(--e-purple);
	color: var(--e-white);
}

.cookie-banner__close {
	width: 39px;
	padding: 0 !important;
	font-size: 24px;
	line-height: 1;
}

.video-modal[hidden] {
	display: none;
}

.video-modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.video-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
}

.video-modal__panel {
	position: relative;
	z-index: 1;
	width: min(100%, 896px);
	background: var(--e-purple);
	border: 2px solid var(--e-white);
}

.video-modal__close {
	position: absolute;
	right: 0;
	top: -48px;
	width: 40px;
	height: 40px;
	border: 1px solid var(--e-white);
	background: transparent;
	color: var(--e-white);
	font-size: 30px;
	line-height: 1;
}

.video-modal__close:hover {
	background: var(--e-white);
	color: var(--e-purple);
}

.video-modal__frame {
	position: relative;
	padding-bottom: 56.25%;
}

.video-modal video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 600ms ease, transform 600ms ease;
	transition-delay: var(--delay, 0ms);
}

.reveal-down {
	transform: translateY(-20px);
}

.reveal-left {
	transform: translateX(-20px);
}

.reveal-right {
	transform: translateX(20px);
}

.reveal.is-visible {
	opacity: 1;
	transform: translate(0, 0);
}

.confetti-square {
	position: fixed;
	z-index: 90;
	width: 7px;
	height: 7px;
	background: var(--e-purple);
	pointer-events: none;
	animation: confetti-fall 780ms ease-out forwards;
}

@keyframes rotate-corner {
	to {
		transform: rotate(360deg);
	}
}

@keyframes bob-small {
	0%,
	100% {
		transform: translateY(0) skew(-18deg);
	}
	50% {
		transform: translateY(-3px) skew(-18deg);
	}
}

@keyframes bob-large {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

@keyframes confetti-fall {
	0% {
		opacity: 1;
		transform: translate(0, 0) rotate(0deg);
	}
	100% {
		opacity: 0;
		transform: translate(var(--tx), var(--ty)) rotate(var(--rot));
	}
}

@media (max-width: 1023px) {
	.proof-quote--right,
	.proof-quote--left {
		margin-left: 0;
		margin-right: 0;
	}

	.proof-quote {
		grid-template-columns: 128px minmax(0, 1fr);
		width: 100%;
	}

	.proof-quote blockquote p {
		font-size: 19px;
	}
}

@media (max-width: 767px) {
	body {
		overflow-x: hidden;
	}

	.page-column {
		padding: 0 16px;
	}

	.site-header {
		align-items: flex-start;
		flex-direction: column;
		gap: 15px;
		padding: 48px 0 24px;
	}

	.primary-nav {
		gap: 24px;
		font-size: 14px;
		white-space: nowrap;
	}

	.hero-frame {
		min-height: 250px;
		padding: 64px 16px;
	}

	.hero-frame p {
		font-size: 16px;
		line-height: 1.5;
	}

	.corner-grid {
		inset: 12px;
	}

	.corner-grid span {
		width: 33px;
		height: 33px;
	}

	.spark-wrap {
		width: 64px;
	}

	.aside-note__copy {
		padding: 16px;
	}

	.aside-note__copy p {
		font-size: 12px;
	}

	.proof-table__intro {
		padding: 12px;
	}

	.proof-table__intro p {
		font-size: 16px;
		line-height: 1.375;
	}

	.proof-row {
		min-height: 94px;
	}

	.proof-row--logo {
		grid-template-columns: 1fr;
	}

	.proof-row--logo > * + * {
		border-left: 0;
		border-top: var(--e-border);
	}

	.proof-row--purple.proof-row--logo > * + * {
		border-top-color: var(--e-white);
	}

	.client-mark {
		padding: 12px;
		font-size: 34px;
	}

	.client-mark--image {
		min-height: 86px;
		padding: 14px;
	}

	.client-logo {
		height: 48px;
		max-height: 48px;
	}

	.client-mark--coppel {
		font-size: 24px;
	}

	.client-mark--codeable {
		font-size: 20px;
	}

	.proof-result {
		padding: 12px;
	}

	.proof-result p {
		font-size: 18px;
		line-height: 1.375;
	}

	.proof-result span {
		font-size: 16px;
		line-height: 1.375;
	}

	.proof-row--logo .proof-result {
		align-items: center;
		min-height: 88px;
		text-align: center;
	}

	.proof-result--rows p {
		font-size: 18px;
	}

	.proof-result--portkey p {
		font-size: 21px;
	}

	.cta-block {
		padding: 24px;
	}

	.cta-block > p {
		font-size: 18px;
	}

	.offset-button,
	.offset-button-shadow {
		width: 250px;
	}

	.offset-button {
		font-size: 24px;
	}

	.copy-panel {
		padding: 24px;
		font-size: 14px;
		line-height: 1.5;
	}

	.image-panel img {
		height: 205px;
	}

	.image-panel figcaption {
		font-size: 14px;
	}

	.section-heading {
		padding: 16px;
		min-height: 88px;
		gap: 16px;
	}

	.section-heading p {
		font-size: 18px;
	}

	.section-heading--right > .icon {
		display: none;
	}

	.section-heading--right .panel {
		min-width: 175px;
	}

	.video-strip {
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
	}

	.video-card {
		width: 100%;
		height: 253px;
	}

	.video-text-link {
		font-size: 18px;
	}

	.service-card {
		padding: 16px;
	}

	.service-card h2,
	.service-card p {
		font-size: 14px;
	}

	.proof-quote {
		grid-template-columns: 1fr;
		width: 100%;
	}

	.proof-quote__label {
		grid-row: auto;
		border-right: 0;
		border-bottom: var(--e-border);
		padding: 12px 14px;
	}

	.proof-quote blockquote {
		padding: 16px 14px 12px;
	}

	.proof-quote blockquote p,
	.proof-quote--compact blockquote p {
		font-size: 16px;
		line-height: 1.45;
	}

	.proof-quote__source {
		grid-column: auto;
		flex-direction: column;
		align-items: flex-start;
		gap: 2px;
		padding: 11px 14px 13px;
	}

	.page-hero {
		padding: 24px 16px;
	}

	.page-hero p:first-child,
	.text-banner p,
	.principle-card h2,
	.blog-card h2,
	.single-article h1 {
		font-size: 18px;
	}

	.ai-window-stage {
		height: 300px;
	}

	.ai-window {
		width: 254px;
		min-width: 0;
		transform: scale(0.88);
		transform-origin: top left;
	}

	.proof-table {
		margin-bottom: 0;
	}

	.proof-quote + .proof-quote {
		margin-top: -1px;
	}

	.proof-quote + .cta-block {
		margin-top: -1px;
	}

	.ai-window--two {
		right: 0;
	}

	.founder-grid {
		height: auto;
	}

	.founder-grid__lead,
	.stat-card {
		position: relative;
		inset: auto;
		width: 100%;
	}

	.founder-grid__lead {
		margin: 24px 0 16px;
		font-size: 20px;
	}

	.stat-card {
		top: auto;
		left: auto;
		animation: none;
	}

	.principles-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.contact-grid {
		width: 100%;
		margin-left: 0;
	}

	.contact-form-wrap,
	.next-panel,
	.quote-large,
	.single-article,
	.principle-card,
	.blog-card a {
		padding: 24px;
	}

	.blog-page {
		display: flex;
		flex-direction: column;
		width: 100%;
		margin-left: 0;
		transform: none;
	}

	.blog-page > .screen-reader-text {
		order: 0;
	}

	.blog-page > .research-hero {
		order: 1;
	}

	.blog-page > .featured-research {
		order: 2;
	}

	.blog-page > .research-proof-band {
		order: 3;
	}

	.blog-page > .research-list {
		order: 4;
	}

	.blog-page > .pagination {
		order: 5;
	}

	.blog-page > .cta-block {
		order: 6;
	}

	.blog-page > .site-footer {
		order: 7;
	}

	.research-hero {
		padding: 28px 20px;
	}

	.research-hero p:first-child {
		font-size: 34px;
		line-height: 1.06;
	}

	.research-hero p:last-child {
		font-size: 15px;
	}

	.research-proof-band,
	.research-list,
	.featured-research a {
		grid-template-columns: 1fr;
	}

	.blog-page > .research-proof-band div:first-child {
		display: none;
	}

	.research-proof-band div {
		min-height: 116px;
		border-right: 0;
		border-bottom: var(--e-border);
	}

	.research-proof-band div:last-child {
		border-bottom: 0;
	}

	.featured-research__copy {
		padding: 24px;
		border-right: 0;
		border-bottom: var(--e-border);
	}

	.featured-research h2 {
		font-size: 29px;
		line-height: 1.12;
	}

	.research-card h2 {
		font-size: 25px;
		line-height: 1.16;
	}

	.featured-research__copy > p:last-child,
	.research-card a > p:not(.research-card__finding) {
		font-size: 17px;
		line-height: 1.54;
	}

	.research-card__finding {
		font-size: 15px !important;
	}

	.research-card a::before {
		top: 24px;
		right: 24px;
	}

	.research-card .research-meta,
	.featured-research .research-meta {
		padding-right: 44px;
	}

	.featured-research .research-meta {
		padding-right: 0;
	}

	.featured-research__metric {
		min-height: 150px;
	}

	.single-article.research-article {
		padding: 0;
	}

	.single-page {
		width: calc(100vw - 24px);
	}

	.research-article__header,
	.single-content {
		padding: 22px;
	}

	.research-toc + .single-content {
		padding-top: 30px;
	}

	.research-article__header {
		display: block;
		background: transparent;
	}

	.research-article__header .research-meta {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 0;
		justify-content: space-between;
		padding-top: 0;
		border-top: 1px solid rgba(98, 90, 247, 0.5);
		border-bottom: 1px solid rgba(98, 90, 247, 0.5);
	}

	.research-article__header .research-meta span,
	.research-article__header .research-meta time {
		width: auto;
		padding: 8px 0;
		border: 0;
		font-size: 10px;
	}

	.research-article h1,
	.single-article.research-article h1 {
		margin: 22px 0 18px;
		font-size: 43px;
		line-height: 0.98;
	}

	.research-article__dek {
		margin-bottom: 24px;
		font-size: 19px;
		line-height: 1.5;
	}

	.research-article__byline {
		display: grid;
		gap: 8px;
		max-width: 100%;
		margin: 0 0 24px;
		padding-top: 16px;
	}

	.research-article__byline-author {
		font-size: 15.5px;
		line-height: 1.5;
	}

	.research-article__byline-note {
		max-width: 100%;
		font-size: 11px;
		line-height: 1.55;
	}

	.research-article__metric {
		width: 100%;
		margin-top: 20px;
		padding-top: 14px;
		border-top: 2px solid var(--e-purple);
	}

	.research-article__metric strong {
		font-size: 42px;
	}

	.research-article__metric span {
		max-width: 260px;
	}

	.research-toc {
		padding: 18px 22px 20px;
	}

	.research-toc ol {
		grid-template-columns: 1fr;
	}

	.research-toc a {
		min-height: 38px;
		padding: 9px 0;
	}

	.research-content .ellipsis-report-hero,
	.research-content .ellipsis-metric-strip,
	.research-content .ellipsis-research-chart,
	.research-content .ellipsis-comparison-table {
		width: 100%;
		max-width: 100%;
		margin-left: 0;
		margin-right: 0;
	}

	.research-content .ellipsis-report-hero--post-intro {
		grid-template-columns: 1fr;
		margin-bottom: 36px;
	}

	.research-content .ellipsis-report-hero--post-intro .ellipsis-report-hero__eyebrow,
	.research-content .ellipsis-report-hero--post-intro .ellipsis-report-hero__dek {
		grid-column: 1;
	}

	.research-content .ellipsis-report-hero--post-intro .ellipsis-report-hero__eyebrow {
		padding-top: 18px;
	}

	.research-content .ellipsis-report-hero--post-intro .ellipsis-report-hero__dek {
		padding-top: 12px;
		font-size: 20px;
		line-height: 1.45;
	}

	.research-content .ellipsis-research-chart {
		margin-top: 70px;
		margin-bottom: 70px;
	}

	.research-content {
		font-size: 18px;
		line-height: 1.62;
	}

	.research-content h2 {
		grid-template-columns: 34px minmax(0, 1fr);
		gap: 12px;
		font-size: 24px;
		line-height: 1.22;
	}

	.research-content h2::before {
		padding-top: 3px;
		font-size: 11px;
	}

	.research-content h2 + p {
		font-size: 19px;
		line-height: 1.58;
	}

	.research-content > h2.ellipsis-closing-takeaway__title {
		grid-template-columns: 34px minmax(0, 1fr);
		margin-top: 58px;
		padding: 22px 20px 0;
		font-size: 25px;
	}

	.research-content > p.ellipsis-closing-takeaway {
		padding: 16px 20px 24px 66px;
		font-size: 21px;
		line-height: 1.42;
	}

	.research-content h3 {
		font-size: 20px;
	}

	.research-content .ellipsis-report-hero + .ellipsis-key-finding {
		grid-template-columns: 1fr;
	}

	.research-content .ellipsis-report-hero + .ellipsis-key-finding .ellipsis-key-finding__label {
		grid-row: auto;
		padding: 22px 22px 0;
		border-right: 0;
	}

	.research-content .ellipsis-report-hero + .ellipsis-key-finding .ellipsis-key-finding__finding {
		padding: 18px 22px 16px;
		font-size: 24px;
		line-height: 1.25;
	}

	.research-content .ellipsis-report-hero + .ellipsis-key-finding .ellipsis-key-finding__detail {
		padding: 0 22px 18px;
		font-size: 16px;
		line-height: 1.5;
	}

	.research-content .ellipsis-report-hero + .ellipsis-key-finding .ellipsis-key-finding__confidence {
		grid-column: 1;
		margin: 0 22px 24px;
	}

	.research-content .ellipsis-implication-panel {
		max-width: 100%;
		margin: 36px 0 44px;
	}

	.research-content .ellipsis-implication-panel > .wp-block-group__inner-container {
		grid-template-columns: 1fr;
	}

	.editor-styles-wrapper .ellipsis-report-hero + .ellipsis-key-finding {
		grid-template-columns: 1fr;
	}

	.editor-styles-wrapper .ellipsis-report-hero + .ellipsis-key-finding .ellipsis-key-finding__label {
		grid-row: auto;
		padding: 22px 22px 0;
		border-right: 0;
	}

	.editor-styles-wrapper .ellipsis-report-hero + .ellipsis-key-finding .ellipsis-key-finding__finding {
		padding: 18px 22px 16px;
		font-size: 24px;
		line-height: 1.25;
	}

	.editor-styles-wrapper .ellipsis-report-hero + .ellipsis-key-finding .ellipsis-key-finding__detail {
		padding: 0 22px 18px;
		font-size: 16px;
		line-height: 1.5;
	}

	.editor-styles-wrapper .ellipsis-report-hero + .ellipsis-key-finding .ellipsis-key-finding__confidence {
		grid-column: 1;
		margin: 0 22px 24px;
	}

	.editor-styles-wrapper .ellipsis-implication-panel {
		max-width: 100%;
		margin: 36px 0 44px;
	}

	.editor-styles-wrapper .ellipsis-implication-panel > .wp-block-group__inner-container,
	.editor-styles-wrapper .ellipsis-implication-panel > .block-editor-inner-blocks > .block-editor-block-list__layout {
		grid-template-columns: 1fr;
	}

	.research-content .ellipsis-implication-panel__label {
		padding: 18px 20px;
		border-right: 0;
		border-bottom: var(--e-border);
	}

	.editor-styles-wrapper .ellipsis-implication-panel__label {
		padding: 18px 20px;
		border-right: 0;
		border-bottom: var(--e-border);
	}

	.research-content .ellipsis-implication-panel ol {
		grid-column: 1;
		grid-row: auto;
	}

	.editor-styles-wrapper .ellipsis-implication-panel ol {
		grid-column: 1;
		grid-row: auto;
	}

	.research-content .ellipsis-implication-panel li {
		grid-template-columns: 32px minmax(0, 1fr);
		gap: 12px;
		padding: 18px 20px;
		font-size: 16px;
		line-height: 1.5;
	}

	.editor-styles-wrapper .ellipsis-implication-panel li {
		grid-template-columns: 32px minmax(0, 1fr);
		gap: 12px;
		padding: 18px 20px;
		font-size: 16px;
		line-height: 1.5;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.footer-address {
		order: 3;
	}

	.footer-legal {
		flex-direction: column;
	}

	.cookie-banner {
		align-items: flex-start;
		flex-direction: column;
		gap: 16px;
		padding: 24px 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 1ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 1ms !important;
	}

	.reveal,
	.reveal.is-visible {
		opacity: 1;
		transform: none;
	}
}
