:root {
	--apl-ink: #111817;
	--apl-ink-2: #22302e;
	--apl-paper: #f4efe5;
	--apl-panel: #fff9ef;
	--apl-muted: #746f66;
	--apl-line: rgba(17, 24, 23, 0.16);
	--apl-green: #2e6f5d;
	--apl-coral: #e25f46;
	--apl-blue: #4f86a8;
	--apl-yellow: #d7a642;
	--apl-shadow: 0 28px 90px rgba(17, 24, 23, 0.18);
	--apl-radius: 8px;
	--apl-max: 1180px;
	--apl-font: "Aptos", "Segoe UI", sans-serif;
	--apl-display: Georgia, "Times New Roman", serif;
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.apl-site,
.apl-site {
	margin: 0;
	overflow-x: hidden;
	color: var(--apl-ink);
	background:
		linear-gradient(90deg, rgba(17, 24, 23, 0.055) 1px, transparent 1px),
		linear-gradient(0deg, rgba(17, 24, 23, 0.04) 1px, transparent 1px),
		radial-gradient(ellipse at 50% -20%, rgba(226, 95, 70, 0.18), transparent 42%),
		var(--apl-paper);
	background-size: 34px 34px, 34px 34px, 100% 900px, auto;
	font-family: var(--apl-font);
	font-size: 16px;
	line-height: 1.55;
}

body.apl-site::before {
	position: fixed;
	inset: 0;
	z-index: -1;
	content: "";
	background:
		linear-gradient(115deg, transparent 0 38%, rgba(46, 111, 93, 0.08) 38% 48%, transparent 48% 100%),
		linear-gradient(65deg, transparent 0 62%, rgba(79, 134, 168, 0.08) 62% 70%, transparent 70% 100%);
	pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
	body.apl-site::before {
		animation: aplBackdropDrift 18s var(--ease-out) infinite alternate;
	}
}

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

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

button,
input {
	font: inherit;
}

.skip-link {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 40;
	padding: 10px 14px;
	background: var(--apl-ink);
	color: #fff;
	transform: translateY(-160%);
}

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	border-bottom: 1px solid rgba(17, 24, 23, 0.1);
	background: rgba(244, 239, 229, 0.76);
	backdrop-filter: blur(20px) saturate(140%);
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 24px;
	align-items: center;
	width: min(100% - 32px, var(--apl-max));
	min-height: 78px;
	margin: 0 auto;
}

.brand {
	display: inline-flex;
	gap: 12px;
	align-items: center;
	min-width: 0;
}

.brand__mark {
	position: relative;
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	overflow: hidden;
	border: 1px solid rgba(17, 24, 23, 0.28);
	border-radius: 6px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 38%),
		var(--apl-ink);
	color: #fff;
	font-family: var(--apl-display);
	font-size: 16px;
	font-weight: 800;
}

.brand__mark::after {
	position: absolute;
	inset: auto 8px 8px;
	height: 2px;
	background: var(--apl-coral);
	content: "";
}

.brand__text {
	display: grid;
	gap: 1px;
}

.brand__text strong {
	font-family: var(--apl-display);
	font-size: 23px;
	font-weight: 700;
	letter-spacing: 0;
}

.brand__text small {
	color: rgba(17, 24, 23, 0.62);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.primary-nav {
	justify-self: center;
}

.primary-nav__list,
.footer-nav {
	display: flex;
	gap: 8px;
	align-items: center;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-nav a,
.footer-nav a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 8px 10px;
	border-radius: 6px;
	color: rgba(17, 24, 23, 0.72);
	font-size: 14px;
	font-weight: 800;
}

.primary-nav a::after {
	position: absolute;
	right: 10px;
	bottom: 4px;
	left: 10px;
	height: 2px;
	background: var(--apl-coral);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 220ms var(--ease-out);
}

.primary-nav a:hover::after {
	transform: scaleX(1);
}

.primary-nav a:hover,
.footer-nav a:hover {
	color: var(--apl-ink);
}

.header-actions {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: flex-end;
}

.icon-link,
.cart-link {
	transition: transform 180ms var(--ease-out), border-color 180ms var(--ease-out), background 180ms var(--ease-out);
}

.icon-link {
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	border: 1px solid rgba(17, 24, 23, 0.18);
	border-radius: 50%;
	background: rgba(255, 249, 239, 0.72);
	color: var(--apl-green);
	font-weight: 900;
}

.cart-link {
	display: inline-flex;
	gap: 10px;
	align-items: center;
	min-height: 42px;
	padding: 0 6px 0 14px;
	border: 1px solid rgba(17, 24, 23, 0.18);
	border-radius: 999px;
	background: rgba(255, 249, 239, 0.76);
	font-weight: 900;
}

.icon-link:hover,
.cart-link:hover {
	border-color: rgba(17, 24, 23, 0.34);
	transform: translateY(-2px);
}

.cart-link b {
	display: grid;
	min-width: 30px;
	height: 30px;
	place-items: center;
	border-radius: 50%;
	background: var(--apl-coral);
	color: #fff;
	font-size: 13px;
}

.site-main {
	min-height: 70vh;
}

.hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.22fr);
	align-items: center;
	width: min(100% - 32px, 1280px);
	min-height: calc(100vh - 78px);
	margin: 0 auto;
	padding: 70px 0 112px;
}

