/*
Theme Name: QR Guardian
Theme URI: https://qr-guardian.com
Author: Derry
Description: A WordPress theme for QR Guardian 
Version: 1.0.6
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 7.4
Text Domain: qr-guardian
*/

:root {
	--qrg-bg-deep: #020c18;
	--qrg-bg-mid: #040f1e;
	--qrg-bg-card: #0a1f35;
	--qrg-cyan: #00c8e8;
	--qrg-cyan-soft: rgba(0, 200, 232, 0.12);
	--qrg-cyan-border: rgba(0, 200, 232, 0.22);
	--qrg-green: #00d97e;
	--qrg-violet: #a78bfa;
	--qrg-rose: #fb7185;
	--qrg-amber: #f59e0b;
	--qrg-red: #f87171;
	--qrg-white: #ffffff;
	--qrg-text-main: rgba(255, 255, 255, 0.92);
	--qrg-text-body: rgba(255, 255, 255, 0.74);
	--qrg-text-muted: rgba(255, 255, 255, 0.5);
	--qrg-border: rgba(255, 255, 255, 0.08);
	--qrg-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
	--qrg-radius-lg: 28px;
	--qrg-radius-md: 18px;
	--qrg-radius-sm: 12px;
	--qrg-content-width: 760px;
	--qrg-wide-width: 1200px;
}

html {
	scroll-behavior: smooth;
	scrollbar-gutter: stable;
}

body {
	margin: 0;
	color: var(--qrg-text-main);
	font-family: "IBM Plex Sans", sans-serif;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.mobile-menu-open {
	overflow: hidden;
}

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

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

svg {
	display: block;
}

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

.site-shell {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.site-main {
	flex: 1;
	overflow: hidden;
	padding-top: 0;
}

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

.site-header {
	position: relative;
	inset: 0 0 auto;
	top: 0;
	z-index: 200;
	background: none;
	border-bottom: 1px solid transparent;
	transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

@media (min-width: 901px) {
	.site-header--front {
		position: absolute;
		left: 0;
		right: 0;
	}
}

@media (max-width: 768px) {
	.site-header.is-scrolled {
		background: none;
		border-color: transparent;
		backdrop-filter: none;
	}
}

.site-header__inner {
	width: min(var(--qrg-wide-width), calc(100% - 48px));
	margin: 0 auto;
	padding: 18px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.site-brand__mark {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #0284c7, #0ea5e9);
	color: #fff;
	box-shadow: 0 10px 30px rgba(14, 165, 233, 0.28);
}

.site-brand__mark svg,
.site-brand__mark img {
	width: 15px;
	height: 18px;
	object-fit: contain;
}

.qrg-brand-icon,
.qrg-play-icon {
	display: block;
	flex-shrink: 0;
}

.site-header__cta svg,
.qrg-store-button .wp-block-button__link svg,
.hero-actions .site-header__cta svg {
	flex-shrink: 0;
}

.site-brand__text {
	font-size: 1rem;
}

.site-brand__text span {
	color: var(--qrg-cyan);
}

.site-nav {
	margin-left: auto;
}

.site-menu,
.footer-menu,
.mobile-menu__links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-menu {
	display: flex;
	align-items: center;
	gap: 32px;
}

.site-menu a,
.footer-menu a {
	color: var(--qrg-text-muted);
	font-size: 0.92rem;
	transition: color 0.2s ease;
}

.site-menu a:hover,
.footer-menu a:hover,
.mobile-menu__links a:hover {
	color: var(--qrg-white);
}

.site-header__cta,
.site-header__cta.wp-block-button__link,
.qrg-store-button .wp-block-button__link,
.search-form__button,
.comment-submit,
.hero-actions .site-header__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0.9rem 1.35rem;
	border: 1px solid transparent;
	border-radius: 12px;
	background: var(--qrg-cyan);
	color: #00141f;
	font-weight: 700;
	font-size: 0.94rem;
	line-height: 1;
	box-shadow: 0 10px 30px rgba(0, 200, 232, 0.22);
	transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-header__cta:hover,
.qrg-store-button .wp-block-button__link:hover,
.search-form__button:hover,
.comment-submit:hover {
	transform: translateY(-1px);
	background: #2ed9f0;
	box-shadow: 0 14px 32px rgba(0, 200, 232, 0.26);
}

.site-header__cta--secondary {
	background: transparent;
	border-color: var(--qrg-border);
	color: var(--qrg-text-main);
	box-shadow: none;
}

.site-header__cta--secondary:hover {
	border-color: rgba(255, 255, 255, 0.24);
	background: rgba(255, 255, 255, 0.06);
}

.site-burger,
.mobile-menu__close {
	display: none;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 0;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.04);
	color: #fff;
	cursor: pointer;
}

.site-burger svg,
.mobile-menu__close svg {
	width: 22px;
	height: 22px;
}

.mobile-menu {
	position: fixed;
	inset: 0;
	display: flex;
	width: 100%;
	height: 100dvh;
	background:
		radial-gradient(circle at 50% 0%, rgba(0, 200, 232, 0.07), transparent 28%),
		linear-gradient(180deg, var(--qrg-bg-deep) 0%, var(--qrg-bg-mid) 54%, var(--qrg-bg-deep) 100%);
	backdrop-filter: blur(24px);
	padding: max(16px, env(safe-area-inset-top)) 16px 16px;
	align-items: stretch;
	justify-content: flex-start;
}

.mobile-menu[hidden] {
	display: none;
}

.mobile-menu__panel {
	height: 100%;
	width: 100%;
	min-height: calc(100dvh - 32px);
	border: 1px solid var(--qrg-border);
	border-radius: 28px;
	background:
		radial-gradient(circle at 50% 0%, rgba(0, 200, 232, 0.07), transparent 28%),
		linear-gradient(180deg, var(--qrg-bg-deep) 0%, var(--qrg-bg-mid) 54%, var(--qrg-bg-deep) 100%);
	box-sizing: border-box;
	padding: 20px;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

.mobile-menu__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.mobile-menu__nav {
	margin: 28px 0 auto;
}

.mobile-menu__links {
	display: grid;
	gap: 0;
}

.mobile-menu__links li {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu__links li:first-child {
	border-top: none;
}

.mobile-menu__links li:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu__links a {
	display: block;
	padding: 16px 0;
	font-size: clamp(1.2rem, 5vw, 1.55rem);
	font-weight: 600;
	letter-spacing: -0.03em;
	color: var(--qrg-text-main);
	line-height: 1.2;
}

.site-header__cta--mobile {
	display: flex;
	align-self: stretch;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	flex-shrink: 0;
	justify-content: center;
	padding: 1rem 1.1rem;
	text-align: center;
	margin-top: 24px;
}

.site-footer {
	border-top: 1px solid var(--qrg-border);
	background: rgba(2, 12, 24, 0.9);
}

.site-footer__inner {
	width: min(var(--qrg-wide-width), calc(100% - 48px));
	margin: 0 auto;
	padding: 32px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.site-footer__copy {
	margin: 0;
	color: rgba(255, 255, 255, 0.32);
	font-size: 0.92rem;
}

.footer-menu {
	display: flex;
	align-items: center;
	gap: 24px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-top: 24px;
}

.entry-content .alignwide,
.front-page-entry .alignwide {
	width: min(var(--qrg-wide-width), calc(100% - 48px));
	max-width: var(--qrg-wide-width);
	margin-left: auto;
	margin-right: auto;
}

.entry-content .alignfull,
.front-page-entry .alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.entry-content>.alignwide,
.entry-content>.alignfull {
	margin-top: 2.25rem;
	margin-bottom: 2.25rem;
}

.front-page-entry .wp-block-group,
.front-page-entry .wp-block-columns,
.front-page-entry .wp-block-column {
	margin-top: 0;
	margin-bottom: 0;
}

.qrg-hero {
	position: relative;
	padding: clamp(7rem, 13vw, 9.5rem) 0 5.25rem;
	text-align: center;
	overflow: hidden;
}

.qrg-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 64% 52% at 50% 24%, rgba(2, 132, 199, 0.18) 0%, transparent 68%),
		linear-gradient(180deg, rgba(2, 12, 24, 0.8) 0%, rgba(4, 15, 30, 0.2) 45%, rgba(2, 12, 24, 0.9) 100%);
	pointer-events: none;
}

.qrg-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(0, 200, 232, 0.026) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 200, 232, 0.026) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse 78% 60% at 50% 34%, #000 24%, transparent 82%);
	pointer-events: none;
}

.qrg-hero__inner {
	position: relative;
	z-index: 1;
}

.qrg-badge,
.entry-hero__eyebrow,
.listing-hero__eyebrow,
.related-posts__eyebrow,
.author-panel__eyebrow,
.empty-state__eyebrow,
.qrg-inline-cta__eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.42rem 0.9rem;
	border-radius: 999px;
	border: 1px solid var(--qrg-cyan-border);
	background: var(--qrg-cyan-soft);
	color: var(--qrg-cyan);
	font-family: "IBM Plex Mono", monospace;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.qrg-badge--threat {
	background: rgba(248, 113, 113, 0.08);
	border-color: rgba(248, 113, 113, 0.18);
	color: var(--qrg-red);
}

.qrg-badge--violet {
	background: rgba(167, 139, 250, 0.09);
	border-color: rgba(167, 139, 250, 0.22);
	color: var(--qrg-violet);
}

.qrg-headline,
.entry-hero__title,
.listing-hero__title,
.empty-state__title {
	margin: 1.35rem auto 0;
	font-size: clamp(2.7rem, 6vw, 5rem);
	line-height: 1.04;
	letter-spacing: -0.045em;
	max-width: 16ch;
}

.entry-hero--page {
	max-width: var(--qrg-content-width);
	margin: 0 auto;
}

.entry-hero--page .entry-hero__title {
	margin: 0;
}

.entry-hero__title {
	margin-top: 0px;
}

.qrg-headline em,
.qrg-section-title em {
	font-style: normal;
}

.qrg-headline em,
.qrg-section-title--cyan em {
	color: var(--qrg-cyan);
}

.qrg-section-title--threat em {
	color: var(--qrg-red);
}

.qrg-section-title--violet em {
	color: var(--qrg-violet);
}

.qrg-gradient {
	color: var(--qrg-cyan);
}

.qrg-accent-threat {
	color: var(--qrg-red);
}

.qrg-accent-violet {
	color: var(--qrg-violet);
}

.qrg-subhead,
.entry-hero__copy,
.listing-hero__copy,
.empty-state__copy {
	max-width: 40rem;
	margin: 1.2rem auto 0;
	color: var(--qrg-text-body);
	font-size: 1.05rem;
	line-height: 1.85;
}

.qrg-store-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	margin-top: 2rem;
}

.qrg-store-row--left {
	justify-content: flex-start;
}

.qrg-store-button,
.qrg-ghost-button {
	margin: 0;
}

.qrg-store-button .wp-block-button__link,
.qrg-ghost-button .wp-block-button__link {
	padding-inline: 1.45rem;
	border-radius: 14px;
}

.qrg-store-button .wp-block-button__link {
	padding: 12px 20px;
	min-height: 58px;
	background: rgba(255, 255, 255, 0.04);
	border-color: var(--qrg-border);
	color: #fff;
	box-shadow: none;
	font-weight: 700;
}

.qrg-store-button .wp-block-button__link:hover {
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(255, 255, 255, 0.16);
	box-shadow: none;
}

.qrg-store-button--alt .wp-block-button__link {
	background: rgba(255, 255, 255, 0.04);
	border-color: var(--qrg-border);
	color: var(--qrg-text-main);
	box-shadow: none;
}

.qrg-store-button--alt .wp-block-button__link:hover {
	background: rgba(255, 255, 255, 0.08);
	box-shadow: none;
}

.qrg-ghost-button .wp-block-button__link {
	background: transparent;
	border-color: var(--qrg-border);
	color: var(--qrg-text-main);
	box-shadow: none;
}

.qrg-ghost-button .wp-block-button__link:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.24);
	box-shadow: none;
}

