:root {
	color-scheme: dark;
	--bg-1: #0b1020;
	--bg-2: #111b33;
	--panel: rgba(12, 18, 36, 0.82);
	--panel-border: rgba(255, 255, 255, 0.08);
	--text: #edf2ff;
	--muted: #aeb8d4;
	--accent: #7dd3fc;
	--accent-strong: #38bdf8;
	--accent-soft: rgba(125, 211, 252, 0.16);
	--shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
	--radius: 24px;
}

* {
	box-sizing: border-box;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

*::-webkit-scrollbar {
	display: none;
}

html,
body {
	min-height: 100%;
}

body {
	margin: 0;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--text);
	position: relative;
	isolation: isolate;
	background:
		radial-gradient(circle at top left, rgba(56, 189, 248, 0.22), transparent 30%),
		radial-gradient(circle at top right, rgba(99, 102, 241, 0.20), transparent 28%),
		linear-gradient(160deg, var(--bg-1), var(--bg-2));
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: radial-gradient(circle at center, black, transparent 85%);
	opacity: 0.45;
}

.lightning-field {
	position: fixed;
	inset: -18vh -14vw;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

.lightning-line {
	position: absolute;
	left: var(--x);
	top: var(--y);
	width: var(--length);
	height: var(--thickness);
	transform: translate(-50%, -50%) rotate(var(--angle));
	transform-origin: center;
	border-radius: 999px;
	opacity: var(--opacity);
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(125, 211, 252, 0.14) 20%, rgba(255, 255, 255, 0.96) 50%, rgba(56, 189, 248, 0.16) 80%, rgba(255, 255, 255, 0) 100%);
	box-shadow: 0 0 10px rgba(125, 211, 252, 0.55), 0 0 26px rgba(56, 189, 248, 0.18);
	filter: saturate(1.2);
	mix-blend-mode: screen;
	will-change: transform, opacity;
}

.lightning-line::after {
	content: "";
	position: absolute;
	inset: -7px 0;
	border-radius: inherit;
	background: inherit;
	filter: blur(7px);
	opacity: 0.6;
	z-index: -1;
}

.page-shell {
	min-height: 100vh;
	display: grid;
	place-items: center;
	padding: 32px 16px;
	position: relative;
	z-index: 1;
}

.card {
	width: min(100%, 920px);
	padding: 32px;
	border: 1px solid var(--panel-border);
	border-radius: var(--radius);
	background: var(--panel);
	box-shadow: var(--shadow);
	backdrop-filter: blur(18px);
	position: relative;
	z-index: 2;
	overflow: hidden;
}

.card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.10), transparent 35%);
	pointer-events: none;
}

h1 {
	margin: 0 0 18px;
	font-size: clamp(2rem, 4vw, 2.7rem);
	line-height: 1.05;
	letter-spacing: -0.04em;
}

.card-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
	padding: 8px 12px;
	border-radius: 999px;
	color: var(--accent);
	background: var(--accent-soft);
	border: 1px solid rgba(125, 211, 252, 0.25);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.role {
	margin-top: -6px;
	color: var(--muted);
	font-size: 1.05rem;
	font-weight: 500;
}

form {
	display: grid;
	gap: 14px;
}

label {
	margin-top: 6px;
	color: var(--muted);
	font-size: 0.92rem;
	font-weight: 600;
}

input, textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	color: var(--text);
	background: rgba(255, 255, 255, 0.05);
	outline: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

input ::placeholder, textarea ::placeholder {
	color: rgba(174, 184, 212, 0.68);
}

input:focus, textarea:focus {
	border-color: rgba(125, 211, 252, 0.75);
	box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.16);
	background: rgba(255, 255, 255, 0.08);
}