.hero::before {
	position: absolute;
	top: 42px;
	left: -22px;
	z-index: 0;
	width: 168px;
	height: 168px;
	border-top: 22px solid var(--apl-coral);
	border-left: 22px solid var(--apl-green);
	content: "";
	opacity: 0.9;
	pointer-events: none;
}

.hero__ticker {
	position: absolute;
	top: 24px;
	right: 0;
	z-index: 4;
	display: flex;
	gap: 6px;
	max-width: 56%;
	overflow: hidden;
	padding: 6px;
	border: 1px solid rgba(17, 24, 23, 0.14);
	border-radius: 999px;
	background: rgba(255, 249, 239, 0.72);
	box-shadow: 0 18px 40px rgba(17, 24, 23, 0.08);
}

.hero__ticker span {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 12px;
	border-radius: 999px;
	background: var(--apl-ink);
	color: #fff;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	white-space: nowrap;
}

@media (prefers-reduced-motion: no-preference) {
	.hero__ticker span {
		animation: aplTickerPulse 4.4s ease-in-out infinite;
	}

	.hero__ticker span:nth-child(2) {
		animation-delay: 0.28s;
	}

	.hero__ticker span:nth-child(3) {
		animation-delay: 0.56s;
	}

	.hero__ticker span:nth-child(4) {
		animation-delay: 0.84s;
	}
}

.hero__media {
	position: absolute;
	inset: 74px 0 92px 38%;
	overflow: hidden;
	border: 1px solid rgba(17, 24, 23, 0.14);
	border-radius: var(--apl-radius);
	background: #ddd5c8;
	box-shadow: var(--apl-shadow);
	transform: rotate(-0.7deg);
}

.hero__media::before {
	position: absolute;
	inset: 16px;
	z-index: 2;
	border: 1px solid rgba(255, 255, 255, 0.4);
	content: "";
	pointer-events: none;
}

.hero__media::after {
	position: absolute;
	inset: 0;
	z-index: 1;
	content: "";
	background:
		linear-gradient(90deg, rgba(244, 239, 229, 0.96), rgba(244, 239, 229, 0.58) 28%, rgba(244, 239, 229, 0) 68%),
		linear-gradient(180deg, rgba(17, 24, 23, 0), rgba(17, 24, 23, 0.16));
	pointer-events: none;
}

.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.03);
}

@media (prefers-reduced-motion: no-preference) {
	.hero__media img {
		animation: aplHeroImage 12s var(--ease-out) infinite alternate;
	}
}

.hero__content {
	position: relative;
	z-index: 3;
	max-width: 650px;
	padding: 34px 0;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 16px;
	color: var(--apl-green);
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
}

.eyebrow::before {
	width: 30px;
	height: 2px;
	background: currentColor;
	content: "";
}

.hero h1,
.page-hero h1 {
	margin: 0;
	font-family: var(--apl-display);
	font-size: clamp(64px, 9vw, 128px);
	font-weight: 700;
	line-height: 0.86;
	letter-spacing: 0;
}

.hero h1 {
	max-width: 720px;
	text-shadow: 0 18px 60px rgba(17, 24, 23, 0.16);
}

.hero p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
	max-width: 610px;
	margin: 26px 0 0;
	color: rgba(17, 24, 23, 0.76);
	font-size: clamp(18px, 2vw, 23px);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	overflow: hidden;
	padding: 12px 20px;
	border: 1px solid transparent;
	border-radius: 6px;
	font-weight: 950;
	cursor: pointer;
	transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.button::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.28), transparent);
	content: "";
	transform: translateX(-120%);
}

.button:hover {
	box-shadow: 0 16px 34px rgba(17, 24, 23, 0.16);
	transform: translateY(-3px);
}

.button:hover::after {
	transition: transform 520ms var(--ease-out);
	transform: translateX(120%);
}

.button--primary {
	background: var(--apl-ink);
	color: #fff;
}

.button--ghost {
	border-color: rgba(17, 24, 23, 0.22);
	background: rgba(255, 249, 239, 0.78);
}

.button--full {
	width: 100%;
}

.hero__metrics {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 22px;
}

.hero__metrics strong {
	padding: 8px 10px;
	border: 1px solid rgba(17, 24, 23, 0.14);
	border-radius: 999px;
	background: rgba(255, 249, 239, 0.76);
	color: rgba(17, 24, 23, 0.74);
	font-size: 12px;
}

.hero__status {
	position: absolute;
	right: 28px;
	bottom: 30px;
	z-index: 4;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	max-width: 720px;
}

.hero__status span {
	padding: 10px 13px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	background: rgba(17, 24, 23, 0.82);
	color: #fff;
	font-size: 12px;
	font-weight: 900;
}

.section,
.page-shell,
.shop-shell {
	width: min(100% - 32px, var(--apl-max));
	margin: 0 auto;
	padding: 76px 0;
}