.qrg-scan-visual {
	width: min(250px, 78vw);
	aspect-ratio: 1;
	margin: 3.4rem auto 0;
	position: relative;
}

.qrg-scan-frame {
	position: absolute;
	inset: 0;
	border-radius: 18px;
	border: 1.5px solid rgba(0, 200, 232, 0.28);
	background: rgba(6, 21, 40, 0.54);
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
}

.qrg-scan-frame::before {
	content: "";
	position: absolute;
	inset: 20px;
	background-image:
		linear-gradient(rgba(0, 200, 232, 0.18) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 200, 232, 0.18) 1px, transparent 1px);
	background-size: 16% 16%;
	opacity: 0.38;
}

.qrg-corner {
	display: none;
	position: absolute;
	width: 18px;
	height: 18px;
	border-color: var(--qrg-cyan);
	border-style: solid;
}

.qrg-corner--tl {
	top: 0;
	left: 0;
	border-width: 3px 0 0 3px;
	border-top-left-radius: 6px;
}

.qrg-corner--tr {
	top: 0;
	right: 0;
	border-width: 3px 3px 0 0;
	border-top-right-radius: 6px;
}

.qrg-corner--bl {
	bottom: 0;
	left: 0;
	border-width: 0 0 3px 3px;
	border-bottom-left-radius: 6px;
}

.qrg-corner--br {
	right: 0;
	bottom: 0;
	border-width: 0 3px 3px 0;
	border-bottom-right-radius: 6px;
}

.qrg-scan-beam {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--qrg-cyan), transparent);
	box-shadow: 0 0 10px rgba(0, 200, 232, 0.8);
	animation: qrg-scan 2.2s ease-in-out infinite;
}

.qrg-shield-mark {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: linear-gradient(135deg, #0284c7, #0ea5e9);
	box-shadow: 0 12px 36px rgba(14, 165, 233, 0.28);
}

.qrg-shield-mark::before,
.qrg-shield-mark::after {
	content: "";
	position: absolute;
}

.qrg-shield-mark::before {
	inset: 15px 18px 17px;
	border: 2.4px solid #fff;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	clip-path: polygon(50% 0%, 100% 12%, 100% 54%, 50% 100%, 0% 54%, 0% 12%);
}

.qrg-shield-mark::after {
	left: 20px;
	top: 28px;
	width: 16px;
	height: 8px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-45deg);
}

.qrg-stats {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: center;
	gap: 52px;
	margin-top: 3.8rem;
}

.qrg-stats>.wp-block-column {
	flex: 0 1 auto;
	margin: 0 !important;
}

.qrg-stat {
	text-align: center;
}

.qrg-stat__value {
	margin: 0;
	font-family: "IBM Plex Mono", monospace;
	font-size: clamp(1.5rem, 3vw, 1.9rem);
	font-weight: 600;
}

.qrg-stat__label {
	margin: 0.45rem 0 0;
	font-size: 0.8rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--qrg-text-muted);
}

.qrg-section {
	padding: 5.5rem 0;
}

.qrg-section--mid {
	background: rgba(4, 15, 30, 0.72);
}

.qrg-section__header {
	text-align: center;
	max-width: 44rem;
	margin: 0 auto 3rem;
}

.qrg-section-title,
.related-posts__title,
.author-panel__title {
	margin: 1rem 0 0;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.08;
	letter-spacing: -0.035em;
}

.qrg-section-title--left {
	text-align: left;
}

.qrg-section-copy {
	margin: 1rem auto 0;
	max-width: 34rem;
	color: var(--qrg-text-muted);
	font-size: 1rem;
	line-height: 1.8;
}

.qrg-section-copy--left {
	margin-left: 0;
	text-align: left;
}

.qrg-card-grid {
	display: grid !important;
	gap: 14px;
}

#security .qrg-card-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

#how-it-works .qrg-card-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 26px;
}

.qrg-card-grid>.wp-block-column {
	min-width: 0;
	margin: 0 !important;
}

.qrg-info-card,
.qrg-feature-item,
.qrg-step-card,
.qrg-inline-cta,
.author-panel,
.comments-panel,
.search-form,
.empty-state {
	border: 1px solid var(--qrg-border);
	background: linear-gradient(180deg, rgba(10, 31, 53, 0.95) 0%, rgba(4, 15, 30, 0.95) 100%);
	box-shadow: var(--qrg-shadow);
}

.qrg-info-card {
	height: 100%;
	min-height: 230px;
	padding: 1.55rem;
	border-radius: 18px;
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.qrg-info-card:hover,
.qrg-feature-item:hover,
.qrg-step-card:hover,
.post-card:hover,
.qrg-query-card:hover {
	transform: translateY(-3px);
}

.qrg-info-card--warning:hover {
	border-color: rgba(245, 158, 11, 0.26);
}

.qrg-info-card--danger:hover {
	border-color: rgba(248, 113, 113, 0.26);
}

.qrg-info-card--violet:hover {
	border-color: rgba(167, 139, 250, 0.28);
}

.qrg-info-card--rose:hover {
	border-color: rgba(251, 113, 133, 0.28);
}

.qrg-info-card__eyebrow,
.qrg-step-card__num,
.qrg-feature-item__num {
	margin: 0;
	font-family: "IBM Plex Mono", monospace;
	font-size: 0.72rem;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.44);
}

.qrg-info-card__title,
.qrg-feature-item__title,
.qrg-step-card__title,
.qrg-query-card .wp-block-post-title {
	margin: 0.85rem 0 0;
	font-size: 1rem;
	line-height: 1.35;
	letter-spacing: -0.02em;
}

