:root {
	--primary: #b43eec;
	--primary-dark: #7a1fb0;
	--brand-pink: #ff5ac8;
	--brand-violet: #8a25ff;
	--primary-soft: rgba(180, 62, 236, 0.18);
	--white: #ffffff;
	--dark-bg: #1d1d1d;
	--text: #ffffff;
	--text-muted: #fff;
	--border: rgba(255, 255, 255, 0.08);
	--card-bg: #252525;
	--footer-bg: #111111;
	--focus: #f7d46b;
	--container: 1180px;
	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 24px;
	--shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

@keyframes crozify-float {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--dark-bg);
	color: var(--text);
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	line-height: 1.7;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
.wp-block-heading:is(h1, h2) {
	color: var(--primary);
}

body.nav-open {
	overflow: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
	transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

a:hover {
	color: var(--primary);
}

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

input,
textarea,
select {
	width: 100%;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.04);
	color: var(--text);
	padding: 0.9rem 1rem;
}

textarea {
	min-height: 160px;
	resize: vertical;
}

button,
input[type='submit'] {
	cursor: pointer;
}

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

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

.screen-reader-text:focus {
	position: fixed;
	top: 1rem;
	left: 1rem;
	z-index: 100000;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	clip: auto;
	background: var(--white);
	color: #111111;
	border-radius: var(--radius-sm);
}

.container {
	width: min(100% - 2rem, var(--container));
	margin-inline: auto;
}

.narrow-content {
	width: min(100% - 2rem, 820px);
	margin-inline: auto;
}

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(29, 29, 29, 0.84);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
	border-color: var(--border);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.header-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 2rem;
	min-height: 76px;
}

.site-branding {
	display: flex;
	align-items: center;
	min-width: 0;
}

.custom-logo-link,
.site-title {
	display: inline-flex;
	align-items: center;
}

.custom-logo,
.site-title-logo img {
	max-height: 52px;
	width: auto;
}

.site-title-logo img {
	max-width: min(230px, 46vw);
	object-fit: contain;
}

.site-title {
	font-size: 1.45rem;
	font-weight: 800;
	letter-spacing: 0;
}

.main-navigation {
	justify-self: center;
}

