:root {
	--color-ink: #090908;
	--color-muted: #5e5a54;
	--color-paper: #fffdfa;
	--color-blue: #01b7ef;
	--color-orange: #f05d22;
	--color-red: #e30d55;
	--color-bone: #f5efe5;
	--color-line: rgba(9, 9, 8, .12);
	--font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--site-gutter: clamp(1rem, 4vw, 4rem);
	--header-delay: 2.45s;
	--copy-delay: 3.18s;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--color-ink);
	background: var(--color-paper);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.5;
}

body.home {
	overflow-x: hidden;
}

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

a {
	color: inherit;
	text-decoration-thickness: .08em;
	text-underline-offset: .18em;
}

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

.skip-link:focus {
	z-index: 20;
	top: 1rem;
	left: 1rem;
	width: auto;
	height: auto;
	padding: .75rem 1rem;
	margin: 0;
	clip: auto;
	background: var(--color-ink);
	color: #fff;
}

.site-shell {
	width: min(100% - (var(--site-gutter) * 2), 1180px);
	margin-inline: auto;
}

.site-shell--narrow {
	width: min(100% - (var(--site-gutter) * 2), 760px);
}

.site-header {
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	padding-block: clamp(1rem, 2.2vw, 1.75rem);
	background: rgba(255, 253, 250, .84);
	backdrop-filter: blur(18px);
	transform: translateY(-105%);
	opacity: 0;
	animation: headerReveal .62s cubic-bezier(.2, .8, .2, 1) var(--header-delay) forwards;
}

body.admin-bar .site-header {
	top: calc(32px + .55rem);
}

html.has-js body.home:not(.is-intro-ready) .site-header,
html.has-js body.home:not(.is-intro-ready) .hero__copy,
html.has-js body.home:not(.is-intro-ready) .hero__blink--keeper,
html.has-js body.home:not(.is-intro-ready) .hero__blink--base,
html.has-js body.home:not(.is-intro-ready) .hero__blink--cyan,
html.has-js body.home:not(.is-intro-ready) .hero__blink--red,
html.has-js body.home:not(.is-intro-ready) .holo-field,
html.has-js body.home:not(.is-intro-ready) .holo-field::before,
html.has-js body.home:not(.is-intro-ready) .holo-field::after {
	animation-play-state: paused;
}

.site-header.is-scrolled {
	border-bottom: 1px solid var(--color-line);
	box-shadow: 0 12px 30px rgba(9, 9, 8, .06);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.brand {
	display: inline-flex;
	align-items: center;
	width: clamp(8.5rem, 12vw, 13rem);
	text-decoration: none;
}

.brand__logo {
	display: block;
	width: 100%;
}

.brand__logo img {
	width: 100%;
}

.primary-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 2vw, 1.75rem);
	padding: 0;
	margin: 0;
	list-style: none;
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.primary-nav a {
	text-decoration: none;
}

.nav-toggle {
	display: none;
	width: 2.75rem;
	aspect-ratio: 1;
	padding: 0;
	border: 1px solid var(--color-line);
	border-radius: 999px;
	background: #fff;
}

.nav-toggle__line {
	display: block;
	width: 1rem;
	height: 2px;
	margin: .24rem auto;
	background: var(--color-ink);
}

.hero--blink {
	position: relative;
	display: grid;
	grid-template-columns: minmax(19rem, 44vw) minmax(20rem, 1fr);
	align-items: end;
	min-height: min(1000px, 100svh);
	padding: clamp(7rem, 13vh, 12rem) var(--site-gutter) 0;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(255, 253, 250, 1) 0%, rgba(255, 253, 250, .98) 42%, rgba(255, 253, 250, .86) 66%, rgba(255, 253, 250, 1) 100%),
		radial-gradient(circle at 72% 45%, rgba(1, 183, 239, .12), transparent 32%),
		var(--color-paper);
}

.hero__copy {
	position: relative;
	z-index: 4;
	align-self: center;
	padding-bottom: min(12vh, 7rem);
	opacity: 0;
	transform: translateX(-1rem);
	animation: copyReveal .72s cubic-bezier(.2, .8, .2, 1) var(--copy-delay) forwards;
}

.hero__copy h1 {
	max-width: min(44rem, 48vw);
	margin: 0;
}