.qrg-info-card__copy,
.qrg-feature-item__copy,
.qrg-step-card__copy {
	margin: 0.7rem 0 0;
	color: var(--qrg-text-muted);
	font-size: 0.92rem;
	line-height: 1.75;
}

.qrg-feature-layout {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) minmax(268px, 0.8fr);
	gap: 56px;
	align-items: start;
}

.qrg-feature-layout>.wp-block-column {
	margin: 0 !important;
}

.qrg-feature-list {
	display: grid;
	gap: 0.85rem;
}

.qrg-feature-item {
	padding: 1.15rem 1.2rem;
	border-radius: 16px;
	position: relative;
	transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.qrg-feature-item:hover {
	border-color: var(--qrg-cyan-border);
	background: linear-gradient(180deg, rgba(10, 31, 53, 0.98) 0%, rgba(5, 18, 33, 0.98) 100%);
}

.qrg-feature-item__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	padding: 0.16rem 0.45rem;
	border-radius: 999px;
	background: var(--qrg-cyan-soft);
	border: 1px solid var(--qrg-cyan-border);
	color: var(--qrg-cyan);
}

.qrg-phone-visual {
	width: 268px;
	margin: 0 auto;
	border-radius: 28px;
	padding: 14px;
	background: linear-gradient(180deg, #07121f 0%, #030c18 100%);
	border: 1px solid rgba(0, 200, 232, 0.16);
	box-shadow: 0 24px 72px rgba(0, 0, 0, 0.42);
}

.qrg-phone-visual__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 0.3rem 0.35rem 0.9rem;
	font-family: "IBM Plex Mono", monospace;
	font-size: 0.68rem;
	color: var(--qrg-text-muted);
}

.qrg-phone-visual__screen {
	border-radius: 20px;
	padding: 1rem;
	min-height: 360px;
	background: linear-gradient(180deg, rgba(10, 31, 53, 0.8) 0%, rgba(2, 12, 24, 0.92) 100%);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.qrg-phone-progress__title,
.qrg-phone-result__title {
	margin: 0;
	font-size: 0.86rem;
	font-weight: 700;
	text-align: center;
}

.qrg-phone-progress__meta,
.qrg-phone-result__meta {
	margin: 0.45rem 0 0;
	font-family: "IBM Plex Mono", monospace;
	font-size: 0.68rem;
	text-align: center;
	color: var(--qrg-text-muted);
}

.qrg-phone-progress__rail {
	height: 5px;
	margin-top: 0.9rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	overflow: hidden;
}

.qrg-phone-progress__bar {
	height: 100%;
	background: var(--qrg-cyan);
	border-radius: inherit;
}

.qrg-phone-checks {
	display: grid;
	gap: 0.55rem;
	margin-top: 1rem;
}

.qrg-phone-check {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0.6rem 0.7rem;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.03);
	font-family: "IBM Plex Mono", monospace;
	font-size: 0.7rem;
	color: rgba(255, 255, 255, 0.36);
}

.qrg-phone-check.is-done {
	color: rgba(255, 255, 255, 0.82);
}

.qrg-phone-check__dot {
	flex: 0 0 11px;
	width: 11px;
	height: 11px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
}

.qrg-phone-check.is-done .qrg-phone-check__dot {
	background: var(--qrg-green);
	box-shadow: 0 0 12px rgba(0, 217, 126, 0.36);
}

.qrg-phone-check.is-active .qrg-phone-check__dot {
	background: transparent;
	border: 2px solid currentColor;
	border-top-color: transparent;
	animation: qrg-spin 0.7s linear infinite;
}

.qrg-phone-result {
	padding-top: 2.25rem;
	text-align: center;
}

.qrg-phone-result__mark {
	width: 58px;
	height: 58px;
	margin: 0 auto 0.9rem;
	border-radius: 999px;
	border: 1.5px solid rgba(0, 217, 126, 0.28);
	background: rgba(0, 217, 126, 0.12);
	position: relative;
}

.qrg-phone-result__mark::before {
	content: "";
	position: absolute;
	left: 18px;
	top: 20px;
	width: 18px;
	height: 10px;
	border-left: 2px solid var(--qrg-green);
	border-bottom: 2px solid var(--qrg-green);
	transform: rotate(-45deg);
}

.qrg-phone-result__title {
	color: var(--qrg-green);
	font-family: "IBM Plex Mono", monospace;
	font-size: 1.5rem;
	letter-spacing: 0.08em;
}

.qrg-phone-result__summary {
	margin: 0.4rem 0 0;
	color: rgba(0, 217, 126, 0.8);
	font-size: 0.76rem;
}

.qrg-phone-result__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 1rem;
	padding: 0.78rem 1rem;
	border-radius: 10px;
	background: var(--qrg-green);
	color: #001811;
	font-weight: 700;
}

.qrg-step-card {
	height: 100%;
	min-height: 210px;
	padding: 1.5rem;
	border-radius: 18px;
	text-align: center;
}

.qrg-founder {
	display: grid !important;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 72px;
	align-items: center;
}

.qrg-founder>.wp-block-column {
	margin: 0 !important;
}

.qrg-founder__photo {
	position: relative;
	min-height: 380px;
	border-radius: 20px;
	border: 1px solid var(--qrg-border);
	background:
		linear-gradient(180deg, rgba(10, 31, 53, 0.88) 0%, rgba(4, 15, 30, 0.96) 100%),
		radial-gradient(circle at 50% 18%, rgba(0, 200, 232, 0.18), transparent 38%);
	overflow: hidden;
}

.qrg-founder__photo::before {
	content: "";
	position: absolute;
	inset: 18% 22%;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(0, 200, 232, 0.14), transparent 64%);
}

.qrg-founder__photo::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 52%;
	width: 126px;
	height: 126px;
	transform: translate(-50%, -50%);
	border-radius: 32px;
	background: linear-gradient(135deg, #0284c7, #0ea5e9);
	box-shadow: 0 20px 42px rgba(14, 165, 233, 0.24);
}

.qrg-founder__glow {
	position: absolute;
	inset: -30px;
	background: radial-gradient(circle at 50% 60%, rgba(0, 200, 232, 0.08), transparent 64%);
}

.qrg-founder__quote {
	margin: 1.5rem 0 0;
	font-size: clamp(1.08rem, 2vw, 1.34rem);
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.88);
}

.qrg-founder__signature {
	margin-top: 2rem;
	padding-top: 1.4rem;
	border-top: 1px solid var(--qrg-border);
}

.qrg-founder__name {
	margin: 0;
	font-size: 1.08rem;
}

.qrg-founder__role {
	margin: 0.35rem 0 0;
	font-family: "IBM Plex Mono", monospace;
	font-size: 0.76rem;
	color: var(--qrg-cyan);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.qrg-blog-layout {
	display: grid !important;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
	gap: 14px;
	align-items: start;
}

.qrg-blog-layout>.wp-block-column {
	margin: 0 !important;
}

.qrg-blog-query,
.qrg-blog-query .wp-block-post-template {
	margin: 0;
}

.qrg-blog-query .wp-block-post-template {
	list-style: none;
	padding: 0;
}

.qrg-query-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid var(--qrg-border);
	background: linear-gradient(180deg, rgba(10, 31, 53, 0.96) 0%, rgba(4, 15, 30, 0.96) 100%);
	box-shadow: var(--qrg-shadow);
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.qrg-query-card .wp-block-post-featured-image {
	margin: 0;
	position: relative;
}

.qrg-query-card .wp-block-post-featured-image a {
	display: block;
}

.qrg-query-card .wp-block-post-featured-image img {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.qrg-query-card--featured .wp-block-post-featured-image img {
	height: 320px;
}

.qrg-query-card .wp-block-post-terms {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	margin: 0;
}

.qrg-query-card .wp-block-post-terms a,
.post-card__pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0.32rem 0.7rem;
	border-radius: 999px;
	background: rgba(0, 200, 232, 0.12);
	border: 1px solid var(--qrg-cyan-border);
	font-family: "IBM Plex Mono", monospace;
	font-size: 0.63rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--qrg-cyan);
}

.qrg-query-card .wp-block-post-date,
.post-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 1rem 1.15rem 0;
	color: rgba(255, 255, 255, 0.36);
	font-family: "IBM Plex Mono", monospace;
	font-size: 0.72rem;
}

.qrg-query-card .wp-block-post-title,
.qrg-query-card .wp-block-post-excerpt {
	padding-inline: 1.15rem;
}

.qrg-query-card .wp-block-post-title {
	margin-top: 0.55rem;
}

.qrg-query-card .wp-block-post-title a:hover,
.post-card__title a:hover {
	color: var(--qrg-cyan);
}