.section--tight {
	padding-top: 44px;
}

.section__header {
	display: grid;
	gap: 8px;
	max-width: 820px;
	margin-bottom: 30px;
}

.section__header h2 {
	margin: 0;
	font-family: var(--apl-display);
	font-size: clamp(34px, 5vw, 62px);
	line-height: 0.96;
	letter-spacing: 0;
}

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

.workflow-grid article,
.requirements-grid article,
.content-card,
.timeline article {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(17, 24, 23, 0.13);
	border-radius: var(--apl-radius);
	background: rgba(255, 249, 239, 0.78);
	box-shadow: 0 20px 60px rgba(17, 24, 23, 0.09);
	transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out);
}

.workflow-grid article::after,
.content-card::after,
.timeline article::after {
	position: absolute;
	right: -42px;
	bottom: -42px;
	width: 118px;
	height: 118px;
	border: 16px solid rgba(46, 111, 93, 0.08);
	border-radius: 50%;
	content: "";
}

.workflow-grid article:hover,
.content-card:hover,
.timeline article:hover {
	border-color: rgba(17, 24, 23, 0.26);
	box-shadow: 0 30px 80px rgba(17, 24, 23, 0.14);
	transform: translateY(-6px);
}

.workflow-grid article {
	min-height: 252px;
	padding: 24px;
}

.workflow-grid span,
.timeline span {
	display: inline-grid;
	width: 44px;
	height: 44px;
	place-items: center;
	margin-bottom: 28px;
	border-radius: 50%;
	background: var(--apl-green);
	color: #fff;
	font-weight: 950;
	box-shadow: 0 14px 30px rgba(46, 111, 93, 0.24);
}

.workflow-grid article:nth-child(2) span {
	background: var(--apl-coral);
	box-shadow: 0 14px 30px rgba(226, 95, 70, 0.24);
}

.workflow-grid article:nth-child(3) span {
	background: var(--apl-blue);
	box-shadow: 0 14px 30px rgba(79, 134, 168, 0.24);
}

.workflow-grid h3,
.requirements-grid h2,
.timeline h2 {
	margin: 0 0 12px;
	font-family: var(--apl-display);
	font-size: 26px;
	line-height: 1.08;
}

.workflow-grid p,
.requirements-grid li,
.timeline p,
.content-card p,
.entry-content {
	color: rgba(17, 24, 23, 0.7);
}

.product-band {
	position: relative;
	padding-top: 58px;
	border-top: 1px solid var(--apl-line);
	border-bottom: 1px solid var(--apl-line);
}

.product-band::before {
	position: absolute;
	top: 0;
	right: calc(50% - 50vw);
	left: calc(50% - 50vw);
	height: 100%;
	background:
		linear-gradient(90deg, rgba(17, 24, 23, 0.025) 50%, transparent 50%),
		rgba(255, 249, 239, 0.24);
	background-size: 18px 18px;
	content: "";
	pointer-events: none;
}

.product-band > * {
	position: relative;
	z-index: 1;
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 10px;
}

.category-grid a {
	position: relative;
	display: grid;
	min-height: 154px;
	align-items: end;
	overflow: hidden;
	padding: 16px;
	border: 1px solid rgba(17, 24, 23, 0.15);
	border-radius: var(--apl-radius);
	background:
		linear-gradient(140deg, rgba(255, 249, 239, 0.96), rgba(46, 111, 93, 0.1)),
		var(--apl-panel);
	font-family: var(--apl-display);
	font-size: 24px;
	font-weight: 700;
	box-shadow: 0 18px 48px rgba(17, 24, 23, 0.08);
	transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.category-grid a::before {
	position: absolute;
	top: 14px;
	left: 14px;
	width: 24px;
	height: 24px;
	border-top: 5px solid var(--apl-coral);
	border-left: 5px solid var(--apl-coral);
	content: "";
}

.category-grid a::after {
	position: absolute;
	right: 12px;
	bottom: 12px;
	color: rgba(17, 24, 23, 0.28);
	content: "->";
	font-family: var(--apl-font);
	font-size: 18px;
	font-weight: 950;
	transition: transform 180ms var(--ease-out);
}

.category-grid a:nth-child(2n) {
	background:
		linear-gradient(140deg, rgba(255, 249, 239, 0.96), rgba(226, 95, 70, 0.12)),
		var(--apl-panel);
}

.category-grid a:hover {
	box-shadow: 0 26px 70px rgba(17, 24, 23, 0.14);
	transform: translateY(-6px) rotate(-0.5deg);
}

.category-grid a:hover::after {
	transform: translateX(4px);
}

.section__header--split {
	grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr);
	align-items: end;
	max-width: none;
}

.section__header--split > p {
	margin: 0 0 4px;
	color: rgba(17, 24, 23, 0.7);
}

.ready-products {
	position: relative;
}

.product-showcase {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.product-card {
	position: relative;
	display: grid;
	min-height: 430px;
	overflow: hidden;
	border: 1px solid rgba(17, 24, 23, 0.14);
	border-radius: var(--apl-radius);
	background: rgba(255, 249, 239, 0.82);
	box-shadow: 0 24px 70px rgba(17, 24, 23, 0.11);
	transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out);
}