.hero__headline-image {
	width: min(100%, 42rem);
}

.hero__support {
	max-width: 33rem;
	margin: 2rem 0 0;
	color: var(--color-muted);
	font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: .8rem;
	margin-top: 2rem;
}

.hero__instagram {
	display: inline-flex;
	align-items: center;
	flex-direction: column;
	width: max-content;
	margin: 2.35rem 0 0 clamp(3rem, 5vw, 4rem);
	color: var(--color-ink);
	font-size: clamp(.95rem, 1.1vw, 1.08rem);
	line-height: 1.15;
	text-align: center;
	text-decoration: none;
	transition: transform .18s ease;
}

.hero__instagram img {
	width: clamp(4.75rem, 6.8vw, 6.15rem);
	filter: drop-shadow(0 10px 12px rgba(9, 9, 8, .16));
	transition: filter .18s ease, transform .18s ease;
}

.hero__instagram span {
	margin-top: .35rem;
	white-space: nowrap;
}

.hero__instagram:hover,
.hero__instagram:focus-visible {
	transform: translateY(-2px);
}

.hero__instagram:hover img,
.hero__instagram:focus-visible img {
	filter: drop-shadow(0 12px 14px rgba(9, 9, 8, .2));
	transform: rotate(-3deg);
}

.hero__instagram:focus-visible {
	outline: 2px solid var(--color-blue);
	outline-offset: .35rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.9rem;
	padding: .78rem 1.12rem;
	border: 2px solid var(--color-ink);
	border-radius: 0;
	background: var(--color-ink);
	color: #fff;
	font-size: .78rem;
	font-weight: 900;
	letter-spacing: .07em;
	text-decoration: none;
	text-transform: uppercase;
	box-shadow: 5px 5px 0 var(--color-orange);
	transition: transform .18s ease, box-shadow .18s ease;
}

.button:hover,
.button:focus-visible {
	transform: translate(2px, 2px);
	box-shadow: 3px 3px 0 var(--color-orange);
}

.button--ghost {
	background: #fff;
	color: var(--color-ink);
	box-shadow: 5px 5px 0 var(--color-blue);
}

.button--light {
	background: #fff;
	color: var(--color-ink);
	box-shadow: 5px 5px 0 var(--color-blue);
}

.button--ghost-light {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, .84);
	box-shadow: 5px 5px 0 var(--color-orange);
}

.hero__blink-wrap {
	position: relative;
	z-index: 2;
	align-self: end;
	justify-self: end;
	width: min(57vw, 48rem);
	min-width: 25rem;
	margin-right: clamp(-9rem, -6vw, -2rem);
	pointer-events: none;
	transform: translateY(clamp(1.25rem, 4vh, 3rem));
}

.hero__blink {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 100%;
	opacity: 0;
}

.hero__blink img {
	width: 100%;
}

.hero__blink--base {
	z-index: 3;
	filter: drop-shadow(0 24px 28px rgba(0, 0, 0, .12));
	animation: blinkMaterialize 2.2s steps(1, end) .1s both;
}

.hero__blink--base img {
	animation: blinkSettle .72s cubic-bezier(.2, .8, .2, 1) 1.78s both;
}

.hero__blink--keeper {
	position: relative;
	z-index: 1;
	filter: drop-shadow(0 24px 28px rgba(0, 0, 0, .12));
	animation: keeperReveal .12s linear 2.14s both;
}

body.home.is-intro-complete .hero__blink--base {
	opacity: 0;
	animation: none;
}

body.home.is-intro-complete .hero__blink--base img {
	transform: translate3d(0, 0, 0) scale(1);
	animation: none;
}

body.home.is-intro-complete .hero__blink--keeper {
	opacity: 1;
	animation: none;
}

.hero__blink--cyan,
.hero__blink--red {
	z-index: 4;
	mix-blend-mode: multiply;
	clip-path: inset(0 0 100% 0);
}

.hero__blink--cyan {
	filter: drop-shadow(-10px 0 0 rgba(0, 220, 255, .68)) saturate(1.8) hue-rotate(8deg);
	animation: holoChannelA 1.92s steps(1, end) .08s forwards;
}

.hero__blink--red {
	filter: drop-shadow(9px 0 0 rgba(255, 28, 87, .48)) saturate(1.4);
	animation: holoChannelB 1.86s steps(1, end) .16s forwards;
}