.qrg-query-card .wp-block-post-excerpt {
	margin: 0.65rem 0 1.2rem;
	color: var(--qrg-text-muted);
	font-size: 0.92rem;
	line-height: 1.72;
}

.qrg-query-card .wp-block-post-excerpt__more-link {
	display: inline-flex;
	margin-top: 0.8rem;
	color: var(--qrg-cyan);
	font-weight: 600;
}

.qrg-blog-query--rail .wp-block-post-template {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.qrg-query-card--compact .wp-block-post-featured-image img {
	height: 150px;
}

.qrg-query-card--compact .wp-block-post-title {
	font-size: 0.94rem;
}

.qrg-query-card--compact .wp-block-post-date {
	padding-top: 0.85rem;
}

.qrg-query-card:hover {
	border-color: rgba(0, 200, 232, 0.24);
}

.qrg-download {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) minmax(228px, 1fr);
	gap: 60px;
	align-items: center;
}

.qrg-download>.wp-block-column {
	margin: 0 !important;
}

.qrg-check-list {
	margin: 1.6rem 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.7rem;
}

.qrg-check-list li {
	position: relative;
	padding-left: 1.6rem;
	color: var(--qrg-text-body);
}

.qrg-check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45rem;
	width: 0.62rem;
	height: 0.36rem;
	border-left: 2px solid var(--qrg-green);
	border-bottom: 2px solid var(--qrg-green);
	transform: rotate(-45deg);
}

.qrg-download-card {
	width: 228px;
	margin: 0 auto;
	padding: 1rem;
	border-radius: 30px;
	border: 1px solid rgba(0, 200, 232, 0.18);
	background: linear-gradient(180deg, #07121f 0%, #020c18 100%);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
	position: relative;
}

.qrg-download-card::before {
	content: "";
	position: absolute;
	inset: -28px;
	background: radial-gradient(circle at center, rgba(0, 200, 232, 0.1), transparent 66%);
	z-index: -1;
}

.qrg-download-card__top {
	width: 78px;
	height: 18px;
	margin: 0 auto 1rem;
	border-radius: 0 0 14px 14px;
	background: #07121f;
}

.qrg-download-card__screen {
	min-height: 340px;
	border-radius: 22px;
	background:
		linear-gradient(180deg, rgba(10, 31, 53, 0.78) 0%, rgba(2, 12, 24, 0.92) 100%),
		radial-gradient(circle at 50% 22%, rgba(0, 200, 232, 0.14), transparent 26%);
	border: 1px solid rgba(255, 255, 255, 0.06);
	position: relative;
	overflow: hidden;
}

.qrg-download-card__screen::before,
.qrg-download-card__screen::after {
	content: "";
	position: absolute;
}

.qrg-download-card__screen::before {
	inset: 18px;
	border: 1.5px solid rgba(0, 200, 232, 0.2);
	border-radius: 16px;
}

.qrg-download-card__screen::after {
	left: 18px;
	right: 18px;
	top: 40px;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--qrg-cyan), transparent);
	box-shadow: 0 0 10px rgba(0, 200, 232, 0.8);
	animation: qrg-scan 2s linear infinite;
}

.qrg-download-card__status {
	margin-top: 1rem;
	padding: 0.8rem 0.95rem;
	border-radius: 12px;
	background: rgba(0, 217, 126, 0.08);
	border: 1px solid rgba(0, 217, 126, 0.18);
	color: var(--qrg-text-body);
	text-align: center;
	font-size: 0.9rem;
}

.listing-hero {
	padding: 2rem 0 4rem;
	background: var(--qrg-bg-deep);
}

.entry-hero {
	padding: 2rem 0 2rem;
}

@media (min-width: 601px) {

	.entry-hero {
		padding-top: 2rem;
	}
}

.listing-hero {
	text-align: center;
}

.entry-hero--article {
	padding-bottom: 2.8rem;
	background: var(--qrg-bg-deep);
}

.entry-hero--page {
	padding-bottom: 1.5rem;
}

.entry-hero--page .entry-hero__eyebrow {
	display: none;
}

.entry-hero__layout {
	display: block;
}

.entry-hero__layout--has-media {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
	gap: 40px;
	align-items: center;
}

.entry-hero__content {
	text-align: left;
}

.entry-hero--article .entry-hero__title,
.entry-hero--article .entry-hero__copy {
	margin-left: 0;
	margin-right: 0;
}

.entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: flex-start;
	margin-top: 1.4rem;
	color: rgba(255, 255, 255, 0.42);
	font-family: "IBM Plex Mono", monospace;
	font-size: 0.76rem;
}

.entry-meta span {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.entry-media {
	margin-bottom: 2rem;
}

.entry-media--hero {
	margin: 0;
}

.entry-media__image {
	display: block;
	width: 100%;
	border-radius: 24px;
	border: 1px solid var(--qrg-border);
}

.page-entry,
.article-entry {
	padding-bottom: 5rem;
}

/* .article-entry,
.listing-section {
	background: var(--qrg-bg-mid);
} */

.entry-surface {
	border-radius: 24px;
	/* padding: clamp(1.4rem, 3vw, 2.25rem); */
}

.entry-content {
	max-width: var(--qrg-content-width);
	margin: 0 auto;
}

.front-page-entry {
	max-width: 100%;
	margin: 0;
	margin-bottom: 0;
}

.front-page-entry .qrg-shell.is-layout-constrained> :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
	max-width: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.front-page-entry .qrg-shell.is-layout-constrained>.qrg-section__header {
	margin-left: auto !important;
	margin-right: auto !important;
}

.front-page-entry .qrg-shell.is-layout-constrained>.qrg-founder,
.front-page-entry .qrg-shell.is-layout-constrained>.qrg-feature-layout,
.front-page-entry .qrg-shell.is-layout-constrained>.qrg-blog-layout,
.front-page-entry .qrg-shell.is-layout-constrained>.qrg-download,
.front-page-entry .qrg-shell.is-layout-constrained>.qrg-card-grid,
.front-page-entry .qrg-shell.is-layout-constrained>.qrg-stats {
	width: 100%;
}

.front-page-entry .wp-block-buttons.is-layout-flex {
	gap: 14px;
}

.front-page-entry .wp-block-columns.is-layout-flex {
	gap: 0;
}

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

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

.entry-content p,
.entry-content li,
.entry-content blockquote,
.entry-content td,
.entry-content th {
	color: var(--qrg-text-body);
	font-size: 1rem;
	line-height: 1.9;
}

.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	margin: 2.35rem 0 0.8rem;
	line-height: 1.16;
	letter-spacing: -0.03em;
}

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

.entry-content h3 {
	font-size: clamp(1.3rem, 2vw, 1.6rem);
}

.entry-content ul,
.entry-content ol {
	padding-left: 1.35rem;
}

.entry-content li+li {
	margin-top: 0.45rem;
}

.entry-content blockquote,
.wp-block-quote {
	margin: 2rem 0;
	padding: 1.5rem 1.5rem 1.5rem 1.25rem;
	border-left: 3px solid var(--qrg-cyan);
	background: rgba(255, 255, 255, 0.03);
	border-radius: 0 18px 18px 0;
}

.entry-content blockquote p:last-child {
	margin-bottom: 0;
}

.entry-content code,
.entry-content pre,
.entry-content .wp-block-code code {
	font-family: "IBM Plex Mono", monospace;
}

.entry-content code {
	padding: 0.12rem 0.35rem;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.08);
	font-size: 0.92em;
}

.entry-content pre,
.entry-content .wp-block-code {
	padding: 1rem 1.1rem;
	border-radius: 16px;
	background: rgba(0, 0, 0, 0.32);
	border: 1px solid var(--qrg-border);
	overflow-x: auto;
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid var(--qrg-border);
}

.entry-content th,
.entry-content td {
	padding: 0.8rem 0.95rem;
	border-bottom: 1px solid var(--qrg-border);
	text-align: left;
}

.entry-content th {
	background: rgba(255, 255, 255, 0.04);
	font-weight: 600;
}