.product-card:hover {
	border-color: rgba(17, 24, 23, 0.28);
	box-shadow: 0 34px 90px rgba(17, 24, 23, 0.17);
	transform: translateY(-8px);
}

.product-card__visual {
	position: relative;
	display: grid;
	min-height: 280px;
	place-items: center;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
		linear-gradient(0deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
		linear-gradient(140deg, #18201f, #314541);
	background-size: 24px 24px, 24px 24px, auto;
}

.product-card__visual::after {
	position: absolute;
	inset: 18px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	content: "";
}

.product-card__visual span {
	position: relative;
	z-index: 1;
	display: block;
	width: 46%;
	aspect-ratio: 0.78;
	border-radius: 20% 20% 10% 10%;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.58), transparent 38%),
		#f8f4ec;
	box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
}

.product-card__visual span::before,
.product-card__visual span::after {
	position: absolute;
	top: 18%;
	width: 34%;
	height: 26%;
	border-radius: 28% 18% 14% 28%;
	background: inherit;
	content: "";
}

.product-card__visual span::before {
	left: -24%;
	transform: rotate(18deg);
}

.product-card__visual span::after {
	right: -24%;
	transform: rotate(-18deg);
}

.product-card--hoodie .product-card__visual span {
	width: 54%;
	border-radius: 30% 30% 13% 13%;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 36%),
		#263633;
}

.product-card--hoodie .product-card__visual span::before,
.product-card--hoodie .product-card__visual span::after {
	top: 20%;
	height: 34%;
	background: #263633;
}

.product-card--hoodie .product-card__visual::before {
	position: absolute;
	z-index: 2;
	top: 58px;
	width: 62px;
	height: 44px;
	border: 8px solid rgba(255, 255, 255, 0.18);
	border-bottom: 0;
	border-radius: 999px 999px 0 0;
	content: "";
}

.product-card--tote .product-card__visual span {
	width: 48%;
	aspect-ratio: 0.82;
	border-radius: 5px 5px 14px 14px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent 36%),
		#d7c39e;
}

.product-card--tote .product-card__visual span::before,
.product-card--tote .product-card__visual span::after {
	top: -30px;
	width: 30%;
	height: 64px;
	border: 8px solid #d7c39e;
	border-bottom: 0;
	border-radius: 999px 999px 0 0;
	background: transparent;
}

.product-card--tote .product-card__visual span::before {
	left: 18%;
	transform: none;
}

.product-card--tote .product-card__visual span::after {
	right: 18%;
	transform: none;
}

.product-card--mug .product-card__visual span {
	width: 42%;
	aspect-ratio: 1;
	border-radius: 10px 10px 22px 22px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.72), transparent 42%),
		#f8f4ec;
}

.product-card--mug .product-card__visual span::before {
	top: 24%;
	right: -34%;
	left: auto;
	width: 42%;
	height: 48%;
	border: 12px solid #f8f4ec;
	border-left: 0;
	border-radius: 0 999px 999px 0;
	background: transparent;
	transform: none;
}

.product-card--mug .product-card__visual span::after {
	display: none;
}

.product-card__body {
	display: grid;
	gap: 8px;
	align-content: end;
	padding: 18px;
}

.product-card__body p {
	margin: 0;
	color: var(--apl-green);
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
}

.product-card__body h3 {
	margin: 0;
	font-family: var(--apl-display);
	font-size: 28px;
	line-height: 1;
}

.product-card__body div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 8px;
}

.product-card__body strong {
	font-family: var(--apl-display);
	font-size: 25px;
}

.product-card__body a {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 8px 12px;
	border-radius: 999px;
	background: var(--apl-ink);
	color: #fff;
	font-size: 13px;
	font-weight: 950;
}

.studio-preview-section {
	padding-bottom: 98px;
}

.studio-preview-section--page {
	padding-top: 32px;
}

.studio-shell {
	position: relative;
	display: grid;
	grid-template-columns: 240px minmax(0, 1fr) 254px;
	gap: 0;
	align-items: stretch;
	overflow: hidden;
	border: 1px solid rgba(17, 24, 23, 0.2);
	border-radius: var(--apl-radius);
	background: var(--apl-ink);
	box-shadow: var(--apl-shadow);
}

.studio-shell__topbar {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 10px;
	align-items: center;
	min-height: 44px;
	padding: 0 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(17, 24, 23, 0.92);
	color: #fff;
}

.studio-shell__topbar span {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--apl-coral);
	box-shadow: 18px 0 0 var(--apl-yellow), 36px 0 0 var(--apl-green);
}

.studio-shell__topbar strong {
	justify-self: center;
	font-size: 13px;
	text-transform: uppercase;
}

.studio-shell__topbar em {
	color: rgba(255, 255, 255, 0.62);
	font-size: 12px;
	font-style: normal;
	font-weight: 800;
}

.studio-panel {
	display: grid;
	align-content: start;
	gap: 16px;
	min-height: 560px;
	padding: 18px;
	background: #f5eee3;
}