button {
	margin-top: 10px;
	padding: 14px 18px;
	border: 0;
	border-radius: 16px;
	color: #02111d;
	font-weight: 800;
	letter-spacing: 0.02em;
	background: linear-gradient(135deg, var(--accent), var(--accent-strong));
	box-shadow: 0 18px 40px rgba(56, 189, 248, 0.28);
	cursor: pointer;
	transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

button:hover {
	transform: translateY(-1px);
	filter: brightness(1.05);
	box-shadow: 0 22px 44px rgba(56, 189, 248, 0.34);
}

button:active {
	transform: translateY(0);
}

.business-card {
	text-align: left;
}

.business-card p {
	margin: 0 0 10px;
	color: var(--muted);
}

.directory-section {
	width: min(100%, 920px);
	margin-top: 28px;
	display: grid;
	gap: 8px;
}

.directory-header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 8px;
	padding: 0 4px;
}

.directory-header h2 {
	margin: 0 0 8px;
	font-size: clamp(1.35rem, 2vw, 1.8rem);
	letter-spacing: -0.03em;
}

.directory-header p {
	margin: 0;
	color: var(--muted);
	line-height: 1.5;
}

.directory-count {
	flex: 0 0 auto;
	padding: 10px 14px;
	border-radius: 999px;
	border: 1px solid rgba(125, 211, 252, 0.18);
	background: rgba(255, 255, 255, 0.05);
	color: var(--accent);
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.business-directory-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px;
}

.directory-card {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 14px;
	padding: 16px;
	border-radius: 22px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(12, 18, 36, 0.76);
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.20);
	text-decoration: none;
	color: inherit;
	transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.directory-card:hover {
	transform: translateY(-2px);
	border-color: rgba(125, 211, 252, 0.30);
	background: rgba(16, 24, 46, 0.92);
	box-shadow: 0 24px 42px rgba(0, 0, 0, 0.28);
}

.directory-avatar {
	width: 52px;
	height: 52px;
	border-radius: 18px;
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, var(--accent), #dbeafe);
	color: #03111d;
	font-size: 1.2rem;
	font-weight: 900;
	text-transform: uppercase;
	box-shadow: 0 10px 22px rgba(56, 189, 248, 0.24);
}

.directory-copy {
	min-width: 0;
}

.directory-copy h3 {
	margin: 0 0 4px;
	font-size: 1.02rem;
	line-height: 1.2;
	color: var(--text);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.directory-copy p {
	margin: 0;
	color: var(--muted);
	font-size: 0.92rem;
}

.directory-action {
	padding: 9px 12px;
	border-radius: 999px;
	border: 1px solid rgba(125, 211, 252, 0.20);
	background: rgba(125, 211, 252, 0.10);
	color: var(--accent);
	font-size: 0.82rem;
	font-weight: 800;
	white-space: nowrap;
}

.business-view-card {
	max-width: 920px;
	width: min(100%, 920px);
}

.business-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 10px;
}

.header-bio-gap {
	height: 22px;
}

/* ── Profile picture: no border, no clipping, show original ── */
.profile-badge {
	flex: 0 0 auto;
	border-radius: 20px;
	background: transparent;
	padding: 0;
	box-shadow: none;
	overflow: hidden;
	max-width: 100px;
}

.business-logo {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 18px;
	object-fit: contain;
	background: transparent;
}

.business-fallback {
	width: 82px;
	height: 82px;
	border-radius: 18px;
	display: grid;
	place-items: center;
	color: #02111d;
	font-size: 2rem;
	font-weight: 900;
	background: linear-gradient(135deg, var(--accent), #dbeafe);
}

.business-heading {
	min-width: 0;
}

.business-heading h1 {
	margin-bottom: 6px;
}

.business-bio {
	margin-top: 0;
	padding: 14px 16px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.06);
	color: var(--text);
	line-height: 1.55;
}

.business-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
	margin-top: 24px;
}

.business-panel {
	display: grid;
	gap: 12px;
	align-content: start;
	padding: 16px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.panel-title {
	color: var(--accent);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.detail-row {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
	margin: 0;
	padding: 14px 16px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.06);
	text-decoration: none;
	color: inherit;
	transition: background 160ms ease, border-color 160ms ease;
}

.detail-row--wide {
	grid-column: 1 / -1;
}

.detail-row:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(125, 211, 252, 0.22);
}

.detail-icon {
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--accent-soft);
	color: var(--accent);
}

.detail-icon svg {
	width: 18px;
	height: 18px;
}

.detail-body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.detail-label {
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--muted);
	opacity: 0.6;
	line-height: 1;
}