.entry-content .wp-block-image img,
.entry-content .wp-block-cover,
.entry-content .wp-block-gallery,
.entry-content .wp-block-embed,
.entry-content .wp-block-table,
.entry-content .wp-block-separator {
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.entry-content .wp-block-image img,
.entry-content .wp-block-cover,
.entry-content .wp-block-gallery {
	border-radius: 18px;
}

.entry-content .wp-block-button__link {
	border-radius: 12px;
}

.author-panel {
	margin-top: 2.25rem;
	padding: 1.4rem;
	border-radius: 22px;
	display: flex;
	align-items: center;
	gap: 1.2rem;
}

.author-panel__avatar img {
	display: block;
	border-radius: 50%;
}

.author-panel__eyebrow {
	margin: 0;
}

.author-panel__title {
	margin: 0.7rem 0 0;
	font-size: 1.55rem;
}

.author-panel__copy {
	margin: 0.65rem 0 0;
	color: var(--qrg-text-muted);
}

.related-posts {
	margin-top: 2.4rem;
}

.related-posts__head {
	margin-bottom: 1.4rem;
}

.related-posts__title {
	margin-top: 0.9rem;
	font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.listing-section {
	padding: 0.5rem 0 5rem;
}

.listing-clusters {
	display: grid;
	gap: 16px;
}

.blog-index--featured,
.blog-index--cluster {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
	gap: 14px;
	align-items: start;
}

.blog-index__lead,
.blog-index__column {
	min-width: 0;
}

.blog-index__column {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

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

.post-grid--archive {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	align-items: start;
}

.post-card {
	display: flex;
	flex-direction: column;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid var(--qrg-border);
	background: linear-gradient(180deg, rgba(10, 31, 53, 0.96) 0%, rgba(4, 15, 30, 0.96) 100%);
	box-shadow: var(--qrg-shadow);
}

.post-card:hover {
	border-color: rgba(0, 200, 232, 0.24);
}

.post-card__media {
	display: block;
	position: relative;
	background: linear-gradient(135deg, #101828, #0b1f34);
}

.post-card__image,
.post-card__fallback {
	display: block;
	width: 100%;
	height: 220px;
}

.post-card--featured .post-card__image,
.post-card--featured .post-card__fallback {
	height: 320px;
}

.post-card--compact .post-card__image,
.post-card--compact .post-card__fallback {
	height: 150px;
}

.post-card--archive {
	display: flex;
	width: auto;
	margin: 0;
}

.post-card--archive .post-card__image,
.post-card--archive .post-card__fallback {
	height: 220px;
}

.post-card--archive-featured {
	grid-column: auto;
}

.post-card--archive-featured .post-card__image,
.post-card--archive-featured .post-card__fallback {
	height: 220px;
}

.post-card__image {
	object-fit: cover;
}

.post-card__fallback {
	position: relative;
	overflow: hidden;
}

.post-card__media--threat,
.post-card--threat .post-card__media,
.tone-threat {
	background: linear-gradient(135deg, #0f1e30, #1a0a20);
}

.post-card__media--guide,
.post-card--guide .post-card__media,
.tone-guide {
	background: linear-gradient(135deg, #0a1e2a, #0f2618);
}

.post-card__media--research,
.post-card--research .post-card__media,
.tone-research {
	background: linear-gradient(135deg, #101828, #0d1f30);
}

.post-card__media--business,
.post-card--business .post-card__media,
.tone-business {
	background: linear-gradient(135deg, #141020, #0a1a30);
}

.post-card__media--advisory,
.post-card--advisory .post-card__media,
.tone-advisory {
	background: linear-gradient(135deg, #0f1c1a, #0d1828);
}

.post-card__media--default,
.post-card--default .post-card__media,
.tone-default {
	background: linear-gradient(135deg, #0b1627, #102742);
}

.post-card__fallback-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(0, 200, 232, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 200, 232, 0.035) 1px, transparent 1px);
	background-size: 24px 24px;
}

.post-card__fallback-mark {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 64px;
	height: 64px;
	border-radius: 18px;
	background: linear-gradient(135deg, #0284c7, #0ea5e9);
	box-shadow: 0 14px 32px rgba(14, 165, 233, 0.26);
}

.post-card__pill {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	padding: 0.34rem 0.72rem;
	border-radius: 999px;
	background: var(--qrg-cyan);
	border: 0;
	color: #04121f;
	font-family: "IBM Plex Mono", monospace;
	font-size: 0.63rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: 0 10px 24px rgba(0, 200, 232, 0.24);
}

.post-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1rem 1.2rem 1.25rem;
}

.post-card__meta {
	padding: 0;
	gap: 0;
}

.post-card__meta-item {
	display: inline-flex;
	align-items: center;
}

.post-card__meta-item+.post-card__meta-item::before {
	content: "/";
	margin: 0 0.55rem;
	color: rgba(255, 255, 255, 0.24);
}

.post-card__title {
	margin: 0.55rem 0 0;
	font-size: 1rem;
	line-height: 1.35;
	letter-spacing: -0.02em;
}

.post-card--featured .post-card__title {
	font-size: 1.35rem;
}

.post-card--compact .post-card__title {
	font-size: 0.94rem;
}

.post-card--archive .post-card__title {
	font-size: 1rem;
}

.post-card--archive-featured .post-card__title {
	font-size: 1rem;
}

.post-card__excerpt {
	margin-top: 0.8rem;
	color: var(--qrg-text-muted);
	font-size: 0.92rem;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	min-height: calc(1.6em * 2);
}

.post-card__link {
	display: inline-flex;
	align-items: center;
	margin-top: auto;
	padding-top: 0.95rem;
	font-size: 0.84rem;
	font-weight: 600;
	color: var(--qrg-cyan);
}

.comments-panel {
	margin-top: 2.25rem;
	padding: 1.6rem;
	border-radius: 22px;
}

.comments-panel__head {
	margin-bottom: 1rem;
}

.comments-panel__title {
	margin: 0;
	font-size: 1.4rem;
}

.comment-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 1rem;
}

.comment-body {
	padding: 1rem 1.1rem;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.comment-metadata,
.comment-metadata a,
.comment-author .says,
.logged-in-as {
	color: var(--qrg-text-muted);
	font-size: 0.88rem;
}

.comment-author {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	font-weight: 600;
}

.comment-author img {
	border-radius: 50%;
}

.comment-content {
	margin-top: 0.7rem;
}

.comment-reply-link {
	display: inline-flex;
	margin-top: 0.6rem;
	color: var(--qrg-cyan);
	font-weight: 600;
}

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

.comment-reply-title {
	margin: 0 0 0.8rem;
	font-size: 1.35rem;
}

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

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea,
.search-form__input {
	width: 100%;
	padding: 0.95rem 1rem;
	border: 1px solid var(--qrg-border);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.04);
	color: var(--qrg-text-main);
	font: inherit;
}

.comment-form textarea {
	min-height: 180px;
	resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus,
.search-form__input:focus {
	outline: 0;
	border-color: var(--qrg-cyan-border);
	box-shadow: 0 0 0 4px rgba(0, 200, 232, 0.08);
}

.comments-panel__closed {
	margin: 0.9rem 0 0;
	color: var(--qrg-text-muted);
}

.search-form {
	margin: 1.5rem auto 0;
	max-width: 34rem;
	padding: 0.5rem;
	border-radius: 18px;
	display: flex;
	gap: 0.55rem;
}

.search-form__input {
	flex: 1;
	border: 0;
	background: transparent;
	padding: 0.85rem 0.95rem;
}

.search-form__input:focus {
	box-shadow: none;
}

.search-form__button {
	flex: 0 0 auto;
}

.empty-state {
	padding: 2rem;
	border-radius: 24px;
	text-align: center;
}

.page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	margin: 2rem 0 0;
}

.page-numbers .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 0.85rem;
	border-radius: 12px;
	border: 1px solid var(--qrg-border);
	background: rgba(255, 255, 255, 0.03);
	color: var(--qrg-text-body);
}

.page-numbers .current,
.page-numbers a:hover {
	background: var(--qrg-cyan);
	color: #00141f;
	border-color: transparent;
}

.qrg-post-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin: 2rem 0 0;
}

.qrg-post-nav__slot {
	display: flex;
	flex: 1 1 0;
}

.qrg-post-nav__slot--next {
	justify-content: flex-end;
}

.qrg-post-nav__slot a,
.qrg-post-nav__placeholder {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 120px;
	height: 44px;
	padding: 0 1rem;
	border-radius: 12px;
	border: 1px solid var(--qrg-border);
	background: rgba(255, 255, 255, 0.03);
	color: var(--qrg-text-body);
}

.qrg-post-nav__slot a:hover {
	background: var(--qrg-cyan);
	color: #00141f;
	border-color: transparent;
}

.qrg-post-nav__placeholder {
	visibility: hidden;
}

.qrg-inline-cta {
	margin-top: 2rem;
	padding: 1.7rem;
	border-radius: 22px;
	text-align: left;
}

.qrg-inline-cta__title {
	margin: 1rem 0 0;
	font-size: clamp(1.5rem, 2vw, 1.9rem);
	line-height: 1.12;
}

.qrg-inline-cta__copy {
	margin: 0.85rem 0 0;
	color: var(--qrg-text-muted);
}

@keyframes qrg-spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes qrg-scan {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(210px);
	}

	100% {
		transform: translateY(0);
	}
}

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

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

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

	.blog-index--featured,
	.blog-index--cluster {
		grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
	}
}

@media (min-width: 901px) {

	.post-card--archive .post-card__image,
	.post-card--archive .post-card__fallback {
		height: 180px;
	}

	.post-card--archive-featured .post-card__image,
	.post-card--archive-featured .post-card__fallback {
		height: 180px;
	}

	.post-card--archive .post-card__body {
		padding: 0.95rem 1rem 1.05rem;
	}

	.post-card--archive .post-card__title {
		margin-top: 0.6rem;
		font-size: 0.98rem;
	}

	.post-card--archive-featured .post-card__title {
		font-size: 0.98rem;
	}

	.post-card--archive .post-card__excerpt {
		margin-top: 0.7rem;
	}
}

@media (max-width: 900px) {

	.site-nav,
	.site-header__cta {
		display: none;
	}

	.site-header__cta--mobile {
		display: inline-flex;
	}

	.site-burger,
	.mobile-menu__close {
		display: inline-flex;
	}

	.site-header,
	.site-header.is-scrolled {
		background:
			radial-gradient(circle at 50% 0%, rgba(0, 200, 232, 0.07), transparent 28%),
			linear-gradient(180deg, var(--qrg-bg-deep) 0%, var(--qrg-bg-mid) 54%, var(--qrg-bg-deep) 100%);
		border-color: var(--qrg-border);
		backdrop-filter: blur(20px);
	}

	.mobile-menu {
		inset: 0;
		padding: 0;
	}

	.mobile-menu__panel {
		min-height: 100dvh;
		height: 100dvh;
		padding: max(18px, env(safe-area-inset-top)) 20px max(24px, env(safe-area-inset-bottom));
		border-radius: 0;
		border: 0;
	}

	.mobile-menu__head {
		padding-bottom: 16px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.mobile-menu__links a {
		padding: 18px 0;
		font-size: clamp(1.3rem, 6vw, 1.65rem);
	}

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

	.qrg-post-nav {
		flex-direction: column;
	}

	.qrg-post-nav__slot,
	.qrg-post-nav__slot--next {
		width: 100%;
		justify-content: flex-start;
	}

	.qrg-post-nav__slot a,
	.qrg-post-nav__placeholder {
		width: 100%;
	}

	.qrg-post-nav__placeholder {
		display: none;
	}

	.qrg-blog-query--rail .wp-block-post-template {
		grid-template-columns: 1fr 1fr;
	}

	.qrg-founder__photo {
		min-height: 300px;
	}

	.qrg-feature-layout {
		gap: 36px;
	}

	.qrg-founder {
		grid-template-columns: 220px minmax(0, 1fr);
		gap: 40px;
	}

	.qrg-download {
		gap: 36px;
	}
}

@media (max-width: 782px) {

	.qrg-shell,
	.site-header__inner,
	.site-footer__inner,
	.entry-content .alignwide,
	.front-page-entry .alignwide {
		width: min(var(--qrg-wide-width), calc(100% - 36px));
	}

	.qrg-section,
	.listing-section {
		padding-block: 4.4rem;
	}

	.qrg-headline,
	.entry-hero__title,
	.listing-hero__title,
	.empty-state__title {
		font-size: clamp(2.2rem, 9vw, 3.5rem);
	}

	.qrg-subhead {
		font-size: 0.975rem;
	}

	.entry-hero__layout--has-media {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.entry-media--hero {
		width: 100%;
	}

	.qrg-store-row {
		flex-direction: column;
		align-items: center;
		width: 100%;
	}

	.qrg-store-row--left {
		align-items: center;
	}

	.qrg-store-row .wp-block-button {
		width: 100%;
		max-width: 280px;
	}

	.qrg-store-button .wp-block-button__link,
	.qrg-ghost-button .wp-block-button__link {
		width: 100%;
		justify-content: center;
	}

	.qrg-scan-visual {
		width: 200px;
		margin-top: 2.8rem;
	}

	.qrg-stats {
		gap: 32px;
		margin-top: 44px;
	}

	.qrg-stat__value {
		font-size: 1.5rem;
	}

	#security .qrg-card-grid {
		grid-template-columns: 1fr;
	}

	#how-it-works .qrg-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px;
	}

	.qrg-feature-layout {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.qrg-phone-visual {
		max-width: 260px;
		width: 100%;
	}

	.qrg-founder {
		grid-template-columns: 1fr;
		gap: 28px;
		text-align: center;
	}

	.qrg-founder__photo {
		max-width: 140px;
		min-height: 186px;
		margin: 0 auto;
	}

	.qrg-founder__quote,
	.qrg-founder__signature {
		text-align: center;
	}

	.qrg-blog-layout {
		grid-template-columns: 1fr;
	}

	.qrg-blog-query--rail .wp-block-post-template,
	.post-grid {
		grid-template-columns: 1fr;
	}

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

	.blog-index--featured,
	.blog-index--cluster {
		grid-template-columns: 1fr;
	}

	.qrg-download {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.qrg-download>.wp-block-column:first-child {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.qrg-section-title--left,
	.qrg-section-copy--left {
		text-align: center;
	}

	.qrg-section-copy--left {
		margin-left: auto;
	}

	.qrg-download>.wp-block-column:last-child {
		display: none;
	}

	.author-panel {
		flex-direction: column;
		text-align: center;
	}

	.site-footer__inner {
		flex-direction: column;
		text-align: center;
	}

	.footer-menu {
		justify-content: center;
	}

	.search-form {
		flex-direction: column;
	}
}

@media (max-width: 600px) {
	
	.listing-hero {
		padding: 2rem 0 1rem;
	}
	
	.site-main {
		padding-top: 76px;
	}

	.site-header {
		position: fixed;
	}

	.site-header__inner,
	.site-footer__inner,
	.qrg-shell {
		width: calc(100% - 28px);
	}

	.site-header__inner {
		padding-block: 14px;
	}

	.qrg-section {
		padding-block: 3.8rem;
	}

	.qrg-scan-visual {
		margin-top: 2.6rem;
	}

	.qrg-stats {
		gap: 24px;
	}

	.entry-surface {
		padding: 0;
	}

	.qrg-feature-item,
	.qrg-step-card,
	.qrg-info-card,
	.author-panel,
	.comments-panel,
	.empty-state {
		padding: 1.15rem;
	}

	.qrg-phone-visual,
	.qrg-download-card {
		max-width: 100%;
	}

	#how-it-works .qrg-card-grid {
		grid-template-columns: 1fr;
	}

	.qrg-stat__value {
		font-size: 1.35rem;
	}

	.qrg-headline {
		font-size: 1.9rem;
	}

	.qrg-subhead {
		font-size: 0.9rem;
	}

	.entry-content p,
	.entry-content li,
	.entry-content blockquote,
	.entry-content td,
	.entry-content th {
		font-size: 0.96rem;
	}

	.footer-menu {
		flex-direction: column;
		gap: 12px;
		align-items: center;
	}
}

.admin-bar .site-header {
	top: 0;
}

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: 0;
	}
}

.site-main--home {
	padding-top: 0;
}

.qr-homepage {
	--bg-deep: var(--qrg-bg-deep);
	--bg-mid: var(--qrg-bg-mid);
	--bg-card: var(--qrg-bg-card);
	--cyan: var(--qrg-cyan);
	--cyan-dim: rgba(0, 200, 232, 0.1);
	--cyan-border: rgba(0, 200, 232, 0.18);
	--green: var(--qrg-green);
	--green-dim: rgba(0, 217, 126, 0.1);
	--text-muted: rgba(255, 255, 255, 0.48);
	--text-body: rgba(255, 255, 255, 0.73);
	--border: rgba(255, 255, 255, 0.07);
}

.qr-homepage section {
	padding: 88px 24px;
}

.qr-homepage .hero {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 120px 24px 80px;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.qr-homepage .hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(ellipse 65% 50% at 50% 35%, rgba(2, 132, 199, 0.16) 0%, transparent 65%), linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-mid) 55%, var(--bg-deep) 100%);
}

.qr-homepage .hero-grid {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: linear-gradient(rgba(0, 200, 232, 0.022) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 200, 232, 0.022) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse 80% 65% at 50% 42%, black 30%, transparent 80%);
}

