:root {
	--bg: #f4f3ef;
	--surface: #fff;
	--surface-2: #ebeae5;
	--ink: #151613;
	--muted: #72736d;
	--line: #d9d8d1;
	--accent: #31594a;
	--accent-ink: #fff;
	--danger: #a33d32;
	--radius: 14px;
	--shadow: 0 12px 36px rgba(25, 27, 23, 0.07);
	--sidebar: 240px;
	font-family:
		Inter,
		ui-sans-serif,
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		sans-serif;
	color-scheme: light;
}
[data-theme='dark'] {
	--bg: #151714;
	--surface: #1d201c;
	--surface-2: #292c27;
	--ink: #f2f1ec;
	--muted: #999c94;
	--line: #353832;
	--accent: #98b9a6;
	--accent-ink: #152018;
	--shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
	color-scheme: dark;
}
* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
}
button,
input,
select {
	font: inherit;
	color: inherit;
}
button {
	cursor: pointer;
}
.app-shell {
	min-height: 100vh;
}
.sidebar {
	position: fixed;
	inset: 0 auto 0 0;
	width: var(--sidebar);
	padding: 24px 16px;
	background: var(--surface);
	border-right: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	z-index: 20;
}
.brand-mark {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 0 8px 30px;
	font-size: 14px;
}
.brand-mark small {
	display: block;
	color: var(--muted);
	margin-top: 2px;
}
.brand-symbol {
	width: 37px;
	height: 37px;
	border-radius: 11px;
	background: var(--ink);
	color: var(--bg);
	display: grid;
	place-items: center;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: -0.4px;
}
nav {
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.nav-item {
	border: 0;
	background: transparent;
	padding: 11px 10px;
	border-radius: 9px;
	text-align: left;
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--muted);
}
.nav-item span {
	font:
		10px/1 ui-monospace,
		monospace;
	opacity: 0.62;
}
.nav-item i {
	font-style: normal;
	font-size: 13px;
}
.nav-item:hover {
	background: var(--surface-2);
	color: var(--ink);
}
.nav-item.active {
	background: var(--ink);
	color: var(--bg);
}
.privacy-note {
	margin-top: auto;
	padding: 14px 8px 0;
	border-top: 1px solid var(--line);
	font-size: 10px;
	line-height: 1.45;
	color: var(--muted);
	display: flex;
	align-items: flex-start;
	gap: 7px;
}
.status-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #63a476;
	box-shadow: 0 0 0 4px rgba(99, 164, 118, 0.12);
	margin-top: 3px;
	flex: 0 0 auto;
}
.workspace {
	margin-left: var(--sidebar);
	min-height: 100vh;
}
.topbar {
	height: 70px;
	border-bottom: 1px solid var(--line);
	padding: 0 34px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: color-mix(in srgb, var(--bg) 90%, transparent);
	backdrop-filter: blur(12px);
	position: sticky;
	top: 0;
	z-index: 10;
}
.crumb {
	display: flex;
	gap: 9px;
	align-items: center;
	font-size: 12px;
	color: var(--muted);
}
.crumb b {
	font-weight: 400;
	opacity: 0.5;
}
.crumb strong {
	color: var(--ink);
}
.top-actions,
.inline-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}
.content {
	max-width: 1220px;
	padding: 55px 54px 90px;
	margin: 0 auto;
}
.view {
	display: none;
	animation: viewIn 0.35s ease;
}
.view.active {
	display: block;
}
@keyframes viewIn {
	from {
		opacity: 0;
		transform: translateY(5px);
	}
}
.section-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 34px;
}
.eyebrow {
	font-size: 10px;
	letter-spacing: 0.16em;
	font-weight: 800;
	color: var(--accent);
	margin: 0 0 12px;
}
.section-heading h1 {
	font-family: Georgia, serif;
	font-weight: 400;
	font-size: clamp(34px, 4vw, 56px);
	letter-spacing: -0.045em;
	line-height: 1;
	margin: 0;
	max-width: 760px;
}
.section-heading p:not(.eyebrow) {
	color: var(--muted);
	max-width: 590px;
	line-height: 1.6;
	font-size: 14px;
	margin: 16px 0 0;
}
.mood-pill {
	border: 1px solid var(--line);
	border-radius: 99px;
	padding: 8px 12px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.1em;
}
.primary,
.secondary,
.text-button,
.icon-button {
	border: 0;
	border-radius: 9px;
	transition: 0.2s;
}
.primary {
	background: var(--ink);
	color: var(--bg);
	padding: 13px 18px;
	font-weight: 700;
	font-size: 12px;
}
.primary:hover {
	transform: translateY(-1px);
	box-shadow: var(--shadow);
}
.primary.compact {
	padding: 9px 14px;
}
.secondary {
	background: var(--surface);
	border: 1px solid var(--line);
	padding: 10px 13px;
	font-size: 11px;
	font-weight: 700;
}
.secondary:hover {
	border-color: var(--ink);
}
.text-button {
	background: transparent;
	padding: 8px;
	color: var(--muted);
	font-size: 11px;
	font-weight: 700;
}
.text-button:hover {
	color: var(--ink);
}
.text-button.danger {
	color: var(--danger);
}
.icon-button {
	width: 35px;
	height: 35px;
	background: var(--surface);
	border: 1px solid var(--line);
}
.mobile-menu {
	display: none;
}
.mode-tabs {
	display: inline-flex;
	padding: 4px;
	background: var(--surface-2);
	border-radius: 11px;
	margin-bottom: 18px;
}
.mode-tabs button {
	border: 0;
	background: transparent;
	padding: 9px 14px;
	border-radius: 8px;
	color: var(--muted);
	font-size: 11px;
	font-weight: 700;
}
.mode-tabs button.active {
	background: var(--surface);
	color: var(--ink);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.generator-panel {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 20px;
	margin-bottom: 32px;
}
.generator-panel > label:not(.upload-zone),
.form-card label span,
.control-strip label span {
	font-size: 11px;
	font-weight: 700;
	display: block;
	margin-bottom: 9px;
}
.input-row {
	display: flex;
	gap: 9px;
}
.input-row input,
input,
select {
	width: 100%;
	border: 1px solid var(--line);
	background: var(--bg);
	padding: 12px 14px;
	border-radius: 9px;
	outline: none;
}
.input-row input {
	font:
		24px/1.2 Georgia,
		serif;
}
.input-row input:focus,
input:focus,
select:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 14%, transparent);
}
.suggestions {
	display: flex;
	gap: 7px;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 14px;
	color: var(--muted);
	font-size: 10px;
}
.suggestions button {
	border: 1px solid var(--line);
	background: transparent;
	border-radius: 99px;
	padding: 5px 8px;
	font-size: 10px;
}
.hidden {
	display: none !important;
}
.upload-zone {
	min-height: 180px;
	border: 1px dashed var(--line);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	text-align: center;
}
.upload-zone input {
	display: none;
}
.upload-zone small {
	color: var(--muted);
}
.upload-icon {
	font-size: 28px;
	color: var(--accent);
}
.palette-meta,
.block-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}
.palette-meta {
	margin-bottom: 14px;
}
.palette-meta span {
	display: block;
	color: var(--muted);
	font-size: 10px;
	margin-bottom: 4px;
}
.palette-meta strong {
	font:
		18px Georgia,
		serif;
}
.swatch-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	min-height: 260px;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}
.swatch {
	position: relative;
	padding: 14px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	transition: flex 0.2s;
	min-width: 0;
}
.swatch-info {
	background: color-mix(in srgb, var(--surface) 91%, transparent);
	padding: 9px;
	border-radius: 8px;
	backdrop-filter: blur(8px);
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}
.swatch strong,
.swatch small {
	display: block;
}
.swatch strong {
	font:
		11px ui-monospace,
		monospace;
}
.swatch small {
	font-size: 9px;
	color: var(--muted);
	margin-top: 4px;
}
.swatch-actions {
	position: absolute;
	top: 10px;
	right: 10px;
	display: flex;
	gap: 4px;
}
.swatch-actions button {
	width: 26px;
	height: 26px;
	border: 0;
	background: color-mix(in srgb, var(--surface) 86%, transparent);
	border-radius: 7px;
	font-size: 11px;
}
.harmony-row {
	display: flex;
	gap: 15px;
	align-items: center;
	margin: 17px 0 48px;
	color: var(--muted);
	font-size: 10px;
}
.harmony-row div {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}
.harmony-row button {
	border: 1px solid var(--line);
	background: transparent;
	border-radius: 99px;
	padding: 6px 9px;
	font-size: 10px;
}
.harmony-row button.active {
	background: var(--ink);
	color: var(--bg);
	border-color: var(--ink);
}
.history-block {
	border-top: 1px solid var(--line);
	padding-top: 26px;
}
.block-title h2,
.block-title h3 {
	margin: 0;
	font:
		22px Georgia,
		serif;
}
.block-title p {
	color: var(--muted);
	font-size: 11px;
	margin: 5px 0 0;
}
.history-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-top: 17px;
}
.history-item {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 10px;
	padding: 10px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 10px;
}
.mini-palette {
	height: 38px;
	display: flex;
	border-radius: 6px;
	overflow: hidden;
	grid-column: 1/-1;
}
.mini-palette i {
	flex: 1;
}
.history-item b {
	font-size: 11px;
}
.history-item button {
	background: transparent;
	border: 0;
	color: var(--muted);
}
.empty {
	color: var(--muted);
	font-size: 12px;
	padding: 20px 0;
}
.control-strip {
	background: var(--surface);
	padding: 15px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	max-width: 360px;
	margin-bottom: 22px;
}
.idea-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}
.idea-card,
.list-item {
	border: 1px solid var(--line);
	background: var(--surface);
	border-radius: 11px;
	padding: 18px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.idea-card b {
	font:
		22px Georgia,
		serif;
}
.idea-card button,
.list-item button {
	border: 0;
	background: transparent;
	color: var(--muted);
}
.list-stack {
	display: grid;
	gap: 9px;
}
.list-item strong {
	font:
		18px Georgia,
		serif;
	font-weight: 400;
}
.font-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}
.font-card {
	border: 1px solid var(--line);
	background: var(--surface);
	padding: 24px;
	border-radius: var(--radius);
}
.font-preview {
	font-size: 38px;
	line-height: 1.1;
	letter-spacing: -0.03em;
	margin: 22px 0;
}
.font-card p {
	color: var(--muted);
	font-size: 11px;
	line-height: 1.5;
}
.font-meta {
	display: flex;
	justify-content: space-between;
	font-size: 10px;
	color: var(--muted);
	border-top: 1px solid var(--line);
	padding-top: 13px;
}
.token-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
.token-card {
	background: var(--surface);
	border: 1px solid var(--line);
	padding: 22px;
	border-radius: var(--radius);
}
.token-card.wide {
	grid-column: 1/-1;
}
.token-card h3 {
	font:
		20px Georgia,
		serif;
	margin: 0 0 24px;
}
.scale-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 11px 0;
	font:
		10px ui-monospace,
		monospace;
}
.scale-row i {
	height: 10px;
	background: var(--accent);
	border-radius: 2px;
}
.radius-row {
	display: flex;
	gap: 9px;
	flex-wrap: wrap;
}
.radius-demo {
	width: 70px;
	height: 70px;
	border: 1px solid var(--line);
	background: var(--surface-2);
	display: grid;
	place-items: center;
	font-size: 9px;
}
.shadow-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.shadow-demo {
	height: 120px;
	border-radius: 10px;
	background: var(--surface);
	display: grid;
	place-items: center;
	font-size: 11px;
}
.animation-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}
.animation-card {
	border: 1px solid var(--line);
	background: var(--surface);
	padding: 18px;
	border-radius: var(--radius);
}
.motion-stage {
	height: 120px;
	background: var(--surface-2);
	border-radius: 9px;
	display: grid;
	place-items: center;
	margin-bottom: 14px;
	overflow: hidden;
}
.motion-shape {
	width: 45px;
	height: 45px;
	border-radius: 10px;
	background: var(--accent);
}
.animation-card footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.animation-card button {
	border: 0;
	background: transparent;
	color: var(--muted);
	font-size: 11px;
}
.moodboard {
	display: grid;
	grid-template-columns: 1.25fr 0.75fr;
	grid-template-rows: 240px 180px;
	gap: 12px;
}
.mood-panel {
	border-radius: var(--radius);
	padding: 25px;
	overflow: hidden;
	position: relative;
}
.mood-hero {
	grid-row: span 2;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.mood-hero h2 {
	font-size: clamp(42px, 6vw, 80px);
	line-height: 0.9;
	letter-spacing: -0.06em;
	margin: 0;
}
.mood-type {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.mood-card-demo {
	max-width: 230px;
	padding: 16px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.75);
	color: #151613;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.pattern {
	background-size: 20px 20px;
}
.logo-layout {
	display: grid;
	grid-template-columns: 0.7fr 1.3fr;
	gap: 14px;
}
.form-card,
.prompt-card {
	border: 1px solid var(--line);
	background: var(--surface);
	padding: 22px;
	border-radius: var(--radius);
}
.form-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.prompt-card p {
	line-height: 1.7;
	font-size: 14px;
	color: var(--muted);
}
.prompt-card h4 {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-top: 28px;
}
.brandbook {
	border: 1px solid var(--line);
	background: var(--surface);
	border-radius: var(--radius);
	overflow: hidden;
}
.book-hero {
	padding: 45px;
	min-height: 280px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.book-hero h2 {
	font:
		64px/1 Georgia,
		serif;
	letter-spacing: -0.05em;
	margin: 0;
}
.book-hero p {
	max-width: 450px;
}
.book-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.book-section {
	padding: 30px;
	border-top: 1px solid var(--line);
}
.book-section:nth-child(odd) {
	border-right: 1px solid var(--line);
}
.book-section h3 {
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
}
.book-colors {
	display: flex;
	height: 100px;
	margin-top: 20px;
}
.book-colors i {
	flex: 1;
}
.export-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-top: 14px;
}
.export-grid button {
	padding: 18px;
	text-align: left;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 10px;
}
.export-grid span {
	display: block;
	font-size: 10px;
	color: var(--muted);
	margin-top: 5px;
}
.toast {
	position: fixed;
	right: 22px;
	bottom: 22px;
	background: var(--ink);
	color: var(--bg);
	padding: 11px 16px;
	border-radius: 9px;
	font-size: 11px;
	transform: translateY(20px);
	opacity: 0;
	pointer-events: none;
	transition: 0.25s;
	z-index: 50;
}
.toast.show {
	transform: none;
	opacity: 1;
}
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
@keyframes softScale {
	50% {
		transform: scale(1.12);
	}
}
@keyframes brutalSnap {
	0%,
	100% {
		transform: translate(0);
	}
	50% {
		transform: translate(12px, -8px);
	}
}
@keyframes slowFloat {
	50% {
		transform: translateY(-14px);
	}
}
@keyframes hoverLift {
	50% {
		transform: translateY(-8px);
		box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
	}
}
@keyframes pulseGlow {
	50% {
		box-shadow: 0 0 30px var(--accent);
		transform: scale(1.04);
	}
}
@media (max-width: 950px) {
	.swatch-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.swatch {
		min-height: 160px;
	}
	.idea-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.animation-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.content {
		padding: 42px 30px 70px;
	}
}
@media (max-width: 700px) {
	:root {
		--sidebar: 0px;
	}
	.sidebar {
		transform: translateX(-100%);
		width: 250px;
		transition: 0.25s;
	}
	.sidebar.open {
		transform: none;
		box-shadow: 20px 0 50px rgba(0, 0, 0, 0.2);
	}
	.mobile-menu {
		display: block;
	}
	.topbar {
		padding: 0 16px;
	}
	.crumb span,
	.crumb b {
		display: none;
	}
	.content {
		padding: 34px 17px 70px;
	}
	.section-heading {
		display: block;
	}
	.section-heading > .primary,
	.section-heading > .secondary,
	.section-heading > .inline-actions,
	.mood-pill {
		margin-top: 18px;
	}
	.input-row {
		flex-direction: column;
	}
	.swatch-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.swatch {
		min-height: 175px;
	}
	.history-list,
	.idea-grid,
	.font-grid,
	.token-layout,
	.logo-layout,
	.export-grid {
		grid-template-columns: 1fr;
	}
	.token-card.wide {
		grid-column: auto;
	}
	.animation-grid {
		grid-template-columns: 1fr;
	}
	.moodboard {
		grid-template-columns: 1fr;
		grid-template-rows: 300px 180px 180px;
	}
	.mood-hero {
		grid-row: auto;
	}
	.book-grid {
		grid-template-columns: 1fr;
	}
	.book-section:nth-child(odd) {
		border-right: 0;
	}
	.book-hero {
		padding: 28px;
	}
	.book-hero h2 {
		font-size: 45px;
	}
	.shadow-grid {
		grid-template-columns: 1fr;
	}
	.top-actions {
		gap: 3px;
	}
}
.language-select {
	width: auto;
	min-width: 58px;
	padding: 8px 24px 8px 10px;
	border: 1px solid var(--line);
	background-color: var(--surface);
	border-radius: 9px;
	font-size: 11px;
	font-weight: 800;
}
.nav-item {
	text-decoration: none;
	cursor: pointer;
}
.brand-mark {
	text-decoration: none;
	color: var(--ink);
	padding: 0 3px 28px;
	display: block;
}
.brand-logo {
	display: block;
	width: 100%;
	height: 46px;
	object-fit: contain;
	border-radius: 8px;
}
.logo-dark {
	display: none;
}
[data-theme='dark'] .logo-light {
	display: none;
}
[data-theme='dark'] .logo-dark {
	display: block;
}
.footer-logo {
	display: block;
	width: 205px;
	height: 42px;
	object-fit: contain;
	border-radius: 7px;
}
.footer-brand > a {
	display: inline-block;
}
.site-footer {
	max-width: 1220px;
	margin: 0 auto;
	padding: 34px 54px 42px;
	border-top: 1px solid var(--line);
	display: grid;
	grid-template-columns: 1.2fr 1fr auto;
	gap: 42px;
	align-items: start;
	color: var(--muted);
	font-size: 11px;
	line-height: 1.6;
}
.site-footer p {
	margin: 7px 0 0;
	max-width: 360px;
}
.footer-brand b {
	color: var(--ink);
	font-size: 13px;
}
.footer-note {
	display: flex;
	gap: 9px;
	align-items: flex-start;
}
.footer-note .status-dot {
	margin-top: 6px;
}
.footer-note p {
	margin: 0;
}
.footer-links {
	display: grid;
	grid-template-columns: repeat(3, auto);
	gap: 8px 18px;
	text-align: right;
}
.footer-links a {
	color: var(--ink);
	text-decoration: none;
}
.footer-links a:hover {
	text-decoration: underline;
}
.footer-links small {
	grid-column: 1/-1;
	margin-top: 8px;
}
[dir='rtl'] .sidebar {
	inset: 0 0 0 auto;
	border-right: 0;
	border-left: 1px solid var(--line);
}
[dir='rtl'] .workspace {
	margin-left: 0;
	margin-right: var(--sidebar);
}
[dir='rtl'] .nav-item {
	text-align: right;
}
[dir='rtl'] .swatch-actions {
	right: auto;
	left: 10px;
}
[dir='rtl'] .toast {
	right: auto;
	left: 22px;
}
@media (max-width: 700px) {
	[dir='rtl'] .sidebar {
		transform: translateX(100%);
	}
	[dir='rtl'] .sidebar.open {
		transform: none;
	}
	[dir='rtl'] .workspace {
		margin-right: 0;
	}
}
@media (max-width: 700px) {
	.site-footer {
		padding: 28px 17px 34px;
		grid-template-columns: 1fr;
		gap: 22px;
	}
	.footer-links {
		text-align: left;
		justify-content: start;
	}
	[dir='rtl'] .footer-links {
		text-align: right;
	}
}

.sidebar {
	padding-top: 18px;
}
.brand-mark {
	display: flex;
	align-items: center;
	gap: 10px;
	height: 42px;
	padding: 0 8px 18px;
	color: var(--ink);
	text-decoration: none;
}
.brand-icon {
	margin-top: 6px;
	width: 34px;
	height: 34px;
	object-fit: contain;
	display: block;
	flex: 0 0 auto;
	transform: scale(1.28);
	transform-origin: center;
}
.brand-copy {
	display: flex;
	align-items: center;
	gap: 5px;
	line-height: 1;
}
.brand-copy strong {
	font-size: 14px;
	font-weight: 800;
	letter-spacing: -0.03em;
}
.brand-copy small {
	display: inline;
	color: var(--muted);
	font-size: 9px;
	margin: 0;
}
.swatch-info {
	background: rgba(246, 246, 244, 0.95);
	color: #171914;
}
.swatch-info strong {
	color: #171914;
}
.swatch-info small {
	color: #4f534b;
}
.footer-brand > a {
	background: var(--bg);
	display: inline-flex;
	align-items: center;
}
.footer-brand .logo-light {
	mix-blend-mode: multiply;
}
.footer-brand .logo-dark {
	display: none;
}
[data-theme='dark'] .footer-brand .logo-light {
	display: none;
}
[data-theme='dark'] .footer-brand .logo-dark {
	display: block;
}
[data-theme='dark'] .footer-brand > a {
	background: var(--bg);
}