.studio-panel--left {
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.studio-panel--right {
	border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.tool-group {
	display: grid;
	gap: 10px;
}

.tool-group p {
	margin: 0;
	color: rgba(17, 24, 23, 0.62);
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
}

.segmented-control {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 4px;
	padding: 4px;
	border: 1px solid var(--apl-line);
	border-radius: 8px;
	background: rgba(255, 249, 239, 0.72);
}

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

.product-picker button {
	min-height: 50px;
	border: 1px solid rgba(17, 24, 23, 0.14);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent),
		rgba(255, 249, 239, 0.7);
	color: rgba(17, 24, 23, 0.76);
	font-weight: 950;
	cursor: pointer;
	transition: transform 160ms var(--ease-out), background 160ms var(--ease-out), color 160ms var(--ease-out);
}

.product-picker button:hover,
.product-picker button.is-active {
	background: var(--apl-ink);
	color: #fff;
	transform: translateY(-2px);
}

.segmented-control button,
.tool-button {
	min-height: 39px;
	border: 1px solid transparent;
	border-radius: 6px;
	background: transparent;
	color: rgba(17, 24, 23, 0.72);
	font-weight: 900;
	cursor: pointer;
	transition: background 160ms var(--ease-out), transform 160ms var(--ease-out), color 160ms var(--ease-out);
}

.segmented-control button.is-active,
.tool-button:hover {
	background: var(--apl-ink);
	color: #fff;
}

.tool-button:hover {
	transform: translateX(3px);
}

.swatches {
	display: flex;
	gap: 9px;
}

.swatch {
	width: 38px;
	height: 38px;
	border: 2px solid transparent;
	border-radius: 50%;
	background: var(--swatch);
	box-shadow: inset 0 0 0 1px rgba(17, 24, 23, 0.16), 0 10px 22px rgba(17, 24, 23, 0.1);
	cursor: pointer;
	transition: transform 160ms var(--ease-out), border-color 160ms var(--ease-out);
}

.swatch:hover,
.swatch.is-active {
	border-color: var(--apl-coral);
	transform: translateY(-2px);
}

.upload-tile {
	display: grid;
	min-height: 100px;
	place-items: center;
	border: 1px dashed rgba(17, 24, 23, 0.34);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.46), transparent),
		rgba(255, 249, 239, 0.66);
	cursor: pointer;
	transition: border-color 180ms var(--ease-out), transform 180ms var(--ease-out), background 180ms var(--ease-out);
}

.upload-tile:hover {
	border-color: var(--apl-green);
	background: rgba(255, 249, 239, 0.92);
	transform: translateY(-2px);
}

.upload-tile input {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
}

.upload-tile span {
	font-weight: 950;
}

.generator-box textarea {
	width: 100%;
	min-height: 92px;
	resize: vertical;
	padding: 10px;
	border: 1px solid rgba(17, 24, 23, 0.18);
	border-radius: 8px;
	background: rgba(255, 249, 239, 0.82);
	color: var(--apl-ink);
}

.prompt-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.prompt-chips button {
	min-height: 30px;
	padding: 5px 9px;
	border: 1px solid rgba(17, 24, 23, 0.14);
	border-radius: 999px;
	background: rgba(255, 249, 239, 0.78);
	color: rgba(17, 24, 23, 0.7);
	font-size: 12px;
	font-weight: 900;
	cursor: pointer;
}

.prompt-chips button:hover {
	border-color: var(--apl-green);
	color: var(--apl-green);
}