.qr-homepage .badge,
.qr-homepage .section-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 6px 14px;
	border-radius: 50px;
	background: var(--cyan-dim);
	border: 1px solid var(--cyan-border);
	color: var(--cyan);
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-family: "IBM Plex Mono", monospace;
}

.qr-homepage .headline {
	position: relative;
	font-size: clamp(2.4rem, 6vw, 4.5rem);
	font-weight: 700;
	line-height: 1.1;
	max-width: 720px;
	margin: 22px 0;
	letter-spacing: -0.03em;
}

.qr-homepage .headline em,
.qr-homepage .section-title em {
	font-style: normal;
	color: var(--cyan);
}

.qr-homepage #security .section-title em {
	color: #f87171;
}

.qr-homepage #how-it-works .section-title em {
	color: #a78bfa;
}

.qr-homepage .hero-sub {
	position: relative;
	font-size: clamp(1rem, 2vw, 1.1rem);
	color: var(--text-body);
	max-width: 490px;
	line-height: 1.8;
	margin-bottom: 42px;
	font-weight: 400;
}

.qr-homepage .hero-ctas {
	position: relative;
	display: flex;
	gap: 13px;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 35px;
}

.qr-homepage .btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 26px;
	border-radius: 9px;
	background: transparent;
	border: 1px solid var(--border);
	color: var(--text-body);
	font-weight: 500;
	font-size: 0.95rem;
	text-decoration: none;
	transition: all 0.2s;
}

