:root {
	--bg: #f2f1ed;
	--surface: #faf9f6;
	--surface-strong: #ffffff;
	--ink: #18181a;
	--ink-soft: #35353a;
	--muted: #6c6b70;
	--line: rgba(24, 24, 26, 0.12);
	--line-strong: rgba(24, 24, 26, 0.2);
	--violet: #6b5ae6;
	--violet-deep: #3f2caf;
	--teal: #0c8d89;
	--teal-deep: #075d61;
	--rose: #d92967;
	--rose-deep: #8f1742;
	--radius-sm: 14px;
	--radius-md: 24px;
	--radius-lg: 36px;
	--shell: 1176px;
	--font: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	--display: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	--shadow-soft: 0 24px 80px rgba(30, 28, 22, 0.08);
	--shadow-card: 0 18px 48px rgba(30, 28, 22, 0.1);
}

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

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body.menu-open {
	overflow: hidden;
}

::selection {
	background: rgba(107, 90, 230, 0.2);
}

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

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

button,
input,
textarea,
select {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
p,
figure {
	margin-top: 0;
}

h1,
h2,
h3,
h4 {
	font-family: var(--display);
	font-weight: 650;
	letter-spacing: -0.03em;
	line-height: 1.1;
}

.section-shell {
	width: min(calc(100% - 48px), var(--shell));
	margin-inline: auto;
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 1000;
	padding: 10px 14px;
	background: var(--ink);
	border-radius: 10px;
	color: #fff;
	font-weight: 700;
	transform: translateY(-150%);
	transition: transform 160ms ease;
}

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

.site-header {
	position: sticky;
	top: var(--wp-admin--admin-bar--height, 0);
	z-index: 100;
	border-bottom: 1px solid transparent;
	background: rgba(242, 241, 237, 0.82);
	backdrop-filter: blur(18px) saturate(130%);
	-webkit-backdrop-filter: blur(18px) saturate(130%);
	transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
	border-bottom-color: var(--line);
	background: rgba(242, 241, 237, 0.94);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(calc(100% - 48px), var(--shell));
	min-height: 76px;
	margin-inline: auto;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	border-radius: 12px;
}

.brand__mark {
	display: inline-grid;
	width: 38px;
	height: 38px;
	place-items: center;
	background: linear-gradient(145deg, #2c2c31, #111113);
	border-radius: 11px;
	color: #fff;
	font-family: var(--display);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -0.04em;
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.12),
		0 5px 14px rgba(24, 24, 26, 0.1);
}

.brand__name {
	display: flex;
	flex-direction: column;
	gap: 4px;
	line-height: 1;
}

.brand__name strong {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.brand__name small {
	color: var(--muted);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.09em;
	line-height: 1.1;
}

.brand:focus-visible,
.primary-nav a:focus-visible,
.button:focus-visible,
.text-link:focus-visible,
.app-card:focus-visible,
.note-card__link:focus-visible {
	outline: 3px solid rgba(107, 90, 230, 0.38);
	outline-offset: 4px;
}

.primary-nav {
	display: flex;
	align-items: center;
	gap: 6px;
}

.primary-nav a {
	position: relative;
	padding: 10px 13px;
	border-radius: 999px;
	color: var(--ink-soft);
	font-size: 14px;
	font-weight: 600;
}

.primary-nav a::after {
	position: absolute;
	right: 13px;
	bottom: 5px;
	left: 13px;
	height: 2px;
	background: var(--ink);
	border-radius: 999px;
	content: "";
	opacity: 0;
	transform: scaleX(0.4);
	transition: opacity 160ms ease, transform 160ms ease;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
	opacity: 1;
	transform: scaleX(1);
}

.menu-toggle {
	display: none;
	align-items: center;
	gap: 10px;
	padding: 9px 12px;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.52);
	border-radius: 12px;
	color: var(--ink);
	cursor: pointer;
}

.menu-toggle__label {
	font-size: 13px;
	font-weight: 700;
}

.menu-toggle__icon {
	display: grid;
	gap: 5px;
	width: 18px;
}

.menu-toggle__icon i {
	display: block;
	width: 100%;
	height: 2px;
	background: currentColor;
	border-radius: 99px;
	transition: transform 180ms ease;
}

.eyebrow {
	margin-bottom: 20px;
	color: var(--muted);
	font-size: 13px;
	font-weight: 650;
	letter-spacing: 0.11em;
	line-height: 1.2;
	text-transform: uppercase;
}

.home-hero {
	display: grid;
	grid-template-columns: minmax(0, 0.93fr) minmax(420px, 0.78fr);
	gap: clamp(56px, 7vw, 100px);
	align-items: center;
	min-height: 640px;
	padding-block: 76px 96px;
}

.home-hero__copy h1 {
	max-width: 780px;
	margin-bottom: 28px;
	font-size: clamp(52px, 5.4vw, 76px);
	font-weight: 680;
	letter-spacing: -0.05em;
	line-height: 1.02;
}

.home-hero__copy h1 em {
	color: var(--violet);
	font-style: normal;
}

.home-hero__lead {
	max-width: 660px;
	margin-bottom: 36px;
	color: var(--ink-soft);
	font-size: 19px;
	line-height: 1.6;
	letter-spacing: -0.01em;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 13px 20px;
	border: 1px solid var(--line-strong);
	border-radius: 999px;
	font-size: 14px;
	font-weight: 650;
	line-height: 1.2;
	transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
	transform: translateY(-2px);
}

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

.button--primary:hover {
	background: var(--violet-deep);
	border-color: var(--violet-deep);
}

.button--quiet {
	background: rgba(255, 255, 255, 0.46);
}

.button--quiet:hover {
	background: rgba(255, 255, 255, 0.86);
	border-color: var(--ink);
}

.button--light {
	background: #fff;
	border-color: #fff;
	color: var(--ink);
}

.studio-orbit {
	position: relative;
	width: min(100%, 500px);
	aspect-ratio: 1;
	margin-inline: auto;
}

.studio-orbit::before {
	position: absolute;
	inset: 10%;
	background: radial-gradient(circle, rgba(107, 90, 230, 0.15), transparent 67%);
	border-radius: 50%;
	content: "";
	filter: blur(10px);
}

.studio-orbit__ring {
	position: absolute;
	border: 1px solid var(--line);
	border-radius: 50%;
}

.studio-orbit__ring--outer {
	inset: 4%;
}

.studio-orbit__ring--inner {
	inset: 24%;
}

.studio-orbit__center {
	position: absolute;
	top: 50%;
	left: 50%;
	display: grid;
	width: 168px;
	height: 168px;
	place-content: center;
	background: var(--ink);
	border: 10px solid rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	box-shadow: 0 26px 60px rgba(34, 31, 72, 0.22);
	color: #fff;
	text-align: center;
	transform: translate(-50%, -50%);
}

.studio-orbit__center span {
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.studio-orbit__center small {
	display: block;
	margin-top: 3px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 10px;
	letter-spacing: 0.06em;
}

.studio-orbit__app {
	position: absolute;
	z-index: 2;
	width: 88px;
	height: 88px;
	padding: 5px;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 25px;
	box-shadow: 0 18px 36px rgba(24, 24, 26, 0.13);
	transition: transform 200ms ease, box-shadow 200ms ease;
}

.studio-orbit__app img {
	width: 100%;
	height: 100%;
	border-radius: 20px;
	object-fit: cover;
}

.studio-orbit__app:hover {
	z-index: 3;
	box-shadow: 0 22px 48px rgba(24, 24, 26, 0.2);
	transform: translateY(-5px) scale(1.04);
}

.studio-orbit__app--1 {
	top: 1%;
	left: 46%;
}

.studio-orbit__app--2 {
	top: 53%;
	right: -2%;
}

.studio-orbit__app--3 {
	bottom: 4%;
	left: 7%;
}

.apps-section {
	padding-block: 110px 150px;
}

.section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.65fr);
	gap: 48px;
	align-items: end;
	margin-bottom: 48px;
}