.holo-field {
	position: absolute;
	z-index: 3;
	inset: 0 -4% 0 -4%;
	opacity: 0;
	mix-blend-mode: multiply;
	background:
		repeating-linear-gradient(180deg, rgba(0, 184, 239, .22) 0 1px, transparent 1px 8px),
		linear-gradient(90deg, transparent, rgba(0, 184, 239, .24), transparent);
	animation: holoScan 1.9s linear .14s forwards;
}

.holo-field::before,
.holo-field::after {
	position: absolute;
	content: "";
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--color-blue);
	box-shadow: 0 0 18px rgba(0, 184, 239, .78);
	opacity: 0;
}

.holo-field::before {
	top: 18%;
	animation: holoLine 1.1s linear .1s 2;
}

.holo-field::after {
	top: 76%;
	background: var(--color-red);
	box-shadow: 0 0 18px rgba(227, 13, 85, .58);
	animation: holoLine 1.25s linear .24s 2;
}

.intro-band {
	padding: clamp(3rem, 7vw, 6rem) 0;
	border-block: 1px solid var(--color-line);
	background: var(--color-ink);
	color: #fff;
}

.intro-band__inner p {
	max-width: 62rem;
	margin: 0;
	font-size: clamp(1.45rem, 3.2vw, 3.45rem);
	line-height: 1.05;
}

.section {
	padding: clamp(4rem, 8vw, 7rem) 0;
}

.section__grid,
.split-section,
.work-band__inner,
.image-band__inner,
.about-band__inner {
	display: grid;
	grid-template-columns: minmax(14rem, .72fr) 1.28fr;
	gap: clamp(2rem, 6vw, 6rem);
}

.split-section {
	align-items: start;
}

.section__heading--sticky {
	position: sticky;
	top: 8rem;
}