.qr-homepage .btn-secondary:hover {
	border-color: rgba(255, 255, 255, 0.22);
	color: #fff;
	background: rgba(255, 255, 255, 0.04);
}

.qr-homepage .app-store-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 12px 20px;
	border-radius: 11px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--border);
	color: #fff;
	text-decoration: none;
	transition: all 0.2s;
}

.qr-homepage .app-store-btn:hover {
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(255, 255, 255, 0.16);
}

.qr-homepage .scanner-wrap {
	position: relative;
	width: 250px;
	height: 250px;
	margin: 0 auto;
}

.qr-homepage .scan-frame {
	position: absolute;
	inset: 0;
	border-radius: 16px;
	border: 1.5px solid rgba(0, 200, 232, 0.3);
	background: rgba(5, 20, 40, 0.55);
	overflow: hidden;
}

.qr-homepage .corner {
	display: none;
	position: absolute;
	width: 18px;
	height: 18px;
}

.qr-homepage .corner-tl {
	top: -1px;
	left: -1px;
	border-top: 2.5px solid var(--cyan);
	border-left: 2.5px solid var(--cyan);
	border-radius: 5px 0 0 0;
}

.qr-homepage .corner-tr {
	top: -1px;
	right: -1px;
	border-top: 2.5px solid var(--cyan);
	border-right: 2.5px solid var(--cyan);
	border-radius: 0 5px 0 0;
}

.qr-homepage .corner-bl {
	bottom: -1px;
	left: -1px;
	border-bottom: 2.5px solid var(--cyan);
	border-left: 2.5px solid var(--cyan);
	border-radius: 0 0 0 5px;
}

.qr-homepage .corner-br {
	bottom: -1px;
	right: -1px;
	border-bottom: 2.5px solid var(--cyan);
	border-right: 2.5px solid var(--cyan);
	border-radius: 0 0 5px 0;
}

.qr-homepage .scan-beam {
	position: absolute;
	left: 0;
	right: 0;
	height: 1.5px;
	background: linear-gradient(90deg, transparent, var(--cyan), transparent);
	box-shadow: 0 0 10px rgba(0, 200, 232, 0.8);
	animation: scan-anim 2.2s ease-in-out infinite;
}

.qr-homepage .qr-grid {
	position: absolute;
	inset: 22px;
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 3px;
	opacity: 0.2;
}

.qr-homepage .qr-cell {
	border-radius: 2px;
	aspect-ratio: 1;
}

.qr-homepage .qr-cell.on {
	background: var(--cyan);
}

.qr-homepage .qr-cell.off {
	background: rgba(0, 200, 232, 0.08);
}

.qr-homepage .shield-center {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.qr-homepage .shield-icon {
	width: 50px;
	height: 50px;
	border-radius: 13px;
	background: linear-gradient(135deg, #0284c7, #0ea5e9);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(2, 132, 199, 0.38);
}

.qr-homepage .stats {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 52px;
	justify-content: center;
	margin-top: 60px;
}

.qr-homepage .stat-item {
	text-align: center;
}

.qr-homepage .stat-value {
	font-family: "IBM Plex Mono", monospace;
	font-size: 1.75rem;
	font-weight: 600;
	color: #fff;
}

.qr-homepage .stat-label {
	font-size: 0.78rem;
	color: var(--text-muted);
	margin-top: 4px;
	letter-spacing: 0.04em;
}

.qr-homepage .section-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.qr-homepage .section-title {
	font-size: clamp(1.8rem, 3.5vw, 2.65rem);
	font-weight: 700;
	margin-bottom: 16px;
	text-align: center;
	letter-spacing: -0.025em;
}

.qr-homepage .section-sub {
	font-size: 1rem;
	color: var(--text-muted);
	max-width: 540px;
	line-height: 1.75;
	text-align: center;
	margin: 0 auto;
}

.qr-homepage .threat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
	gap: 14px;
	margin-top: 48px;
}

.qr-homepage .threat-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 13px;
	padding: 24px;
	transition: border-color 0.25s, transform 0.25s;
}

.qr-homepage .threat-card:hover {
	transform: translateY(-3px);
	border-color: rgba(255, 255, 255, 0.14);
}

.qr-homepage .card-icon {
	width: 42px;
	height: 42px;
	border-radius: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}

.qr-homepage .card-title {
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 7px;
}

.qr-homepage .card-desc {
	font-size: 0.84rem;
	color: var(--text-muted);
	line-height: 1.7;
}

.qr-homepage .features-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: start;
	margin-top: 48px;
}

.qr-homepage .check-list {
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.qr-homepage .check-item {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 13px 15px;
	border-radius: 11px;
	background: rgba(10, 31, 53, 0.45);
	border: 1px solid var(--border);
	transition: border-color 0.2s, background 0.2s;
}

.qr-homepage .check-item:hover {
	background: rgba(10, 31, 53, 0.85);
	border-color: var(--cyan-border);
}

.qr-homepage .check-icon {
	width: 36px;
	height: 36px;
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.qr-homepage .check-label {
	font-size: 0.86rem;
	font-weight: 600;
}

.qr-homepage .check-desc {
	font-size: 0.75rem;
	color: var(--text-muted);
	margin-top: 2px;
}

.qr-homepage .check-num {
	font-family: "IBM Plex Mono", monospace;
	font-size: 0.64rem;
	font-weight: 600;
	padding: 2px 8px;
	border-radius: 50px;
	flex-shrink: 0;
}

.qr-homepage .phone-mockup {
	width: 268px;
	border-radius: 26px;
	overflow: hidden;
	background: #060e1c;
	border: 1px solid rgba(0, 200, 232, 0.15);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
	margin: 0 auto;
}

.qr-homepage .phone-header {
	padding: 15px 17px 11px;
	border-bottom: 1px solid var(--border);
}

.qr-homepage .phone-status {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 3px;
}

.qr-homepage .phone-time {
	font-size: 0.64rem;
	color: var(--text-muted);
	font-family: "IBM Plex Mono", monospace;
}

.qr-homepage .phone-title {
	text-align: center;
	font-size: 0.82rem;
	font-weight: 600;
}

.qr-homepage .phone-body {
	padding: 17px;
}

.qr-homepage .progress-label {
	font-size: 0.78rem;
	font-weight: 600;
	text-align: center;
	margin-bottom: 4px;
}

.qr-homepage .progress-sub {
	font-size: 0.66rem;
	color: var(--text-muted);
	text-align: center;
	margin-bottom: 11px;
	font-family: "IBM Plex Mono", monospace;
}

.qr-homepage .progress-bar-bg {
	background: rgba(255, 255, 255, 0.07);
	border-radius: 50px;
	height: 4px;
	margin-bottom: 6px;
}

.qr-homepage .progress-bar {
	height: 4px;
	border-radius: 50px;
	background: var(--cyan);
	transition: width 0.5s ease;
}

.qr-homepage .progress-count {
	font-family: "IBM Plex Mono", monospace;
	font-size: 0.61rem;
	color: rgba(255, 255, 255, 0.28);
	text-align: center;
	margin-bottom: 13px;
}

.qr-homepage .scan-checks {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.qr-homepage .scan-check {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 7px 10px;
	border-radius: 7px;
	background: rgba(255, 255, 255, 0.025);
	font-size: 0.7rem;
}

.qr-homepage .check-dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.09);
	flex-shrink: 0;
}

.qr-homepage .check-dot.done {
	background: none;
}

.qr-homepage .check-dot.spinning {
	background: none;
	border: 2px solid var(--cyan);
	border-top-color: transparent;
	animation: spin 0.8s linear infinite;
}

.qr-homepage .result-wrap {
	text-align: center;
	padding: 10px 0;
}

.qr-homepage .result-icon {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 11px;
	background: var(--green-dim);
	border: 1.5px solid rgba(0, 217, 126, 0.32);
	color: var(--green);
}

.qr-homepage .result-title {
	font-family: "IBM Plex Mono", monospace;
	font-size: 1.45rem;
	font-weight: 600;
	color: var(--green);
	margin-bottom: 4px;
	letter-spacing: 0.05em;
}

.qr-homepage .result-sub {
	font-size: 0.7rem;
	color: var(--green);
	margin-bottom: 4px;
	opacity: 0.8;
}

.qr-homepage .result-time {
	font-family: "IBM Plex Mono", monospace;
	font-size: 0.63rem;
	color: rgba(255, 255, 255, 0.3);
	margin-bottom: 14px;
}

.qr-homepage .btn-scan-again {
	width: 100%;
	padding: 9px;
	border-radius: 8px;
	background: var(--green);
	color: #000;
	font-weight: 700;
	font-size: 0.82rem;
	border: none;
	cursor: pointer;
	font-family: "IBM Plex Sans", sans-serif;
}

.qr-homepage .steps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 26px;
	margin-top: 48px;
}