.section-heading h2 {
	max-width: 760px;
	margin-bottom: 0;
	font-size: clamp(36px, 4vw, 52px);
	font-weight: 650;
	letter-spacing: -0.04em;
}

.section-heading > p {
	max-width: 440px;
	margin-bottom: 6px;
	color: var(--muted);
	font-size: 16px;
	line-height: 1.65;
}

.section-heading .eyebrow {
	margin-bottom: 16px;
}

.section-heading--compact {
	display: block;
}

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

.app-card {
	--card-bg: #e7e3fa;
	--card-fg: #221b4d;
	--card-accent: var(--violet);
	--card-shadow: rgba(75, 59, 157, 0.16);
	position: relative;
	display: block;
	min-height: 300px;
	overflow: hidden;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.08) 56%),
		var(--card-bg);
	border: 1px solid rgba(255, 255, 255, 0.78);
	border-radius: var(--radius-md);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.82),
		0 2px 5px rgba(25, 24, 31, 0.05),
		0 18px 38px var(--card-shadow);
	color: var(--card-fg);
	isolation: isolate;
	transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 240ms ease;
}

.app-card::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(circle at 5% 0%, rgba(255, 255, 255, 0.82), transparent 36%),
		radial-gradient(circle at 92% 100%, color-mix(in srgb, var(--card-accent), transparent 82%), transparent 46%);
	content: "";
}

.app-card:hover {
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.9),
		0 5px 10px rgba(25, 24, 31, 0.07),
		0 26px 54px var(--card-shadow);
	transform: translateY(-6px);
}