.primary-menu,
.footer-menu {
	display: flex;
	align-items: center;
	gap: 1.6rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-menu a {
	color: var(--text-muted);
	font-weight: 500;
	font-size: 0.95rem;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a {
	color: var(--text);
}

.btn,
.submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	border: 1px solid transparent;
	border-radius: 999px;
	padding: 0.78rem 1.22rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
}

.btn:hover,
.submit:hover {
	transform: translateY(-2px);
}

.btn-primary,
.submit {
	background: linear-gradient(135deg, var(--brand-violet), var(--primary) 48%, var(--brand-pink));
	color: var(--white);
	box-shadow: 0 12px 28px rgba(180, 62, 236, 0.32);
}

.btn-primary:hover,
.submit:hover {
	background: linear-gradient(135deg, #9c3bff, #c85cff 48%, #ff78d4);
	color: var(--white);
}

.btn-secondary {
	border-color: var(--border);
	background: rgba(255, 255, 255, 0.06);
	color: var(--white);
}

.btn-secondary:hover {
	border-color: rgba(180, 62, 236, 0.48);
	background: var(--primary-soft);
	color: var(--white);
}

.btn-ghost {
	border-color: rgba(255, 255, 255, 0.16);
	color: var(--white);
}

.btn-ghost:hover {
	background: rgba(255, 255, 255, 0.08);
	color: var(--white);
}

.btn-light {
	background: var(--white);
	color: #181818;
}

.btn-light:hover {
	color: #181818;
}

.menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	border: 1px solid var(--border);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	color: var(--white);
}

.menu-toggle-bar,
.menu-toggle-bar::before,
.menu-toggle-bar::after {
	display: block;
	width: 18px;
	height: 2px;
	margin-inline: auto;
	border-radius: 999px;
	background: currentColor;
	content: '';
	transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle-bar::before {
	transform: translateY(-6px);
}

.menu-toggle-bar::after {
	transform: translateY(4px);
}

.menu-toggle[aria-expanded='true'] .menu-toggle-bar {
	transform: rotate(45deg);
}

.menu-toggle[aria-expanded='true'] .menu-toggle-bar::before {
	opacity: 0;
}

.menu-toggle[aria-expanded='true'] .menu-toggle-bar::after {
	transform: translateY(-2px) rotate(-90deg);
}

.hero-section {
	position: relative;
	overflow: hidden;
	padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 7rem);
	background:
		radial-gradient(circle at 82% 18%, rgba(255, 90, 200, 0.32), transparent 24rem),
		radial-gradient(circle at 16% 12%, rgba(138, 37, 255, 0.32), transparent 26rem),
		linear-gradient(135deg, #171717 0%, #241627 46%, #141414 100%);
}

.reveal-on-scroll {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 700ms ease, transform 700ms ease;
	transition-delay: var(--reveal-delay, 0ms);
	will-change: opacity, transform;
}

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

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
	align-items: center;
	gap: clamp(3rem, 7vw, 6rem);
}

.hero-brand-logo {
	width: min(100%, 360px);
	margin-bottom: 1.35rem;
}

.eyebrow {
	margin: 0 0 0.8rem;
	margin-bottom: 15px;
	color: #ffd6f3;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.hero-copy h1 {
	margin: 0;
	max-width: 780px;
	background: linear-gradient(135deg, var(--brand-violet), var(--primary) 44%, var(--brand-pink));
	background-clip: text;
	color: var(--primary);
	font-size: clamp(2.7rem, 8vw, 5.7rem);
	line-height: 0.98;
	letter-spacing: 0;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.page-hero h1,
.single-hero h1 {
	margin: 0;
	max-width: 780px;
	color: var(--primary);
	font-size: clamp(2rem, 5vw, 3.2rem);
	line-height: 1.08;
	letter-spacing: 0;
}

.single-hero h1 {
	font-size: clamp(2rem, 5vw, 3.4rem);
}

.hero-copy p,
.page-hero p,
.download-cta p {
	max-width: 620px;
	margin: 1.35rem 0 0;
	color: var(--text-muted);
	font-size: clamp(1rem, 2vw, 1.2rem);
}

.inner-hero-description p:last-child {
	margin-bottom: 0;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 2rem;
}

.hero-device {
	display: flex;
	justify-content: center;
}

.hero-phone-image {
	width: min(100%, 560px);
	object-fit: contain;
	animation: crozify-float 5.5s ease-in-out infinite;
}

.app-ui-section {
	background:
		radial-gradient(circle at 12% 12%, rgba(255, 90, 200, 0.16), transparent 22rem),
		#171717;
}

.app-ui-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
	align-items: center;
	gap: clamp(2rem, 6vw, 5rem);
}

.app-ui-media {
	justify-self: center;
}

.app-ui-media img {
	width: min(100%, 360px);
}

.page-hero,
.single-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(4rem, 8vw, 7rem) 0;
	background:
		radial-gradient(circle at 15% 0%, rgba(180, 62, 236, 0.28), transparent 28rem),
		linear-gradient(135deg, #1d1d1d, #171717);
}

.inner-hero::after {
	position: absolute;
	right: max(1rem, calc((100vw - var(--container)) / 2));
	bottom: -72px;
	width: clamp(190px, 28vw, 390px);
	aspect-ratio: 1;
	border: 1px solid rgba(180, 62, 236, 0.25);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(180, 62, 236, 0.18), transparent 62%);
	content: '';
	pointer-events: none;
}

.inner-hero .container {
	position: relative;
	z-index: 1;
}

.inner-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(180px, 280px);
	align-items: center;
	gap: clamp(1.5rem, 4vw, 3rem);
}

.inner-hero-copy {
	min-width: 0;
}

.inner-hero-artwork {
	justify-self: end;
	width: min(100%, 280px);
}

.compact-hero {
	padding: clamp(3.8rem, 7vw, 6rem) 0;
}

.breadcrumb {
	display: inline-flex;
	max-width: 100%;
	margin-bottom: 1.1rem;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	padding: 0.42rem 0.7rem;
	color: var(--text-muted);
	font-size: 0.82rem;
	font-weight: 700;
	backdrop-filter: blur(12px);
}

.breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.breadcrumb li {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.breadcrumb li:not(:last-child)::after {
	color: rgba(255, 255, 255, 0.42);
	content: '/';
}

.breadcrumb a {
	color: var(--text-muted);
}

.breadcrumb a:hover {
	color: var(--primary);
}

.breadcrumb span[aria-current='page'] {
	color: var(--white);
}

.archive-description {
	max-width: 720px;
	color: var(--text-muted);
}

.section-heading {
	max-width: 720px;
	margin-bottom: 2.5rem;
}

.section-heading-row {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 1.5rem;
	max-width: none;
}

.section-heading h2,
.download-cta h2,
#related-posts-title,
.comments-title,
.comment-reply-title {
	margin: 0;
	color: var(--primary);
	font-size: clamp(2rem, 4vw, 3.3rem);
	line-height: 1.08;
	letter-spacing: 0;
	margin-bottom: 20px;
}

.section-heading p:not(.eyebrow) {
	color: var(--text-muted);
}

.section-heading .btn {
	margin-top: 1.4rem;
}

.feature-grid,
.story-grid,
.post-grid {
	display: grid;
	gap: 1.25rem;
}

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

.feature-card,
.story-card,
.post-card,
.widget,
.comments-area,
.empty-state {
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	background: var(--card-bg);
}

.feature-card,
.story-card,
.empty-state {
	padding: clamp(1.25rem, 3vw, 1.8rem);
}

.feature-card,
.story-card {
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
	transform: translateY(-5px);
	border-color: rgba(180, 62, 236, 0.42);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.feature-card h3,
.story-card h3 {
	margin: 1rem 0 0.6rem;
	color: var(--white);
	font-size: 1.2rem;
}

.feature-card p,
.story-card p,
.empty-state p {
	margin: 0;
	color: var(--text-muted);
}

.feature-icon {
	width: 90%;
	height: auto;
}

.story-card {
	display: flex;
	flex-direction: column;
	gap: 1.3rem;
	justify-content: space-between;
	min-height: 210px;
}

.story-card strong {
	color: #efc9ff;
}

.qr-download-section {
	background:
		radial-gradient(circle at 90% 15%, rgba(180, 62, 236, 0.22), transparent 26rem),
		#191919;
}

.qr-download-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
	align-items: center;
	gap: clamp(2rem, 6vw, 5rem);
}

.qr-artwork {
	justify-self: start;
}

.qr-artwork img {
	width: min(100%, 500px);
}

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

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

.post-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	min-height: 100%;
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.post-card:hover {
	transform: translateY(-5px);
	border-color: rgba(180, 62, 236, 0.42);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.post-card-media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #191919;
}

.post-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 220ms ease;
}

.post-card:hover .post-card-media img {
	transform: scale(1.04);
}

.post-card-placeholder {
	width: 100%;
	height: 100%;
	background:
		linear-gradient(135deg, rgba(180, 62, 236, 0.38), rgba(255, 255, 255, 0.04)),
		#202020;
}

.post-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1.2rem;
}

.post-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-bottom: 0.85rem;
}

.post-category {
	display: inline-flex;
	border-radius: 999px;
	background: var(--primary-soft);
	color: #efc9ff;
	padding: 0.28rem 0.58rem;
	font-size: 0.72rem;
	font-weight: 800;
	line-height: 1;
}

.post-category:hover {
	color: var(--white);
}

.post-card-title {
	margin: 0;
	color: var(--white);
	font-size: 0.95rem;
	line-height: 1.25;
}

.post-card-date {
	margin-top: 0.55rem;
	color: var(--text-muted);
	font-size: 0.85rem;
}

.post-card-excerpt {
	margin: 0.8rem 0 1.2rem;
	color: var(--text-muted);
}

.post-card-excerpt p {
	margin: 0;
}

.post-card-link {
	margin-top: auto;
	align-self: flex-start;
}

.download-cta {
	padding: clamp(3rem, 7vw, 5rem) 0;
	background:
		linear-gradient(135deg, rgba(180, 62, 236, 0.92), rgba(122, 31, 176, 0.94)),
		#b43eec;
}

.download-cta h2 {
	color: var(--white);
}

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

.download-cta .eyebrow,
.download-cta p {
	color: rgba(255, 255, 255, 0.9);
}

.content-sidebar-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: start;
}

.sidebar {
	display: grid;
	gap: 1rem;
}

.sidebar-artwork img {
	width: 100%;
}

.widget {
	padding: 1.25rem;
}

.widget-title {
	margin: 0 0 1rem;
	font-size: 1rem;
}

.widget ul {
	margin: 0;
	padding-left: 1.1rem;
	color: var(--text-muted);
}

.widget li + li {
	margin-top: 0.6rem;
}

.wp-block-search__inside-wrapper,
.search-form {
	display: flex;
	gap: 0.55rem;
}