.studio-canvas {
	position: relative;
	display: grid;
	min-height: 560px;
	place-items: center;
	overflow: hidden;
	padding: 30px;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
		linear-gradient(0deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
		linear-gradient(140deg, #17211f, #263533);
	background-size: 28px 28px, 28px 28px, auto;
}

.studio-canvas::before {
	position: absolute;
	inset: 18px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	content: "";
	pointer-events: none;
}

.studio-canvas::after {
	position: absolute;
	top: -25%;
	left: 28%;
	width: 2px;
	height: 150%;
	background: rgba(226, 95, 70, 0.42);
	content: "";
	transform: rotate(18deg);
}

@media (prefers-reduced-motion: no-preference) {
	.studio-canvas::after {
	animation: aplScan 4.5s ease-in-out infinite;
	}
}

.product-preview {
	transition: border-radius 220ms var(--ease-out), background 220ms var(--ease-out), transform 220ms var(--ease-out), width 220ms var(--ease-out);
}

.shirt-preview {
	--shirt-color: #f8f5ef;
	position: relative;
	z-index: 2;
	display: grid;
	width: min(76%, 430px);
	aspect-ratio: 0.8;
	place-items: center;
	border-radius: 22% 22% 12% 12%;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.45), transparent 32%),
		var(--shirt-color);
	box-shadow: 0 42px 90px rgba(0, 0, 0, 0.34);
	transition: background 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.shirt-preview:hover {
	transform: translateY(-4px) rotate(0.5deg);
}

.shirt-preview::before,
.shirt-preview::after {
	position: absolute;
	top: 76px;
	width: 34%;
	height: 28%;
	border-radius: 26% 18% 14% 28%;
	background: var(--shirt-color);
	content: "";
}

.shirt-preview::before {
	left: -22%;
	transform: rotate(18deg);
}

.shirt-preview::after {
	right: -22%;
	transform: rotate(-18deg);
}

.shirt-preview__neck {
	position: absolute;
	top: 28px;
	width: 98px;
	height: 54px;
	border: 10px solid rgba(17, 24, 23, 0.08);
	border-top: 0;
	border-radius: 0 0 999px 999px;
}

.product-preview--hoodie {
	width: min(78%, 450px);
	border-radius: 28% 28% 12% 12%;
}

.product-preview--hoodie .shirt-preview__neck {
	top: 24px;
	width: 124px;
	height: 68px;
	border: 12px solid rgba(17, 24, 23, 0.1);
	border-bottom: 0;
	border-radius: 999px 999px 0 0;
}

.product-preview--tote {
	width: min(58%, 330px);
	aspect-ratio: 0.78;
	border-radius: 7px 7px 18px 18px;
}

.product-preview--tote::before,
.product-preview--tote::after {
	top: -50px;
	width: 32%;
	height: 100px;
	border: 14px solid var(--shirt-color);
	border-bottom: 0;
	border-radius: 999px 999px 0 0;
	background: transparent;
}

.product-preview--tote::before {
	left: 18%;
	transform: none;
}

.product-preview--tote::after {
	right: 18%;
	transform: none;
}

.product-preview--tote .shirt-preview__neck {
	display: none;
}

.product-preview--mug {
	width: min(52%, 320px);
	aspect-ratio: 0.96;
	border-radius: 12px 12px 34px 34px;
}

.product-preview--mug::before {
	top: 24%;
	right: -34%;
	left: auto;
	width: 44%;
	height: 50%;
	border: 18px solid var(--shirt-color);
	border-left: 0;
	border-radius: 0 999px 999px 0;
	background: transparent;
	transform: none;
}

.product-preview--mug::after,
.product-preview--mug .shirt-preview__neck {
	display: none;
}

.print-zone {
	position: relative;
	z-index: 2;
	display: grid;
	width: 49%;
	aspect-ratio: 0.8;
	place-items: center;
	border: 2px dashed rgba(46, 111, 93, 0.58);
	color: rgba(17, 24, 23, 0.56);
	text-align: center;
}

.print-zone::before,
.print-zone::after {
	position: absolute;
	width: 18px;
	height: 18px;
	border-color: var(--apl-coral);
	content: "";
}

.print-zone::before {
	top: -5px;
	left: -5px;
	border-top: 3px solid;
	border-left: 3px solid;
}

.print-zone::after {
	right: -5px;
	bottom: -5px;
	border-right: 3px solid;
	border-bottom: 3px solid;
}

.print-zone b {
	display: block;
	margin-top: 12px;
	color: var(--apl-coral);
	font-family: var(--apl-display);
	font-size: clamp(30px, 4vw, 47px);
}

.studio-canvas__caption {
	position: absolute;
	right: 22px;
	bottom: 20px;
	z-index: 3;
	display: grid;
	gap: 2px;
	padding: 12px 14px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	background: rgba(17, 24, 23, 0.72);
	color: #fff;
	backdrop-filter: blur(12px);
}

.studio-canvas__caption strong {
	font-family: var(--apl-display);
	font-size: 20px;
}

.studio-canvas__caption span {
	color: rgba(255, 255, 255, 0.68);
	font-size: 12px;
	font-weight: 800;
}

.layers-list {
	display: grid;
	gap: 8px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.layers-list li {
	display: flex;
	gap: 10px;
	align-items: center;
	min-height: 42px;
	padding: 8px;
	border: 1px solid var(--apl-line);
	border-radius: 6px;
	background: rgba(255, 249, 239, 0.7);
	font-size: 14px;
	font-weight: 900;
	transition: transform 160ms var(--ease-out), background 160ms var(--ease-out);
}

.layers-list li:hover {
	background: rgba(255, 249, 239, 0.96);
	transform: translateX(-3px);
}

.layers-list span {
	width: 18px;
	height: 18px;
	border-radius: 4px;
	background: var(--apl-green);
}

.layers-list li:nth-child(2) span {
	background: var(--apl-coral);
}

.layers-list li:nth-child(3) span {
	background: var(--apl-blue);
}

.tool-group input[type="range"] {
	width: 100%;
	accent-color: var(--apl-green);
}

.price-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px;
	border-radius: 8px;
	background: rgba(46, 111, 93, 0.13);
}

.price-box span {
	color: rgba(17, 24, 23, 0.64);
	font-weight: 900;
}

.price-box strong {
	font-family: var(--apl-display);
	font-size: 30px;
}

.page-hero {
	width: min(100% - 32px, var(--apl-max));
	margin: 0 auto;
	padding: 82px 0 24px;
}

.page-hero--studio {
	padding-bottom: 0;
}

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

.requirements-grid article {
	padding: 24px;
}

.requirements-grid ul {
	display: grid;
	gap: 8px;
	padding-left: 20px;
	margin: 0;
}

.timeline {
	display: grid;
	gap: 16px;
}

.timeline article {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: 10px 22px;
	align-items: start;
	padding: 24px;
}

.timeline article p {
	grid-column: 2;
	margin: 0;
}

.timeline span {
	grid-row: span 2;
	margin-bottom: 0;
}

.content-list {
	display: grid;
	gap: 18px;
}

.content-card {
	padding: 28px;
}

.content-card h1 {
	margin: 0 0 12px;
	font-family: var(--apl-display);
	font-size: clamp(32px, 4vw, 50px);
}

.entry-content > *:first-child {
	margin-top: 0;
}

.shop-shell__intro {
	max-width: 760px;
	margin-bottom: 32px;
}

.shop-shell__intro h1 {
	margin: 0;
	font-family: var(--apl-display);
	font-size: clamp(44px, 6vw, 72px);
	line-height: 0.98;
}

.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	width: auto;
	padding: 14px;
	margin: 0;
	border: 1px solid var(--apl-line);
	border-radius: var(--apl-radius);
	background: rgba(255, 249, 239, 0.86);
	box-shadow: 0 18px 42px rgba(17, 24, 23, 0.08);
}