.app-card--violet {
	--card-bg: #ded8fa;
	--card-fg: #241b53;
	--card-accent: #5f4bd4;
}

.app-card--teal {
	--card-bg: #d3ece9;
	--card-fg: #123d3e;
	--card-accent: #087a78;
	--card-shadow: rgba(8, 122, 120, 0.14);
}

.app-card--rose {
	--card-bg: #f3d8e2;
	--card-fg: #50152b;
	--card-accent: #c91f5a;
	--card-shadow: rgba(160, 31, 78, 0.13);
}

.app-card--featured {
	grid-column: auto;
	min-height: 300px;
}

.app-card__copy {
	position: relative;
	z-index: 3;
	display: flex;
	min-height: 300px;
	flex-direction: column;
	align-items: flex-start;
	padding: 24px;
}

.app-card__topline {
	display: flex;
	width: 100%;
	align-items: center;
	gap: 15px;
	margin-bottom: 28px;
}

.app-card__icon-frame {
	display: grid;
	width: 64px;
	height: 64px;
	flex: 0 0 64px;
	place-items: center;
	background: transparent;
	border: 0;
	border-radius: 17px;
	box-shadow: 0 12px 24px color-mix(in srgb, var(--card-fg), transparent 82%);
}

.app-card__icon {
	width: 64px;
	height: 64px;
	border-radius: 17px;
	box-shadow: none;
	object-fit: cover;
}

.app-card--icon-crop .app-card__icon-frame {
	overflow: hidden;
}

.app-card--icon-crop .app-card__icon {
	max-width: none;
	transform: scale(1.28);
}

.app-card__name,
.app-card__platform {
	display: block;
	font-weight: 600;
	line-height: 1.3;
}

.app-card__name {
	margin-bottom: 5px;
	font-size: 17px;
	letter-spacing: -0.02em;
}

.app-card__platform {
	font-size: 12px;
	color: color-mix(in srgb, var(--card-fg), transparent 40%);
}

.app-card__title {
	display: block;
	margin-top: 0;
	font-family: var(--display);
	font-size: clamp(28px, 2.5vw, 36px);
	font-weight: 650;
	letter-spacing: -0.04em;
	line-height: 1.1;
}

.app-card__tagline {
	display: block;
	max-width: 520px;
	margin-top: 0;
	color: color-mix(in srgb, var(--card-fg), transparent 16%);
	font-size: 16px;
	line-height: 1.65;
}

.app-card__link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-top: auto;
	padding: 8px 12px;
	background: rgba(255, 255, 255, 0.38);
	border: 1px solid color-mix(in srgb, var(--card-fg), transparent 78%);
	border-radius: 999px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
	font-size: 14px;
	font-weight: 650;
	transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.app-card__link span {
	transition: transform 180ms ease;
}

.app-card:hover .app-card__link {
	background: rgba(255, 255, 255, 0.62);
	border-color: color-mix(in srgb, var(--card-fg), transparent 62%);
	transform: translateY(-1px);
}

.app-card:hover .app-card__link span {
	transform: translate(2px, -2px);
}

.app-card__visual {
	position: relative;
	z-index: 1;
	display: grid;
	min-height: 310px;
	place-items: center;
	padding: 38px 38px 0;
}

.app-card:not(.app-card--featured) .app-card__copy {
	min-height: 300px;
}