.wp-block-search__button,
.search-submit {
	border: 0;
	border-radius: var(--radius-sm);
	background: var(--primary);
	color: var(--white);
	padding: 0 1rem;
	font-weight: 700;
}

.widget_categories ul,
.widget_tag_cloud .tagcloud,
.sidebar .widget:nth-of-type(3) ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	padding-left: 0;
	list-style: none;
}

.widget_categories li,
.sidebar .widget:nth-of-type(3) li {
	margin: 0;
}

.widget_categories li + li,
.sidebar .widget:nth-of-type(3) li + li {
	margin-top: 0;
}

.widget_categories a,
.widget_tag_cloud a,
.sidebar .widget:nth-of-type(3) a {
	display: inline-flex;
	align-items: center;
	border: 1px solid rgba(180, 62, 236, 0.32);
	border-radius: 999px;
	background: var(--primary-soft);
	color: #efc9ff;
	padding: 0.42rem 0.72rem;
	font-size: 0.82rem !important;
	font-weight: 800;
	line-height: 1;
}

.widget_categories a:hover,
.widget_tag_cloud a:hover,
.sidebar .widget:nth-of-type(3) a:hover {
	border-color: rgba(180, 62, 236, 0.62);
	background: rgba(180, 62, 236, 0.26);
	color: var(--white);
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.7rem;
	margin-top: 2rem;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 0 0.75rem;
	color: var(--text-muted);
}

.page-numbers.current,
.page-numbers:hover {
	background: var(--primary);
	border-color: var(--primary);
	color: var(--white);
}

.single-hero-inner {
	max-width: 900px;
}

.single-hero .post-categories {
	margin-bottom: 1rem;
}

.post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	align-items: center;
	margin-top: 1.2rem;
	color: var(--text-muted);
}

.single-featured-image {
	margin-top: 2.5rem;
}

.single-featured-image img {
	width: 100%;
	max-height: 620px;
	object-fit: cover;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}

.entry-content {
	color: #eeeeee;
	font-size: 1.05rem;
}

.entry-content > * {
	margin-top: 0;
	margin-bottom: 1.35rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin-top: 2rem;
	line-height: 1.18;
}

.entry-content h2 {
	font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.entry-content h3 {
	font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}

.entry-content p,
.entry-content li {
	color: #e5e5e5;
}

.entry-content a {
	color: #e9c7ff;
	text-decoration: underline;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

.entry-content .crozify-download-shortcode {
	color: var(--white);
	text-decoration: none;
}

.entry-content blockquote {
	margin-inline: 0;
	border-left: 4px solid var(--primary);
	padding: 1rem 0 1rem 1.3rem;
	color: var(--text);
	background: rgba(255, 255, 255, 0.03);
}

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

.entry-content th,
.entry-content td {
	border: 1px solid var(--border);
	padding: 0.75rem;
}

.entry-content pre,
.entry-content code {
	border-radius: var(--radius-sm);
	background: #111111;
}

.entry-content pre {
	overflow-x: auto;
	padding: 1rem;
}

.post-footer {
	display: grid;
	gap: 1.3rem;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--border);
}

.tag-list,
.share-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	align-items: center;
}

.tag-list a,
.share-links a {
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 0.45rem 0.75rem;
	color: var(--text-muted);
	font-size: 0.88rem;
}

.tag-list a:hover,
.share-links a:hover {
	background: var(--primary-soft);
	border-color: rgba(180, 62, 236, 0.5);
	color: var(--white);
}

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

.post-navigation a {
	display: block;
	min-height: 100%;
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	background: var(--card-bg);
	padding: 1rem;
	color: var(--text);
	font-weight: 700;
}

.related-posts,
.comments-area {
	margin-top: 3rem;
}

.related-posts > h2 {
	margin-bottom: 1.5rem;
}

.comments-area {
	padding: clamp(1.25rem, 3vw, 2rem);
}

.comment-list {
	margin: 1.5rem 0;
	padding: 0;
	list-style: none;
}

.comment-list .comment {
	border-top: 1px solid var(--border);
	padding-top: 1rem;
	margin-top: 1rem;
}

.comment-meta {
	color: var(--text-muted);
	font-size: 0.9rem;
}

.comment-content {
	color: #e5e5e5;
}

.comment-respond {
	margin-top: 2rem;
}

.comment-form {
	display: grid;
	gap: 1rem;
}

.comment-form label {
	display: block;
	margin-bottom: 0.35rem;
	color: var(--text-muted);
	font-weight: 600;
}