.qr-homepage .step-card {
	text-align: center;
	position: relative;
}

.qr-homepage .step-icon {
	width: 58px;
	height: 58px;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}

.qr-homepage .step-num {
	font-family: "IBM Plex Mono", monospace;
	font-size: 0.61rem;
	font-weight: 500;
	margin-bottom: 7px;
	letter-spacing: 0.1em;
}

.qr-homepage .step-title {
	font-size: 0.93rem;
	font-weight: 600;
	margin-bottom: 8px;
}

.qr-homepage .step-desc {
	font-size: 0.84rem;
	color: var(--text-muted);
	line-height: 1.7;
}

.qr-homepage .blog-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	align-items: start;
	max-width: 960px;
	margin: 0 auto;
}

.qr-homepage .blog-column {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.qr-homepage .blog-card {
	display: flex;
	flex-direction: column;
	border-radius: 13px;
	overflow: hidden;
	background: var(--bg-card);
	border: 1px solid var(--border);
	text-decoration: none;
	color: #fff;
}

.qr-homepage .blog-card:hover {
	border-color: rgba(0, 200, 232, 0.28);
}

.qr-homepage .blog-card--placeholder {
	min-height: 230px;
	justify-content: center;
}

.qr-homepage .blog-img-wrap {
	position: relative;
	overflow: hidden;
	min-height: 195px;
}

.qr-homepage .blog-img-wrap img {
	width: 100%;
	height: 195px;
	object-fit: cover;
	display: block;
	background: #0a1f35;
}

.qr-homepage .blog-img-small {
	min-height: 135px;
}

.qr-homepage .blog-img-small img {
	height: 135px;
}

.qr-homepage .blog-img-wrap[data-theme="threat"] {
	background: linear-gradient(135deg, #0f1e30, #1a0a20);
}

.qr-homepage .blog-img-wrap[data-theme="guide"] {
	background: linear-gradient(135deg, #0a1e2a, #0f2618);
}

.qr-homepage .blog-img-wrap[data-theme="research"] {
	background: linear-gradient(135deg, #101828, #0d1f30);
}

.qr-homepage .blog-img-wrap[data-theme="business"] {
	background: linear-gradient(135deg, #141020, #0a1a30);
}

.qr-homepage .blog-img-wrap[data-theme="advisory"] {
	background: linear-gradient(135deg, #0f1c1a, #0d1828);
}

.qr-homepage .blog-img-wrap[data-theme="default"] {
	background: linear-gradient(135deg, #0d2034, #091622);
}

.qr-homepage .blog-img-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent 45%, rgba(5, 20, 37, 0.8) 100%);
}

.qr-homepage .blog-category-pill {
	position: absolute;
	top: 11px;
	left: 11px;
	padding: 3px 10px;
	border-radius: 50px;
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: var(--cyan);
	border: 0;
	color: #04121f;
	font-family: "IBM Plex Mono", monospace;
	z-index: 1;
	box-shadow: 0 10px 24px rgba(0, 200, 232, 0.24);
}

.qr-homepage .blog-category-pill--inline {
	position: static;
	top: auto;
	left: auto;
	align-self: flex-start;
	backdrop-filter: none;
	margin-bottom: 2px;
}

.qr-homepage .blog-card-body {
	padding: 18px 20px 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.qr-homepage .blog-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0;
	font-size: 0.7rem;
	color: rgba(255, 255, 255, 0.34);
	font-family: "IBM Plex Mono", monospace;
}

.qr-homepage .blog-meta-item {
	display: inline-flex;
	align-items: center;
}

.qr-homepage .blog-meta-item+.blog-meta-item::before {
	content: "/";
	margin: 0 0.5rem;
	color: rgba(255, 255, 255, 0.24);
}

.qr-homepage .blog-date {
	font-size: inherit;
	color: inherit;
	font-family: inherit;
}

.qr-homepage .blog-read-time {
	font-size: inherit;
	color: inherit;
	background: none;
	border: 0;
	padding: 0;
	border-radius: 0;
	font-family: inherit;
}

.qr-homepage .blog-category-text {
	font-size: inherit;
	color: inherit;
	font-family: inherit;
}

.qr-homepage .blog-title {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.4;
}

.qr-homepage .blog-title-small {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.4;
}

.qr-homepage .blog-excerpt {
	font-size: 0.84rem;
	color: var(--text-muted);
	line-height: 1.6;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	min-height: calc(1.6em * 2);
}

.qr-homepage .blog-cta {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 0.77rem;
	font-weight: 500;
	color: var(--cyan);
	margin-top: 4px;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes scan-anim {
	0% {
		top: 0;
	}

	50% {
		top: calc(100% - 2px);
	}

	100% {
		top: 0;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(22px);
	}

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

.qr-homepage .fade-up {
	animation: fadeInUp 0.6s ease forwards;
}

.qr-homepage .d1 {
	animation-delay: 0.05s;
	opacity: 0;
}

.qr-homepage .d2 {
	animation-delay: 0.17s;
	opacity: 0;
}

.qr-homepage .d3 {
	animation-delay: 0.3s;
	opacity: 0;
}

.qr-homepage .d4 {
	animation-delay: 0.44s;
	opacity: 0;
}

@media (max-width: 900px) {
	.qr-homepage .features-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.qr-homepage .hero {
		padding: 100px 20px 60px;
	}

	.qr-homepage .headline {
		font-size: 2.2rem;
	}

	.qr-homepage .hero-sub {
		font-size: 0.975rem;
	}

	.qr-homepage .hero-ctas {
		flex-direction: column;
		align-items: center;
		width: 100%;
	}

	.qr-homepage .hero-ctas .app-store-btn,
	.qr-homepage #download .app-store-btn {
		width: 100%;
		max-width: 180px;
		justify-content: center;
	}

	.qr-homepage .scanner-wrap {
		width: 200px;
		height: 200px;
	}

	.qr-homepage .stats {
		gap: 32px;
		margin-top: 44px;
	}

	.qr-homepage .stat-value {
		font-size: 1.5rem;
	}

	.qr-homepage section {
		padding: 64px 20px;
	}

	.qr-homepage .section-title {
		font-size: 1.65rem;
	}

	.qr-homepage .threat-grid,
	.qr-homepage .features-layout,
	.qr-homepage .download-grid,
	.qr-homepage .founder-grid {
		grid-template-columns: 1fr !important;
	}

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

	.qr-homepage .phone-mockup {
		max-width: 260px;
	}

	.qr-homepage .steps-grid {
		grid-template-columns: 1fr 1fr;
		gap: 24px;
	}

	.qr-homepage .step-icon {
		width: 48px;
		height: 48px;
	}

	.qr-homepage .founder-grid {
		gap: 28px !important;
		text-align: center;
	}

	.qr-homepage .founder-photo {
		max-width: 140px !important;
		margin: 0 auto;
	}

	.qr-homepage .blog-column {
		display: flex;
		flex-direction: column;
		gap: 14px;
	}

	.qr-homepage .download-grid {
		gap: 40px !important;
	}

	.qr-homepage #download .section-title,
	.qr-homepage #download .section-sub {
		text-align: center !important;
	}

	.qr-homepage #download .section-sub {
		margin-left: auto !important;
		margin-right: auto !important;
	}

	.qr-homepage #download .download-grid>div:first-child {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.qr-homepage #download .download-cta-group,
	.qr-homepage #download .download-points {
		align-items: center !important;
	}

	.qr-homepage #download .download-point {
		justify-content: center;
		text-align: center;
	}

	.qr-homepage #download .download-grid>div:last-child {
		display: none;
	}
}

@media (max-width: 480px) {
	.qr-homepage .steps-grid {
		grid-template-columns: 1fr;
	}

	.qr-homepage .stat-value {
		font-size: 1.35rem;
	}

	.qr-homepage .headline {
		font-size: 1.9rem;
	}

	.qr-homepage .hero-sub {
		font-size: 0.9rem;
	}
}