.app-window {
	position: relative;
	width: min(100%, 760px);
	overflow: hidden;
	background: #16151c;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-bottom: 0;
	border-radius: 18px 18px 0 0;
	box-shadow: 0 30px 70px rgba(28, 22, 68, 0.28);
	transform: translateY(18px) rotate(-1deg);
	transform-origin: center bottom;
	transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.app-card:hover .app-window {
	transform: translateY(6px) rotate(0);
}

.app-window__bar {
	display: flex;
	gap: 6px;
	align-items: center;
	height: 30px;
	padding-inline: 13px;
	background: #222128;
}

.app-window__bar i {
	width: 8px;
	height: 8px;
	background: rgba(255, 255, 255, 0.26);
	border-radius: 50%;
}

.app-window img {
	width: 100%;
	height: auto;
}

.play-orbit {
	position: relative;
	display: grid;
	width: 290px;
	aspect-ratio: 1;
	place-items: center;
	border: 1px solid rgba(80, 21, 43, 0.14);
	border-radius: 50%;
}

.play-orbit::before,
.play-orbit::after {
	position: absolute;
	border: 1px solid rgba(80, 21, 43, 0.11);
	border-radius: 50%;
	content: "";
}

.play-orbit::before {
	inset: 16%;
}

.play-orbit::after {
	inset: 32%;
}

.play-orbit img {
	position: relative;
	z-index: 2;
	width: 132px;
	height: 132px;
	border-radius: 30px;
	box-shadow: 0 25px 50px rgba(110, 18, 53, 0.25);
	transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.app-card:hover .play-orbit img {
	transform: rotate(-4deg) scale(1.06);
}

.play-orbit i {
	position: absolute;
	width: 16px;
	height: 16px;
	background: rgba(201, 31, 90, 0.72);
	border-radius: 50%;
}

.play-orbit i:nth-child(1) {
	top: 9%;
	left: 44%;
}

.play-orbit i:nth-child(2) {
	top: 58%;
	right: 2%;
	width: 10px;
	height: 10px;
}

.play-orbit i:nth-child(3) {
	bottom: 4%;
	left: 36%;
	width: 12px;
	height: 12px;
}

.play-orbit i:nth-child(4) {
	top: 34%;
	left: 3%;
	width: 8px;
	height: 8px;
}

.section-action {
	display: flex;
	justify-content: flex-end;
	margin-top: 30px;
}

.section-action--mobile {
	display: none;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding-bottom: 3px;
	border-bottom: 1px solid currentColor;
	font-size: 14px;
	font-weight: 650;
}

.text-link span {
	transition: transform 160ms ease;
}

.text-link:hover span {
	transform: translateX(4px);
}

.principles {
	padding-block: 120px 140px;
	border-top: 1px solid var(--line);
}

.principles__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	margin-top: 56px;
	overflow: hidden;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
}

.principle {
	min-height: 330px;
	padding: 34px;
	background: rgba(250, 249, 246, 0.72);
}

.principle__number {
	display: grid;
	width: 36px;
	height: 36px;
	margin-bottom: 76px;
	place-items: center;
	border: 1px solid var(--line-strong);
	border-radius: 50%;
	color: var(--muted);
	font-size: 11px;
	font-weight: 650;
}

.principle h3 {
	margin-bottom: 14px;
	font-size: 24px;
}

.principle p {
	max-width: 310px;
	margin-bottom: 0;
	color: var(--muted);
	font-size: 16px;
	line-height: 1.6;
}

.latest-notes {
	padding-block: 100px 150px;
}

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

.note-card {
	margin: 0;
}

.note-card__link {
	position: relative;
	display: flex;
	min-height: 350px;
	flex-direction: column;
	padding: 28px;
	background: rgba(255, 255, 255, 0.55);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.note-card__link:hover {
	background: var(--surface-strong);
	box-shadow: var(--shadow-soft);
	transform: translateY(-4px);
}

.note-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 72px;
	color: var(--muted);
	font-size: 11px;
	font-weight: 670;
	letter-spacing: 0.055em;
	text-transform: uppercase;
}

.note-card h3 {
	margin-bottom: 16px;
	font-size: 24px;
	line-height: 1.15;
}

.note-card__excerpt {
	display: -webkit-box;
	overflow: hidden;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.55;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.note-card__arrow {
	margin-top: auto;
	padding-top: 26px;
	font-size: 20px;
	transition: transform 180ms ease;
}

.note-card__link:hover .note-card__arrow {
	transform: translate(4px, -4px);
}

.contact-band {
	background: var(--ink);
	color: #fff;
}

.contact-band__inner {
	display: grid;
	grid-template-columns: 1.2fr 0.75fr;
	gap: 80px;
	align-items: end;
	padding-block: 110px;
}

.contact-band .eyebrow {
	color: rgba(255, 255, 255, 0.5);
}

.contact-band h2 {
	max-width: 720px;
	margin-bottom: 0;
	font-size: clamp(40px, 5vw, 64px);
	letter-spacing: -0.045em;
}

.contact-band__inner > div:last-child {
	padding-bottom: 8px;
}

.contact-band__inner > div:last-child p {
	max-width: 400px;
	margin-bottom: 26px;
	color: rgba(255, 255, 255, 0.66);
	font-size: 16px;
}

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

.site-footer__inner {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 70px;
	width: min(calc(100% - 48px), var(--shell));
	margin-inline: auto;
	padding-block: 70px 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__brand {
	display: flex;
	gap: 14px;
	align-items: center;
}

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

.site-footer__brand strong {
	font-size: 13px;
	letter-spacing: 0.03em;
}

.site-footer__brand p {
	margin: 2px 0 0;
	color: rgba(255, 255, 255, 0.48);
	font-size: 12px;
}

.footer-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	align-items: center;
	justify-content: flex-end;
}

.footer-nav a {
	color: rgba(255, 255, 255, 0.66);
	font-size: 13px;
	font-weight: 630;
}

.footer-nav a:hover,
.site-footer__meta a:hover {
	color: #fff;
}

.site-footer__meta {
	display: flex;
	grid-column: 1 / -1;
	justify-content: space-between;
	padding-top: 26px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.58);
	font-size: 11px;
	letter-spacing: 0.04em;
}

.site-footer__meta a {
	color: rgba(255, 255, 255, 0.54);
}

/* Pages and archives */
.page-hero {
	padding-block: 68px 56px;
}

.page-hero h1 {
	margin-bottom: 20px;
	font-size: clamp(48px, 5.5vw, 68px);
	font-weight: 680;
	letter-spacing: -0.045em;
}

.page-hero > p:last-child {
	max-width: 720px;
	margin-bottom: 0;
	color: var(--ink-soft);
	font-size: clamp(18px, 1.55vw, 22px);
	line-height: 1.6;
	letter-spacing: -0.015em;
}

.page-hero--apps {
	padding-block: 68px 56px;
}

.page-hero--apps h1 {
	margin-bottom: 20px;
	font-size: clamp(48px, 5.5vw, 68px);
	letter-spacing: -0.045em;
}

.page-hero--apps > p:last-child {
	max-width: 720px;
	font-size: clamp(18px, 1.55vw, 22px);
}

.catalog {
	padding-bottom: 130px;
}

.catalog--home {
	padding-bottom: 110px;
}

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

.catalog-note {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 130px;
	padding-block: 28px;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.catalog-note p {
	margin: 0;
	color: var(--muted);
}

.content-page {
	padding-bottom: 140px;
}

.content-page .page-hero {
	max-width: 900px;
	margin-inline: 0;
}

.prose {
	max-width: 790px;
	color: var(--ink-soft);
	font-size: 18px;
	line-height: 1.75;
}

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

.prose h2,
.prose h3,
.prose h4 {
	margin-top: 2.4em;
	margin-bottom: 0.7em;
	color: var(--ink);
}

.prose h2 {
	font-size: 38px;
}

.prose h3 {
	font-size: 28px;
}

.prose p,
.prose ul,
.prose ol,
.prose blockquote {
	margin-bottom: 1.45em;
}

.prose ul,
.prose ol {
	padding-left: 1.25em;
}

.prose li {
	margin-bottom: 0.55em;
}

.prose a {
	border-bottom: 1px solid currentColor;
	color: var(--violet-deep);
}

.prose blockquote {
	margin-inline: 0;
	padding: 12px 0 12px 26px;
	border-left: 3px solid var(--violet);
	color: var(--muted);
	font-size: 1.1em;
}

.prose img {
	border-radius: var(--radius-sm);
}

.prose pre,
.prose code {
	font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
	font-size: 0.88em;
}

.prose code {
	padding: 0.15em 0.35em;
	background: rgba(24, 24, 26, 0.06);
	border-radius: 5px;
}

.prose pre {
	overflow-x: auto;
	padding: 20px;
	background: var(--ink);
	border-radius: var(--radius-sm);
	color: #fff;
}

.prose pre code {
	padding: 0;
	background: transparent;
}

.page-hero--notes,
.page-hero--blog {
	border-bottom: 1px solid var(--line);
}

.notes-archive-grid {
	padding-block: 70px 140px;
}

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

.pagination {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: 54px;
}

.pagination .page-numbers {
	display: inline-grid;
	min-width: 42px;
	height: 42px;
	padding-inline: 12px;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 680;
}

.pagination .current,
.pagination a:hover {
	background: var(--ink);
	border-color: var(--ink);
	color: #fff;
}

.single-note {
	max-width: 980px;
	padding-block: 110px 150px;
}

.single-note__header {
	max-width: 900px;
	margin-bottom: 60px;
}

.back-link {
	display: inline-block;
	margin-bottom: 70px;
	color: var(--muted);
	font-size: 13px;
	font-weight: 680;
}

.back-link:hover {
	color: var(--ink);
}

.single-note__meta {
	display: flex;
	gap: 16px;
	margin-bottom: 25px;
	color: var(--muted);
	font-size: 11px;
	font-weight: 690;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.single-note__header h1 {
	margin-bottom: 25px;
	font-size: clamp(46px, 6vw, 68px);
	letter-spacing: -0.05em;
}

.single-note__header > p {
	max-width: 760px;
	margin-bottom: 0;
	color: var(--muted);
	font-size: 21px;
	line-height: 1.55;
}

.single-note__image {
	margin-bottom: 70px;
}

.single-note__image img {
	width: 100%;
	border-radius: var(--radius-md);
}

.prose--article {
	margin-inline: auto;
}

.post-navigation {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin-top: 90px;
	padding-top: 30px;
	border-top: 1px solid var(--line);
}

.post-navigation > div:last-child {
	text-align: right;
}

.post-navigation a {
	display: inline-flex;
	flex-direction: column;
	gap: 4px;
	font-weight: 680;
	line-height: 1.35;
}

.post-navigation small {
	color: var(--muted);
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.not-found {
	display: flex;
	min-height: 680px;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.not-found h1 {
	max-width: 760px;
	margin-bottom: 24px;
	font-size: clamp(54px, 7vw, 92px);
}

.not-found > p:not(.eyebrow) {
	max-width: 600px;
	margin-bottom: 30px;
	color: var(--muted);
	font-size: 19px;
}

/* ZAAMDAA Products plugin */
.single-zaamdaa_product .site-main {
	padding-bottom: 100px;
}

.single-zaamdaa_product .content-area,
.single-zaamdaa_product #primary,
.single-zaamdaa_product #content,
.single-zaamdaa_product .site-content {
	width: 100%;
}

.zdp-product-detail {
	width: min(calc(100% - 48px), 1080px);
	margin-inline: auto;
	padding-top: 64px;
}

.zdp-product-hero {
	display: grid;
	grid-template-columns: 128px minmax(0, 1fr);
	gap: 32px;
	align-items: center;
	padding-bottom: 36px;
	border-bottom: 1px solid var(--line);
}

.zdp-product-logo {
	width: 128px;
	height: 128px;
}

.zdp-product-logo img {
	width: 100%;
	height: 100%;
	border-radius: 29px;
	box-shadow: 0 18px 38px rgba(24, 24, 26, 0.14);
	object-fit: cover;
}

.zdp-product-title {
	margin: 0 0 10px;
	font-size: clamp(44px, 4.6vw, 56px);
	font-weight: 650;
	letter-spacing: -0.045em;
	line-height: 1.06;
}

.zdp-product-subtitle {
	max-width: 820px;
	margin: 0 0 18px;
	color: var(--ink-soft);
	font-size: clamp(18px, 1.45vw, 20px);
	line-height: 1.6;
	letter-spacing: -0.01em;
}

.zdp-product-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin: 0;
}

.zdp-product-meta span {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 6px 11px;
	background: rgba(255, 255, 255, 0.56);
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.01em;
}

.zdp-product-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 18px 0 72px;
	padding: 14px;
	background: rgba(255, 255, 255, 0.42);
	border: 1px solid var(--line);
	border-radius: 18px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.zdp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 16px;
	border: 1px solid var(--line-strong);
	border-radius: 999px;
	font-size: 14px;
	font-weight: 650;
	transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.zdp-button:hover {
	background: var(--surface-strong);
	transform: translateY(-2px);
}

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

.zdp-button-primary:hover {
	background: var(--violet-deep);
	border-color: var(--violet-deep);
	color: #fff;
}

.zdp-product-section {
	margin-bottom: 72px;
}

.zdp-product-section > h2 {
	margin-bottom: 28px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--line);
	font-size: 30px;
	font-weight: 650;
	letter-spacing: -0.035em;
}

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

.zdp-screenshot-grid a {
	overflow: hidden;
	background: #e4e2de;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
}

.zdp-screenshot-grid a:first-child:nth-last-child(3) {
	grid-column: 1 / -1;
}

.zdp-screenshot-grid img {
	width: 100%;
	height: 100%;
	min-height: 280px;
	object-fit: cover;
	transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.zdp-screenshot-grid a:hover img {
	transform: scale(1.018);
}

.zdp-product-section .entry-content {
	max-width: 760px;
	color: var(--ink-soft);
	font-size: 17px;
	line-height: 1.75;
}

@media (min-width: 900px) {
	.zdp-product-section:has(> .entry-content) {
		display: grid;
		grid-template-columns: 190px minmax(0, 760px);
		gap: 54px;
		align-items: start;
	}

	.zdp-product-section:has(> .entry-content) > h2 {
		margin: 0;
		padding: 4px 0 0;
		border: 0;
	}
}

.postid-160 .zdp-product-logo {
	overflow: hidden;
	border-radius: 29px;
}

.postid-160 .zdp-product-logo img {
	max-width: none;
	transform: scale(1.28);
}

.zdp-product-section .entry-content p,
.zdp-product-section .entry-content ul,
.zdp-product-section .entry-content ol {
	margin-bottom: 1.4em;
}

.zdp-product-section .entry-content ul {
	padding: 0;
	list-style: none;
}

.zdp-product-section .entry-content li {
	position: relative;
	margin-bottom: 12px;
	padding-left: 28px;
}

.zdp-product-section .entry-content li::before {
	position: absolute;
	top: 0.68em;
	left: 2px;
	width: 8px;
	height: 8px;
	background: var(--violet);
	border-radius: 50%;
	content: "";
}

/* If the plugin list is rendered elsewhere, keep it on-brand. */
.zdp-product-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	max-width: none;
}

.zdp-product-card {
	margin: 0;
}

.zdp-product-card-inner {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	gap: 22px;
	align-items: center;
	min-height: 190px;
	padding: 28px;
	background: rgba(255, 255, 255, 0.55);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
}

.zdp-product-card-logo,
.zdp-product-card-logo img {
	width: 92px;
	height: 92px;
}

.zdp-product-card-logo img {
	border-radius: 22px;
	object-fit: cover;
}

.zdp-product-card-title {
	display: block;
	margin-bottom: 6px;
	font-size: 23px;
	font-weight: 650;
	letter-spacing: -0.03em;
}

.zdp-product-card-subtitle,
.zdp-product-card-meta {
	display: block;
}

.zdp-product-card-subtitle {
	margin-bottom: 10px;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.5;
}

.zdp-product-card-meta {
	color: var(--muted);
	font-size: 11px;
	font-weight: 650;
}

/* Motion */
.js .reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 980px) {
	.home-hero {
		grid-template-columns: 1fr;
		gap: 30px;
		min-height: auto;
		padding-block: 90px 100px;
	}

	.home-hero__copy {
		max-width: 820px;
	}

	.studio-orbit {
		width: min(100%, 480px);
		margin-top: 25px;
	}

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

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

	.principle {
		min-height: auto;
	}

	.principle__number {
		margin-bottom: 48px;
	}

	.contact-band__inner {
		grid-template-columns: 1fr;
		gap: 44px;
	}

	.zdp-product-hero {
		grid-template-columns: 112px minmax(0, 1fr);
	}

	.zdp-product-logo {
		width: 112px;
		height: 112px;
	}
}

@media (max-width: 760px) {
	body {
		font-size: 16px;
	}

	.section-shell,
	.site-header__inner,
	.site-footer__inner,
	.zdp-product-detail {
		width: min(calc(100% - 32px), var(--shell));
	}

	.site-header__inner {
		min-height: 70px;
	}

	.brand__mark {
		width: 34px;
		height: 34px;
		border-radius: 10px;
	}

	.brand__name strong {
		font-size: 15px;
	}

	.brand__name small {
		font-size: 9px;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.primary-nav {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		display: flex;
		height: calc(100dvh - 70px - var(--wp-admin--admin-bar--height, 0px));
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
		overflow-y: auto;
		padding: 24px 16px;
		background: var(--bg);
		border-top: 1px solid var(--line);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-8px);
		transition: opacity 180ms ease, transform 180ms ease;
	}

	.menu-open .primary-nav {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.primary-nav a {
		padding: 16px 12px;
		border-bottom: 1px solid var(--line);
		border-radius: 0;
		font-size: 22px;
		font-weight: 650;
		letter-spacing: -0.025em;
	}

	.primary-nav a::after {
		display: none;
	}

	.menu-open .menu-toggle__icon i:first-child {
		transform: translateY(3.5px) rotate(45deg);
	}

	.menu-open .menu-toggle__icon i:last-child {
		transform: translateY(-3.5px) rotate(-45deg);
	}

	.home-hero {
		gap: 44px;
		padding-block: 62px 78px;
	}

	.home-hero__copy h1 {
		font-size: clamp(44px, 12.5vw, 54px);
		line-height: 1.04;
	}

	.home-hero__lead {
		font-size: 19px;
	}

	.studio-orbit {
		width: min(100%, 350px);
	}

	.studio-orbit__center {
		width: 122px;
		height: 122px;
		border-width: 7px;
	}

	.studio-orbit__center span {
		font-size: 13px;
	}

	.studio-orbit__center small {
		font-size: 8px;
	}

	.studio-orbit__app {
		width: 64px;
		height: 64px;
		padding: 4px;
		border-radius: 19px;
	}

	.studio-orbit__app img {
		border-radius: 15px;
	}

	.apps-section,
	.principles,
	.latest-notes {
		padding-block: 86px;
	}

	.section-heading {
		display: block;
		margin-bottom: 34px;
	}

	.section-heading h2 {
		font-size: clamp(34px, 10vw, 44px);
	}

	.section-heading > p {
		margin-top: 22px;
	}

	.apps-grid,
	.catalog__grid,
	.notes-grid,
	.notes-grid--archive,
	.zdp-product-list {
		grid-template-columns: 1fr;
	}

	.app-card,
	.app-card--featured {
		grid-column: auto;
		min-height: 292px;
	}

	.app-card__copy,
	.app-card--featured .app-card__copy,
	.app-card:not(.app-card--featured) .app-card__copy {
		min-height: 292px;
		padding: 22px;
	}

	.app-card__title,
	.app-card:not(.app-card--featured) .app-card__title {
		margin-top: 0;
		font-size: 30px;
	}

	.app-card__tagline {
		font-size: 16px;
	}

	.app-card__topline {
		margin-bottom: 26px;
	}

	.app-card__icon-frame {
		width: 60px;
		height: 60px;
		flex-basis: 60px;
		border-radius: 16px;
	}

	.app-card__icon {
		width: 60px;
		height: 60px;
		border-radius: 16px;
	}

	.principle {
		padding: 28px;
	}

	.note-card__link {
		min-height: 310px;
	}

	.note-card__meta {
		margin-bottom: 52px;
	}

	.text-link--desktop {
		display: none;
	}

	.section-action--mobile {
		display: flex;
	}

	.contact-band__inner {
		padding-block: 80px;
	}

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

	.footer-nav {
		justify-content: flex-start;
	}

	.site-footer__meta {
		flex-direction: column;
		gap: 8px;
	}

	.page-hero {
		padding-block: 48px 42px;
	}

	.page-hero--apps {
		padding-block: 48px 42px;
	}

	.page-hero h1 {
		font-size: clamp(44px, 13vw, 54px);
	}

	.page-hero--apps h1 {
		font-size: clamp(44px, 13vw, 54px);
	}

	.page-hero > p:last-child {
		font-size: 20px;
	}

	.catalog {
		padding-bottom: 80px;
	}

	.catalog-note {
		align-items: flex-start;
		flex-direction: column;
		margin-bottom: 86px;
	}

	.prose {
		font-size: 17px;
	}

	.prose h2 {
		font-size: 32px;
	}

	.notes-archive-grid {
		padding-block: 48px 90px;
	}

	.single-note {
		padding-block: 72px 100px;
	}

	.back-link {
		margin-bottom: 50px;
	}

	.single-note__header h1 {
		font-size: clamp(40px, 12vw, 52px);
	}

	.post-navigation {
		grid-template-columns: 1fr;
	}

	.post-navigation > div:last-child {
		text-align: left;
	}

	.zdp-product-detail {
		padding-top: 48px;
	}

	.zdp-product-hero {
		grid-template-columns: 1fr;
		gap: 18px;
		padding-bottom: 28px;
	}

	.zdp-product-logo {
		width: 80px;
		height: 80px;
	}

	.zdp-product-logo img {
		border-radius: 19px;
	}

	.zdp-product-title {
		font-size: clamp(34px, 10.5vw, 42px);
	}

	.zdp-product-subtitle {
		font-size: 17px;
	}

	.zdp-product-actions {
		margin: 14px 0 52px;
		padding: 12px;
	}

	.zdp-button {
		width: 100%;
		min-height: 46px;
	}

	.zdp-product-section {
		margin-bottom: 58px;
	}

	.zdp-product-section > h2 {
		margin-bottom: 24px;
		font-size: 27px;
	}

	.zdp-screenshot-grid {
		grid-template-columns: 1fr;
	}

	.zdp-screenshot-grid a:first-child:nth-last-child(3) {
		grid-column: auto;
	}

	.zdp-screenshot-grid img {
		min-height: 0;
	}

	.zdp-product-section .entry-content {
		font-size: 16.5px;
	}

	.zdp-product-card-inner {
		grid-template-columns: 72px minmax(0, 1fr);
		min-height: 150px;
		padding: 20px;
	}

	.zdp-product-card-logo,
	.zdp-product-card-logo img {
		width: 72px;
		height: 72px;
	}
}

@media (max-width: 420px) {
	.button-row {
		align-items: stretch;
		flex-direction: column;
	}

	.button {
		width: 100%;
	}

	.studio-orbit__app--2 {
		right: 0;
	}

	.zdp-product-logo {
		width: 76px;
		height: 76px;
	}

	.zdp-product-title {
		font-size: 36px;
	}
}

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

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

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


/* ZAAMDAA adaptive product screenshot gallery */
.zdp-screenshot-grid {
	align-items: start;
}

.zdp-screenshot-grid a,
.zdp-screenshot-grid a:first-child:nth-last-child(3) {
	display: flex;
	grid-column: auto;
	align-items: center;
	justify-content: center;
	min-width: 0;
}

.zdp-screenshot-grid img {
	display: block;
	width: 100%;
	height: auto;
	min-height: 0;
	object-fit: contain;
}

.zdp-screenshot-grid.is-portrait {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.zdp-screenshot-grid.is-portrait a {
	aspect-ratio: 9 / 16;
}

.zdp-screenshot-grid.is-portrait img {
	height: 100%;
	object-fit: contain;
}

.zdp-screenshot-grid.is-landscape,
.zdp-screenshot-grid.is-mixed {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.zdp-screenshot-grid.is-mixed a.is-portrait img {
	width: auto;
	max-width: 100%;
	max-height: 720px;
}

@media (max-width: 980px) {
	.zdp-screenshot-grid.is-portrait {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.zdp-screenshot-grid.is-portrait,
	.zdp-screenshot-grid.is-landscape,
	.zdp-screenshot-grid.is-mixed {
		grid-template-columns: 1fr;
	}

	.zdp-screenshot-grid.is-portrait a {
		aspect-ratio: auto;
	}

	.zdp-screenshot-grid.is-portrait img,
	.zdp-screenshot-grid.is-mixed a.is-portrait img {
		width: 100%;
		height: auto;
		max-height: none;
	}
}