.site-footer {
	background: var(--footer-bg);
	border-top: 1px solid var(--border);
}

.footer-inner {
	display: grid;
	gap: 1.25rem;
	justify-items: center;
	padding: 2.4rem 0;
	text-align: center;
}

.footer-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.footer-logo img {
	width: min(130px, 36vw);
	height: auto;
}

.footer-menu {
	justify-content: center;
	flex-wrap: wrap;
	gap: 0;
}

.footer-menu li {
	display: inline-flex;
	align-items: center;
}

.footer-menu li:not(:last-child)::after {
	display: inline-block;
	width: 1px;
	height: 0.85em;
	margin: 0 0.75rem;
	background: rgba(255, 255, 255, 0.22);
	content: '';
}

.footer-menu a,
.footer-copy {
	color: var(--text-muted);
}

.footer-menu a {
	font-size: 0.8rem;
	font-weight: 600;
}

.footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
}

.footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	color: var(--white);
}

.footer-social a:hover {
	border-color: rgba(180, 62, 236, 0.56);
	background: var(--primary-soft);
	color: var(--white);
	transform: translateY(-2px);
}

.footer-social svg {
	width: 19px;
	height: 19px;
	fill: currentColor;
}

.footer-copy {
	margin: 0;
	font-size: 11px;
}

.error-hero {
	min-height: 62vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.wp-caption,
.wp-caption-text,
.gallery-caption,
.bypostauthor {
	color: var(--text-muted);
}

.alignwide {
	max-width: min(100%, var(--container));
	margin-inline: auto;
}

.alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

@media (max-width: 1024px) {
	.header-inner {
		gap: 1rem;
	}

	.feature-grid,
	.story-grid,
	.post-grid,
	.post-grid-compact {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.inner-hero-grid {
		grid-template-columns: 1fr;
	}

	.inner-hero-artwork {
		justify-self: start;
		width: min(100%, 240px);
	}

	.content-sidebar-layout {
		grid-template-columns: 1fr;
	}

}

@media (max-width: 820px) {
	.header-inner {
		grid-template-columns: 1fr auto auto;
		min-height: 68px;
	}

	.menu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.main-navigation {
		position: fixed;
		inset: 68px 0 auto 0;
		display: none;
		padding: 1rem;
		background: rgba(17, 17, 17, 0.98);
		border-bottom: 1px solid var(--border);
	}

	.nav-open .main-navigation {
		display: block;
	}

	.primary-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.primary-menu a {
		display: block;
		padding: 0.95rem 0.4rem;
		font-size: 1.05rem;
	}

	.header-download {
		display: inline-flex;
		min-height: 40px;
		padding: 0.68rem 0.9rem;
		font-size: 0.82rem;
	}

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

	.app-ui-grid {
		grid-template-columns: 1fr;
	}

	.app-ui-media {
		justify-self: start;
	}

	.hero-device {
		justify-content: flex-start;
	}

	.hero-phone-image {
		width: min(100%, 480px);
	}

	.download-inner,
	.qr-download-grid,
	.section-heading-row {
		align-items: flex-start;
		flex-direction: column;
	}

	.qr-download-grid {
		grid-template-columns: 1fr;
	}

	.qr-artwork {
		justify-self: start;
	}

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

@media (max-width: 640px) {
	.container,
	.narrow-content {
		width: min(100% - 1.25rem, var(--container));
	}

	.hero-section {
		padding-top: 4rem;
	}

	.feature-grid,
	.story-grid,
	.post-grid,
	.post-grid-compact {
		grid-template-columns: 1fr;
	}

	.hero-copy h1 {
		font-size: clamp(2.35rem, 14vw, 3.4rem);
	}

	.page-hero h1,
	.single-hero h1 {
		font-size: clamp(1.85rem, 9vw, 2.65rem);
	}

	.inner-hero-artwork {
		width: 100%;
		max-width: 220px;
	}

	.hero-actions,
	.wp-block-search__inside-wrapper,
	.search-form {
		flex-direction: column;
		align-items: stretch;
	}

	.btn,
	.submit,
	.search-submit,
	.wp-block-search__button {
		width: 100%;
	}

	.header-download {
		width: auto;
		padding-inline: 0.75rem;
	}

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

	.qr-artwork,
	.qr-artwork img {
		width: 100%;
	}

	.app-ui-media img {
		width: min(100%, 320px);
	}

	.hero-phone-image {
		width: 100%;
	}
}

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