.detail-text {
	min-width: 0;
	color: var(--text);
	font-size: 0.95rem;
	font-weight: 600;
	word-break: break-word;
	line-height: 1.3;
}

.subtle-row .detail-text {
	color: var(--muted);
}

.navbar {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 12px;
	padding: 20px 24px 0;
	position: relative;
	z-index: 3;
}

.navbar button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 0;
	padding: 11px 16px;
	border: 1px solid rgba(125, 211, 252, 0.24);
	border-radius: 999px;
	color: var(--text);
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	background: rgba(255, 255, 255, 0.06);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(10px);
	transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.navbar button:hover {
	transform: translateY(-1px);
	color: #ffffff;
	border-color: rgba(125, 211, 252, 0.45);
	background: rgba(56, 189, 248, 0.18);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
	filter: none;
}

.navbar button:active {
	transform: translateY(0);
}

/* ══════════════════════════════════════════════
   BUSINESS CARD TOGGLE SECTION
══════════════════════════════════════════════ */

.bc-section {
	width: 660px;          /* fixed — screen matches PDF exactly */
	max-width: 100%;
	overflow-x: auto;      /* scroll on narrow screens instead of squishing */
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* ── Toggle button ── */
.bc-toggle {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 13px 22px;
	border: 1px solid rgba(125, 211, 252, 0.28);
	border-radius: 999px;
	color: var(--text);
	font-size: 0.93rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	background: rgba(255, 255, 255, 0.05);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(10px);
	cursor: pointer;
	align-self: flex-start;
	transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.bc-toggle:hover {
	transform: translateY(-1px);
	border-color: rgba(125, 211, 252, 0.52);
	background: rgba(56, 189, 248, 0.12);
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.bc-toggle svg {
	width: 17px;
	height: 17px;
	flex-shrink: 0;
	color: var(--accent);
}

.bc-chevron {
	transition: transform 280ms ease;
}

.bc-toggle[aria-expanded="true"] .bc-chevron {
	transform: rotate(180deg);
}

/* ── Collapsible panel ── */
.bc-panel {
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: max-height 420ms cubic-bezier(0.4, 0, 0.2, 1), opacity 300ms ease, margin-top 300ms ease;
	margin-top: 0;
}

.bc-panel.open {
	max-height: 700px;
	opacity: 1;
	margin-top: 18px;
}

/* ══════════════════════════════════════════════
   THE CARD  (this is what gets downloaded)
══════════════════════════════════════════════ */

.bc-card {
	position: relative;
	width: 660px;          /* fixed — never reflows regardless of viewport */
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 36px;
	padding: 36px 40px;
	/* Rich aurora mesh background */
	background:
		radial-gradient(ellipse 90% 70% at 15% 25%,  rgba(56, 189, 248, 0.14) 0%, transparent 55%),
		radial-gradient(ellipse 70% 90% at 85% 85%,  rgba(99, 102, 241, 0.16) 0%, transparent 50%),
		radial-gradient(ellipse 50% 50% at 55% 0%,   rgba(192, 132, 252, 0.10) 0%, transparent 45%),
		radial-gradient(ellipse 40% 40% at 90% 10%,  rgba(56, 189, 248, 0.07) 0%, transparent 50%),
		linear-gradient(155deg, #07111e 0%, #0c1a38 50%, #080e20 100%);
	border: 1px solid rgba(125, 211, 252, 0.22);
	border-radius: 28px;
	overflow: hidden;
	box-shadow:
		0 40px 100px rgba(0, 0, 0, 0.60),
		0 0 0 1px rgba(56, 189, 248, 0.06),
		inset 0 1px 0 rgba(255, 255, 255, 0.09),
		inset 0 -1px 0 rgba(0, 0, 0, 0.30);
}

/* Top prismatic edge line */
.bc-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 2px;
	background: linear-gradient(90deg,
		transparent 0%,
		#38bdf8 20%,
		#818cf8 50%,
		#c084fc 72%,
		#38bdf8 88%,
		transparent 100%);
	opacity: 0.9;
	pointer-events: none;
	z-index: 4;
}

/* Static diagonal gloss — like physical card laminate sheen */
.bc-card::after {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: linear-gradient(
		128deg,
		rgba(255, 255, 255, 0.055) 0%,
		rgba(255, 255, 255, 0.02)  38%,
		transparent                55%,
		rgba(0, 0, 0, 0.04)        100%
	);
	pointer-events: none;
	z-index: 3;
}

/* Left accent bar — iridescent vertical strip */
.bc-accent-bar {
	position: absolute;
	left: 0; top: 0; bottom: 0;
	width: 3px;
	background: linear-gradient(to bottom,
		transparent 0%,
		#38bdf8   18%,
		#818cf8   50%,
		#c084fc   78%,
		transparent 100%);
	opacity: 0.75;
	z-index: 4;
}

/* Bottom accent bar — subtle */
.bc-accent-bottom {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	height: 1px;
	background: linear-gradient(90deg,
		transparent 0%,
		rgba(129, 140, 248, 0.30) 30%,
		rgba(192, 132, 252, 0.25) 60%,
		transparent 100%);
	z-index: 4;
}

/* Corner bracket marks */
.bc-corner {
	position: absolute;
	width: 18px; height: 18px;
	border-color: rgba(125, 211, 252, 0.40);
	border-style: solid;
	z-index: 4;
}
.bc-corner--tl {
	top: 12px; left: 12px;
	border-width: 1.5px 0 0 1.5px;
	border-radius: 4px 0 0 0;
}
.bc-corner--tr {
	top: 12px; right: 12px;
	border-width: 1.5px 1.5px 0 0;
	border-radius: 0 4px 0 0;
}
.bc-corner--bl {
	bottom: 12px; left: 12px;
	border-width: 0 0 1.5px 1.5px;
	border-radius: 0 0 0 4px;
}
.bc-corner--br {
	bottom: 12px; right: 12px;
	border-width: 0 1.5px 1.5px 0;
	border-radius: 0 0 4px 0;
}

/* Ambient glows — stronger, static */
.bc-glow-tl {
	position: absolute;
	top: -80px; left: -60px;
	width: 400px; height: 400px;
	background: radial-gradient(circle, rgba(56, 189, 248, 0.13) 0%, transparent 62%);
	pointer-events: none;
}

.bc-glow-br {
	position: absolute;
	bottom: -80px; right: 40px;
	width: 320px; height: 320px;
	background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 62%);
	pointer-events: none;
}

/* Double-layer dot matrix for depth */
.bc-dots {
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(rgba(125, 211, 252, 0.10) 1px, transparent 1px),
		radial-gradient(rgba(125, 211, 252, 0.04) 1px, transparent 1px);
	background-size: 28px 28px, 14px 14px;
	background-position: 0 0, 14px 14px;
	pointer-events: none;
}

/* ── Left: identity + meta ── */
.bc-left {
	position: relative;
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
	z-index: 1;
}

/* ── PFP left, business name right — horizontal row ── */
.bc-identity {
	display: flex;
	align-items: center;
	gap: 20px;
}

/* ── Logo: no border, no glow ring, show original image ── */
.bc-logo {
	width: 110px;
	height: 110px;
	border-radius: 0;
	overflow: hidden;
	flex-shrink: 0;
	background: transparent;
	display: grid;
	place-items: center;
}

.bc-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.bc-logo-init {
	font-size: 2rem;
	font-weight: 900;
	color: #38bdf8;
	font-family: Inter, ui-sans-serif, sans-serif;
	line-height: 1;
}

.bc-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.bc-biz-name {
	margin: 0;
	font-size: 1.65rem;     /* fixed — same on screen and in PDF */
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.15;
	word-break: break-word;
	/* Gradient text — cyan → indigo */
	background: linear-gradient(135deg, #ffffff 0%, #7dd3fc 55%, #c084fc 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Glowing hairline divider */
.bc-rule {
	height: 1px;
	background: linear-gradient(90deg,
		rgba(56, 189, 248, 0.55) 0%,
		rgba(129, 140, 248, 0.35) 55%,
		transparent 100%);
	border: none;
	margin: 2px 0;
	box-shadow: 0 0 6px rgba(56, 189, 248, 0.18);
}

.bc-meta {
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.bc-row {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.88rem;
	font-weight: 500;
	color: #94aec8;
	line-height: 1.3;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.bc-row svg {
	width: 14px;
	height: 14px;
	color: #38bdf8;
	flex-shrink: 0;
}

/* ── Vertical divider ── */
.bc-vline {
	width: 1px;
	align-self: stretch;
	background: linear-gradient(to bottom,
		transparent,
		rgba(125, 211, 252, 0.22) 25%,
		rgba(129, 140, 248, 0.18) 75%,
		transparent);
	flex-shrink: 0;
	z-index: 1;
}

/* ── Right: QR ── */
.bc-right {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	flex-shrink: 0;
	z-index: 1;
}

.bc-qr-frame {
	padding: 10px;
	background: #ffffff;
	border-radius: 14px;
	box-shadow:
		0 0 0 1px rgba(0, 0, 0, 0.08),
		0 0 0 3px rgba(56, 189, 248, 0.18),
		0 0 0 5px rgba(129, 140, 248, 0.10),
		0 14px 36px rgba(0, 0, 0, 0.40);
	line-height: 0;
	width: 136px;
	height: 136px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

/* Force exact square — source rendered at 400px, CSS constrains to 116px */
.bc-qr-frame canvas,
.bc-qr-frame img,
#bcQrEl,
#bcQrEl > * {
	display: block !important;
	width: 116px !important;
	height: 116px !important;
}

.bc-scan-lbl {
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.13em;
	color: #5a7080;
	text-align: center;
	max-width: 160px;
	line-height: 1.5;
}

/* ── Download row ── */
.bc-actions {
	display: flex;
	justify-content: flex-end;
	margin-top: 14px;
}

.bc-dl {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	padding: 12px 26px;
	border: none;
	border-radius: 999px;
	background: linear-gradient(135deg, #38bdf8, #7dd3fc);
	color: #02111d;
	font-size: 0.91rem;
	font-weight: 800;
	letter-spacing: 0.03em;
	cursor: pointer;
	box-shadow: 0 14px 36px rgba(56, 189, 248, 0.32);
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.bc-dl:hover {
	transform: translateY(-1px);
	box-shadow: 0 20px 42px rgba(56, 189, 248, 0.38);
}

.bc-dl:active {
	transform: translateY(0);
}

.bc-dl svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.bc-dl:disabled {
	opacity: 0.6;
	cursor: default;
	transform: none;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */

@media (max-width: 640px) {
	.page-shell {
		padding: 18px 12px;
	}

	.lightning-field {
		inset: -12vh -18vw;
	}

	.lightning-line {
		opacity: calc(var(--opacity) * 0.72);
	}

	.navbar {
		justify-content: center;
		padding: 16px 12px 0;
		flex-wrap: wrap;
	}

	.card {
		padding: 24px;
		border-radius: 20px;
	}

	.business-header {
		align-items: flex-start;
	}

	.header-bio-gap {
		height: 18px;
	}

	.profile-badge {
		max-width: 72px;
		border-radius: 16px;
	}

	.business-fallback {
		font-size: 1.6rem;
		width: 68px;
		height: 68px;
	}

	.business-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.business-panel {
		padding: 14px;
		border-radius: 18px;
	}

	.directory-header {
		align-items: flex-start;
		flex-direction: column;
	}

	.directory-card {
		grid-template-columns: auto 1fr;
	}

	.directory-action {
		grid-column: 1 / -1;
		justify-self: start;
	}

	h1 {
		font-size: clamp(1.7rem, 8vw, 2.2rem);
	}

	.detail-row {
		padding: 10px 11px;
		gap: 10px;
	}

	.detail-icon {
		width: 32px;
		height: 32px;
	}

	.detail-icon svg {
		width: 15px;
		height: 15px;
	}

	.detail-label {
		font-size: 0.6rem;
	}

	.detail-text {
		font-size: 0.82rem;
	}
}

@media (max-width: 600px) {
	/* Card is fixed 660px and scrolls horizontally on small screens.
	   No layout overrides needed — bc-section has overflow-x: auto. */
}
}