.section-kicker {
	margin: 0 0 .8rem;
	color: var(--color-orange);
	font-size: .78rem;
	font-weight: 900;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.section__heading h2,
.work-band h2,
.footer-cta h2 {
	margin: 0;
	font-size: clamp(2rem, 4.6vw, 5rem);
	line-height: .95;
}

.section__heading--wide {
	max-width: 52rem;
	margin-bottom: 2.8rem;
}

.section-lede {
	max-width: 27rem;
	margin: 1.2rem 0 0;
	color: var(--color-muted);
	font-size: 1.06rem;
}

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

.service-card {
	min-height: 15rem;
	padding: 1.4rem;
	border: 2px solid var(--color-ink);
	background: #fff;
	box-shadow: 7px 7px 0 rgba(9, 9, 8, .08);
}

.service-card__number {
	display: block;
	margin-bottom: 2rem;
	color: var(--color-blue);
	font-size: .82rem;
	font-weight: 900;
}

.service-card h3 {
	margin: 0 0 .75rem;
	font-size: 1.25rem;
}

.service-card p,
.proof-item p,
.process-list p,
.pricing-card p {
	margin: 0;
	color: var(--color-muted);
}

.image-band {
	padding: clamp(4rem, 8vw, 7rem) 0 0;
	overflow: hidden;
	background: var(--color-bone);
}

.image-band__inner {
	align-items: center;
	grid-template-columns: minmax(18rem, .9fr) minmax(16rem, .72fr);
}

.image-band h2,
.about-band h2 {
	margin: 0;
	font-size: clamp(2rem, 4.3vw, 4.6rem);
	line-height: .96;
}

.image-band p:not(.section-kicker),
.about-band p:not(.section-kicker) {
	max-width: 37rem;
	margin: 1.2rem 0 0;
	color: var(--color-muted);
	font-size: 1.08rem;
}

.image-band__art {
	align-self: end;
	justify-self: end;
	width: min(100%, 25rem);
	margin-bottom: -1.5rem;
}

.pricing-section {
	background:
		linear-gradient(180deg, rgba(1, 183, 239, .07), transparent 22rem),
		var(--color-paper);
}

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

.pricing-card {
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
	min-height: 100%;
	padding: 1.4rem;
	border: 2px solid var(--color-ink);
	background: #fff;
	box-shadow: 7px 7px 0 rgba(9, 9, 8, .08);
}

.pricing-card--featured {
	box-shadow: 7px 7px 0 var(--color-blue);
}

.pricing-card__eyebrow {
	margin: 0;
	color: var(--color-orange);
	font-size: .72rem;
	font-weight: 900;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.pricing-card h3 {
	margin: 0;
	font-size: 1.45rem;
	line-height: 1.05;
}

.pricing-card__price {
	color: var(--color-ink) !important;
	font-size: 1.6rem;
	font-weight: 900;
	line-height: 1;
}

.pricing-list,
.tier-list,
.addon-list {
	display: grid;
	gap: .55rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.pricing-list li,
.addon-list li {
	position: relative;
	padding-left: 1rem;
	color: var(--color-muted);
}

.pricing-list li::before,
.addon-list li::before {
	position: absolute;
	left: 0;
	color: var(--color-blue);
	content: "+";
	font-weight: 900;
}

.tier-list {
	padding-top: .2rem;
	border-top: 1px solid var(--color-line);
}

.tier-list li,
.price-line {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	padding-top: .75rem;
	border-top: 1px solid var(--color-line);
	color: var(--color-muted);
}

.tier-list li:first-child {
	border-top: 0;
}

.tier-list strong,
.price-line strong {
	color: var(--color-ink);
	text-align: right;
	white-space: nowrap;
}

.minimum-note {
	display: grid;
	gap: .25rem;
	margin-top: .2rem !important;
	padding-top: 1rem;
	border-top: 2px solid var(--color-ink);
	color: var(--color-ink) !important;
	font-size: .95rem;
	font-weight: 900;
	line-height: 1.2;
}

.minimum-note strong {
	display: block;
	color: var(--color-ink);
	font-size: 1.2rem;
}

.minimum-note span {
	color: var(--color-muted);
}

.add-on-strip {
	display: grid;
	grid-template-columns: minmax(12rem, 18rem) 1fr;
	align-items: center;
	gap: clamp(1.5rem, 4vw, 3rem);
	margin-top: 1.4rem;
	padding: 1.4rem;
	border: 2px solid var(--color-ink);
	background: var(--color-ink);
	color: #fff;
}

.add-on-strip__art {
	align-self: end;
	margin: -2.8rem 0 -1.4rem;
}

.add-on-strip .addon-list li {
	color: rgba(255, 255, 255, .78);
}

.add-on-strip .addon-list li::before {
	color: var(--color-orange);
}

.work-band {
	padding: clamp(4rem, 8vw, 7rem) 0;
	background: var(--color-bone);
}

.proof-list {
	display: grid;
	gap: 1rem;
}

.proof-item {
	padding-bottom: 1.25rem;
	border-bottom: 2px solid var(--color-ink);
}

.proof-item span,
.process-list span {
	display: block;
	margin-bottom: .35rem;
	font-size: 1.15rem;
	font-weight: 900;
}

.process-list {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 1rem;
	padding: 0;
	margin: 0;
	list-style: none;
	counter-reset: process;
}

.process-list li {
	position: relative;
	min-height: 15rem;
	padding: 1.3rem;
	border-top: 3px solid var(--color-ink);
	counter-increment: process;
}

.process-list li::before {
	display: block;
	margin-bottom: 4rem;
	color: var(--color-red);
	content: "0" counter(process);
	font-weight: 900;
}

.about-band {
	padding: clamp(4rem, 8vw, 7rem) 0 0;
	overflow: hidden;
	background: var(--color-bone);
}

.about-band__inner {
	align-items: end;
	grid-template-columns: minmax(15rem, .52fr) minmax(18rem, 1fr);
}

.about-band__art {
	width: min(100%, 24rem);
	margin-bottom: -1.1rem;
}

.about-band__copy {
	align-self: center;
	padding-bottom: clamp(3rem, 7vw, 6rem);
}

.pull-quote {
	color: var(--color-ink) !important;
	font-size: 1.4rem !important;
	font-weight: 800;
	line-height: 1.18;
}

.about-band .button {
	margin-top: 1.8rem;
}

.site-footer {
	background: var(--color-ink);
	color: #fff;
}

.footer-cta {
	padding: clamp(4rem, 8vw, 7rem) 0;
}

.footer-cta p:not(.section-kicker) {
	max-width: 39rem;
	margin: 1.3rem 0 0;
	color: rgba(255, 255, 255, .72);
	font-size: 1.08rem;
}

.footer-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: .8rem;
	margin-top: 2rem;
}

.footer-base {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1.3rem 0;
	border-top: 1px solid rgba(255, 255, 255, .16);
	color: rgba(255, 255, 255, .7);
	font-size: .85rem;
}

.footer-base p {
	margin: 0;
}

.footer-base__logo {
	display: block;
	width: 7.5rem;
}

.footer-base__logo img {
	width: 100%;
}

.footer-nav {
	display: flex;
	gap: 1rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.content-page {
	padding: clamp(7rem, 14vw, 10rem) 0 clamp(4rem, 8vw, 7rem);
}

.entry-content h1,
.content-page__header h1 {
	margin: 0 0 1.5rem;
	font-size: clamp(2.4rem, 6vw, 5rem);
	line-height: .96;
}

.entry-content {
	font-size: 1.08rem;
}

@keyframes headerReveal {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes copyReveal {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes blinkMaterialize {
	0% {
		opacity: 0;
		transform: translate3d(0, 1rem, 0) scale(.985);
		filter: brightness(2.4) contrast(1.55) saturate(0) hue-rotate(160deg);
		clip-path: inset(100% 0 0 0);
	}
	9% {
		opacity: .26;
		clip-path: inset(68% 0 15% 0);
		transform: translate3d(-8px, .7rem, 0) scale(.99);
	}
	18% {
		opacity: .58;
		clip-path: inset(18% 0 52% 0);
		transform: translate3d(7px, .45rem, 0) scale(1.004);
	}
	30% {
		opacity: .18;
		clip-path: inset(42% 0 28% 0);
	}
	41% {
		opacity: .72;
		clip-path: inset(0 0 42% 0);
		transform: translate3d(-4px, .2rem, 0) scale(.997);
	}
	54% {
		opacity: .38;
		clip-path: inset(10% 0 16% 0);
	}
	68% {
		opacity: .88;
		clip-path: inset(0 0 10% 0);
	}
	82% {
		opacity: .52;
		clip-path: inset(0 0 0 0);
		filter: brightness(1.6) contrast(1.32) saturate(1.9) hue-rotate(18deg);
	}
	100% {
		opacity: 1;
		clip-path: inset(0 0 0 0);
		transform: translate3d(0, 0, 0) scale(1);
		filter: drop-shadow(0 24px 28px rgba(0, 0, 0, .12));
	}
}

@keyframes blinkSettle {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	40% {
		transform: translate3d(0, -4px, 0) scale(1.006);
	}
	100% {
		transform: translate3d(0, 0, 0) scale(1);
	}
}

@keyframes keeperReveal {
	0%,
	99% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes holoChannelA {
	0% {
		opacity: 0;
		clip-path: inset(100% 0 0 0);
		transform: translateX(-16px);
	}
	13% {
		opacity: .76;
		clip-path: inset(66% 0 18% 0);
	}
	28% {
		opacity: .44;
		clip-path: inset(22% 0 54% 0);
		transform: translateX(12px);
	}
	46% {
		opacity: .68;
		clip-path: inset(3% 0 36% 0);
	}
	64% {
		opacity: .5;
		clip-path: inset(0 0 12% 0);
		transform: translateX(-7px);
	}
	82% {
		opacity: .16;
		clip-path: inset(0 0 0 0);
	}
	100% {
		opacity: 0;
		clip-path: inset(0 0 0 0);
		transform: translateX(0);
	}
}

@keyframes holoChannelB {
	0% {
		opacity: 0;
		clip-path: inset(100% 0 0 0);
		transform: translateX(18px);
	}
	11% {
		opacity: .38;
		clip-path: inset(78% 0 9% 0);
	}
	31% {
		opacity: .68;
		clip-path: inset(32% 0 40% 0);
		transform: translateX(-9px);
	}
	51% {
		opacity: .4;
		clip-path: inset(8% 0 22% 0);
	}
	73% {
		opacity: .52;
		clip-path: inset(0 0 0 0);
		transform: translateX(8px);
	}
	100% {
		opacity: 0;
		clip-path: inset(0 0 0 0);
		transform: translateX(0);
	}
}

@keyframes holoScan {
	0% {
		opacity: 0;
		transform: translateY(8%);
	}
	18%,
	68% {
		opacity: .82;
	}
	100% {
		opacity: 0;
		transform: translateY(-4%);
	}
}

@keyframes holoLine {
	0% {
		opacity: 0;
		transform: translateY(-140px);
	}
	20%,
	74% {
		opacity: .9;
	}
	100% {
		opacity: 0;
		transform: translateY(310px);
	}
}

@media (max-width: 920px) {
	.site-header {
		padding-block: .8rem;
	}

	.nav-toggle {
		display: block;
	}

	.primary-nav {
		position: absolute;
		top: calc(100% + .55rem);
		right: var(--site-gutter);
		display: none;
		min-width: 13rem;
		padding: 1rem;
		border: 2px solid var(--color-ink);
		background: #fff;
		box-shadow: 5px 5px 0 var(--color-blue);
	}

	.primary-nav.is-open {
		display: block;
	}

	.primary-nav__list {
		align-items: flex-start;
		flex-direction: column;
		gap: .85rem;
	}

	.hero--blink {
		grid-template-columns: 1fr;
		align-items: end;
		min-height: 100svh;
		padding-top: 6rem;
	}

	.hero__copy {
		align-self: start;
		padding-bottom: 1rem;
	}

	.hero__copy h1 {
		max-width: 30rem;
	}

	.hero__headline-image {
		width: min(100%, 28rem);
	}

	.hero__support {
		max-width: 28rem;
		margin-top: 1.25rem;
	}

	.hero__blink-wrap {
		width: min(88vw, 32rem);
		min-width: 0;
		margin-right: -12vw;
		margin-top: -3rem;
		transform: translateY(1.5rem);
	}

	.section__grid,
	.split-section,
	.work-band__inner,
	.image-band__inner,
	.about-band__inner,
	.pricing-grid,
	.add-on-strip,
	.process-list {
		grid-template-columns: 1fr;
	}

	.section__heading--sticky {
		position: static;
	}

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

	.image-band__art,
	.about-band__art {
		justify-self: center;
	}

	.image-band__art {
		width: min(100%, 21rem);
	}

	.about-band__art {
		order: 2;
	}

	.about-band__copy {
		padding-bottom: 0;
	}

	.process-list {
		gap: .3rem;
	}

	.process-list li {
		min-height: auto;
	}

	.process-list li::before {
		margin-bottom: 1rem;
	}
}

@media (max-width: 560px) {
	:root {
		--site-gutter: 1rem;
	}

	.brand {
		width: 8rem;
	}

	.hero--blink {
		min-height: 100svh;
		padding-top: 5.5rem;
	}

	.hero__copy {
		z-index: 5;
	}

	.hero__support {
		font-size: .96rem;
	}

	.hero__actions {
		margin-top: 1.2rem;
	}

	.hero__instagram {
		margin: 1.45rem 0 0 clamp(1rem, 8vw, 2rem);
		font-size: .95rem;
	}

	.hero__instagram img {
		width: 5rem;
	}

	.button {
		width: 100%;
	}

	.hero__blink-wrap {
		width: 112vw;
		margin-right: -30vw;
		margin-top: -1.5rem;
		transform: translateY(1rem);
	}

	.intro-band__inner p {
		font-size: clamp(1.45rem, 10vw, 3rem);
	}

	.service-card,
	.process-list li {
		min-height: auto;
	}

	.pricing-card,
	.add-on-strip {
		padding: 1.1rem;
	}

	.tier-list li,
	.price-line {
		display: grid;
		gap: .2rem;
	}

	.tier-list strong,
	.price-line strong {
		text-align: left;
		white-space: normal;
	}

	.add-on-strip__art {
		justify-self: center;
		width: min(100%, 16rem);
		margin: -2rem 0 0;
	}

	.footer-base {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media screen and (max-width: 782px) {
	body.admin-bar .site-header {
		top: calc(46px + .45rem);
	}
}

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

	.site-header,
	.hero__copy,
	.hero__blink--keeper,
	.hero__blink--base {
		opacity: 1;
		transform: none;
		clip-path: none;
	}

	.hero__blink--cyan,
	.hero__blink--red,
	.holo-field {
		display: none;
	}
}