.woocommerce ul.products li.product .button {
	width: 100%;
	background: var(--apl-ink);
	color: #fff;
}

.template-grid,
.status-board {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.template-grid article,
.status-lane,
.upload-flow__panel,
.contact-grid article,
.policy-card {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(17, 24, 23, 0.14);
	border-radius: var(--apl-radius);
	background: rgba(255, 249, 239, 0.82);
	box-shadow: 0 24px 70px rgba(17, 24, 23, 0.1);
}

.template-grid article,
.status-lane,
.contact-grid article {
	min-height: 260px;
	padding: 22px;
	transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.template-grid article:hover,
.status-lane:hover,
.contact-grid article:hover {
	box-shadow: 0 34px 90px rgba(17, 24, 23, 0.15);
	transform: translateY(-6px);
}

.template-grid span,
.status-lane span {
	display: inline-grid;
	width: 44px;
	height: 44px;
	place-items: center;
	margin-bottom: 34px;
	border-radius: 50%;
	background: var(--apl-ink);
	color: #fff;
	font-weight: 950;
}

.template-grid h2,
.status-lane h2,
.file-rules h2,
.contact-grid h2 {
	margin: 0 0 10px;
	font-family: var(--apl-display);
	font-size: 28px;
	line-height: 1;
}

.template-grid p,
.status-lane p,
.file-rules li,
.contact-grid p {
	color: rgba(17, 24, 23, 0.7);
}

.upload-flow__panel {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
	gap: 0;
}

.upload-drop {
	display: grid;
	min-height: 430px;
	place-items: center;
	padding: 28px;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
		linear-gradient(0deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
		linear-gradient(140deg, #17211f, #314541);
	background-size: 26px 26px, 26px 26px, auto;
	color: #fff;
	text-align: center;
}

.upload-drop strong {
	display: block;
	font-family: var(--apl-display);
	font-size: clamp(34px, 5vw, 66px);
	line-height: 0.95;
}

.upload-drop span {
	max-width: 340px;
	color: rgba(255, 255, 255, 0.72);
}

.file-rules {
	display: grid;
	align-content: center;
	gap: 18px;
	padding: 30px;
}

.file-rules ul {
	display: grid;
	gap: 10px;
	padding-left: 20px;
	margin: 0;
}

.status-lane.is-active {
	background:
		linear-gradient(135deg, rgba(46, 111, 93, 0.16), transparent),
		rgba(255, 249, 239, 0.88);
}

.status-lane.is-active span {
	background: var(--apl-green);
}

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

.contact-grid article {
	display: grid;
	align-content: space-between;
	gap: 18px;
}

.policy-card .entry-content ul {
	display: grid;
	gap: 10px;
	padding-left: 20px;
}

.reveal-on-scroll {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 720ms var(--ease-out), transform 720ms var(--ease-out);
}

.reveal-on-scroll.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.site-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background:
		linear-gradient(135deg, rgba(226, 95, 70, 0.12), transparent 34%),
		#111817;
	color: #fff;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 24px;
	width: min(100% - 32px, var(--apl-max));
	margin: 0 auto;
	padding: 38px 0;
}

.site-footer p {
	max-width: 560px;
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
}

.footer-kicker {
	color: #fff !important;
	font-family: var(--apl-display);
	font-size: 26px;
	font-weight: 700;
}

.footer-nav a {
	color: rgba(255, 255, 255, 0.72);
}

@keyframes aplBackdropDrift {
	from {
		transform: translate3d(-18px, -8px, 0);
	}
	to {
		transform: translate3d(18px, 12px, 0);
	}
}

@keyframes aplHeroImage {
	from {
		transform: scale(1.03) translateX(0);
	}
	to {
		transform: scale(1.09) translateX(1.5%);
	}
}

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

@keyframes aplScan {
	0%,
	100% {
		left: 12%;
		opacity: 0;
	}
	18%,
	76% {
		opacity: 1;
	}
	50% {
		left: 86%;
	}
}

@media (prefers-reduced-motion: no-preference) {
	.hero__content > * {
		opacity: 0;
		transform: translateY(18px);
		animation: aplEnter 820ms var(--ease-out) forwards;
	}

	.hero__content > *:nth-child(2) {
		animation-delay: 90ms;
	}

	.hero__content > *:nth-child(3) {
		animation-delay: 180ms;
	}

	.hero__content > *:nth-child(4) {
		animation-delay: 270ms;
	}

	.hero__content > *:nth-child(5) {
		animation-delay: 360ms;
	}

	.hero__media {
		opacity: 0;
		animation: aplMediaEnter 900ms var(--ease-out) 180ms forwards;
	}
}

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

@keyframes aplMediaEnter {
	from {
		opacity: 0;
		transform: rotate(-0.7deg) translateY(24px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: rotate(-0.7deg) translateY(0) scale(1);
	}
}

@media (max-width: 980px) {
	.site-header__inner {
		grid-template-columns: 1fr auto;
	}

	.primary-nav {
		grid-column: 1 / -1;
		justify-self: start;
		width: 100%;
		overflow: visible;
		padding-bottom: 0;
	}

	.primary-nav__list {
		flex-wrap: wrap;
		align-items: stretch;
	}

	.primary-nav li {
		display: flex;
	}

	.hero {
		grid-template-columns: 1fr;
		min-height: auto;
		padding-top: 42px;
	}

	.hero::before {
		width: 118px;
		height: 118px;
	}

	.hero__ticker {
		position: relative;
		top: auto;
		right: auto;
		max-width: 100%;
		margin-bottom: 18px;
	}

	.hero__media {
		position: relative;
		inset: auto;
		height: min(68vw, 520px);
		order: 2;
		margin-top: 26px;
		transform: rotate(0);
	}

	.hero__media::after {
		background: linear-gradient(0deg, rgba(17, 24, 23, 0.18), rgba(244, 239, 229, 0) 58%);
	}

	.hero__status {
		position: relative;
		right: auto;
		bottom: auto;
		margin-top: 16px;
	}

	.workflow-grid,
	.requirements-grid,
	.section__header--split,
	.template-grid,
	.status-board,
	.woocommerce ul.products {
		grid-template-columns: 1fr;
	}

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

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

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

	.studio-shell {
		grid-template-columns: 1fr;
	}

	.studio-panel,
	.studio-canvas {
		min-height: auto;
	}

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

	.studio-panel--left,
	.studio-panel--right {
		border: 0;
	}

	.studio-panel--right {
		grid-template-columns: 1fr;
	}

	@media (prefers-reduced-motion: no-preference) {
		.hero__media {
			animation-name: aplMobileMediaEnter;
		}
	}
}

@keyframes aplMobileMediaEnter {
	from {
		opacity: 0;
		transform: translateY(24px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@media (max-width: 640px) {
	body.apl-site,
	.apl-site {
		font-size: 15px;
	}

	.site-header__inner {
		width: min(100% - 20px, var(--apl-max));
		gap: 12px;
	}

	.primary-nav__list {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		width: 100%;
		gap: 6px;
	}

	.primary-nav li {
		min-width: 0;
	}

	.primary-nav a {
		justify-content: center;
		width: 100%;
		min-height: 36px;
		padding: 7px 6px;
		border: 1px solid rgba(17, 24, 23, 0.1);
		background: rgba(255, 249, 239, 0.58);
		font-size: 12px;
		line-height: 1.12;
		text-align: center;
	}

	.brand__text small,
	.header-actions .icon-link {
		display: none;
	}

	.brand__text strong {
		font-size: 21px;
	}

	.cart-link span {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
	}

	.hero,
	.section,
	.page-shell,
	.shop-shell,
	.page-hero {
		width: min(100% - 20px, var(--apl-max));
	}

	.hero {
		padding-bottom: 62px;
	}

	.hero h1,
	.page-hero h1 {
		font-size: 62px;
	}

	.hero p:not(.eyebrow),
	.page-hero p:not(.eyebrow) {
		font-size: 17px;
	}

	.hero__actions,
	.hero__actions .button {
		width: 100%;
	}

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

	.category-grid a {
		min-height: 102px;
	}

	.product-showcase {
		grid-template-columns: 1fr;
	}

	.product-card {
		min-height: 380px;
	}

	.upload-drop {
		min-height: 320px;
	}

	.studio-shell__topbar {
		grid-template-columns: 1fr;
		gap: 4px;
		align-items: start;
		padding: 10px 14px;
	}

	.studio-shell__topbar strong {
		justify-self: start;
	}

	.studio-panel {
		grid-template-columns: 1fr;
		padding: 14px;
	}

	.studio-canvas {
		padding: 34px 12px;
	}

	.shirt-preview {
		width: 66%;
		min-width: 210px;
	}

	.timeline article {
		grid-template-columns: 1fr;
	}

	.timeline article p {
		grid-column: 1;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.footer-nav {
		flex-wrap: wrap;
	}
}

@media (max-width: 360px) {
	.primary-nav__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
