body#at-theme {
/*
 * Front-page industry chooser.
 *
 * Page bg switches to `--at-canvas-landing` (#0A0A0A) so the JPG header
 * images blend seamlessly into the page background.
 */

&.home { background-color: var(--at-canvas-landing); }

.at-shop-landing {
	padding: var(--at-space-8) var(--at-space-5);
	text-align: center;
	background-color: transparent;
}

/* Hero */
.at-shop-landing__hero {
	max-width: 800px;
	margin: 0 auto var(--at-space-7);
}
.at-shop-landing__head {
	height: 60px;
	width: auto;
	margin: 0 auto var(--at-space-3);
	opacity: 0.85;
	display: block;
}
.at-shop-landing__tagline {
	font-family: var(--at-font-mono);
	font-size: var(--at-fs-body-sm);
	color: var(--at-muted);
	text-transform: uppercase;
	letter-spacing: var(--at-tracking-pill);
	margin: 0 0 var(--at-space-4);
}
.at-shop-landing__title {
	font-family: var(--at-font-display);
	color: var(--at-headline);
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	font-weight: 500;
	line-height: 1.05;
	letter-spacing: var(--at-tracking-tight);
	text-transform: uppercase;
	margin: 0 0 var(--at-space-4);
}
.at-shop-landing__subtitle {
	font-family: var(--at-font-body);
	font-size: var(--at-fs-subhead);
	color: var(--at-body);
	line-height: 1.55;
	margin: 0;
}

/* Industry grid */
.at-shop-landing__grid {
	max-width: 1100px;
	width: 100%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--at-space-6);
}

.at-industry {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}

.at-industry__image {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	width: 100%;
	margin-bottom: -30px;
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.at-industry__image img {
	max-width: 90%;
	height: auto;
	object-fit: contain;
}
.at-industry:hover .at-industry__image {
	transform: translateY(-10px) scale(1.04);
}

.at-industry__card {
	background-color: var(--at-surface);
	border: 1px solid var(--at-hairline);
	border-radius: var(--at-radius-sm);
	padding: var(--at-space-6) var(--at-space-6);
	width: 100%;
	position: relative;
	z-index: 2;
	overflow: hidden;
	transition: border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
		box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
		transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.at-industry:hover .at-industry__card {
	border-color: var(--at-hairline-hover);
	box-shadow: 0 0 30px rgba(255, 255, 255, 0.08), inset 0 0 30px rgba(255, 255, 255, 0.03);
	transform: translateY(-12px) scale(1.02);
	z-index: 3;
}

.at-industry__title {
	font-family: var(--at-font-display);
	color: var(--at-headline);
	font-size: clamp(1.75rem, 4vw, 2.2rem);
	font-weight: 500;
	line-height: 1.05;
	letter-spacing: var(--at-tracking-tight);
	text-transform: uppercase;
	margin: 0 0 var(--at-space-2);
}

.at-industry__card .at-eyebrow {
	font-size: var(--at-fs-eyebrow);
	margin: 0 0 var(--at-space-4);
}

.at-industry__desc {
	font-family: var(--at-font-body);
	font-size: var(--at-fs-body);
	color: var(--at-body);
	line-height: 1.55;
	margin: 0 0 var(--at-space-5);
}

.at-industry__cta {
	display: inline-block;
	font-family: var(--at-font-body);
	font-size: var(--at-fs-body-sm);
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--at-headline);
	background-color: transparent;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: var(--at-radius-xs);
	padding: var(--at-space-3) var(--at-space-5);
	transition: background-color var(--at-trans-fast), color var(--at-trans-fast), border-color var(--at-trans-fast), box-shadow var(--at-trans-fast);
}
.at-industry__cta::before {
	content: ">>> ";
	color: var(--at-muted);
	margin-right: 0.3rem;
	transition: color var(--at-trans-fast);
}
.at-industry__cta:hover,
.at-industry__cta:focus-visible {
	background-color: var(--at-highlight);
	color: var(--at-canvas);
	border-color: var(--at-highlight);
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}
.at-industry__cta:hover::before,
.at-industry__cta:focus-visible::before {
	color: var(--at-canvas);
}

@media (max-width: 768px) {
	.at-shop-landing { padding: var(--at-space-6) var(--at-space-4); }
	.at-shop-landing__grid {
		grid-template-columns: 1fr;
		gap: var(--at-space-5);
	}
	.at-industry__image { margin-bottom: -20px; }
	.at-industry__card { padding: var(--at-space-5); }
}

/*
 * Landing-only header — minimal variant rendered by header-landing.php.
 * Logo sits alone, centered, smaller than the full header logo to stay
 * discreet above the hero (which already shows the head logo).
 */
.at-site-header--landing {
	background-color: transparent;
	border: 0;
	padding: var(--at-space-5) var(--at-space-4);
}
.at-header-inner--landing {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: var(--at-container-max);
	margin: 0 auto;
}
.at-site-header--landing .at-logo img {
	width: 140px;
	height: auto;
	opacity: 0.92;
}

/*
 * Region chooser modal — opened from industry CTAs when
 * `at_theme_industry_chooser_use_modal` is on. JS in
 * assets/js/landing-modal.js wires open/close/redirect.
 */
.at-shop-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--at-space-4);
}
.at-shop-modal[hidden] { display: none; }

.at-shop-modal__overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(4px);
}

.at-shop-modal__card {
	position: relative;
	z-index: 1;
	max-width: 520px;
	width: 100%;
	background-color: var(--at-surface);
	border: 1px solid var(--at-hairline);
	border-radius: var(--at-radius-sm);
	padding: var(--at-space-7) var(--at-space-6) var(--at-space-6);
	text-align: center;
}

.at-shop-modal__close {
	position: absolute;
	top: var(--at-space-3);
	right: var(--at-space-3);
	background: transparent;
	border: 0;
	color: var(--at-muted);
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	padding: var(--at-space-2) var(--at-space-3);
	transition: color var(--at-trans-fast);
}
.at-shop-modal__close:hover,
.at-shop-modal__close:focus-visible {
	color: var(--at-headline);
	outline: none;
}

.at-shop-modal__eyebrow {
	font-family: var(--at-font-mono);
	font-size: var(--at-fs-eyebrow);
	color: var(--at-muted);
	text-transform: uppercase;
	letter-spacing: var(--at-tracking-pill);
	margin: 0 0 var(--at-space-3);
}
.at-shop-modal__title {
	font-family: var(--at-font-display);
	color: var(--at-headline);
	font-size: clamp(1.4rem, 3.5vw, 1.8rem);
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: var(--at-tracking-tight);
	text-transform: uppercase;
	margin: 0 0 var(--at-space-3);
}
.at-shop-modal__desc {
	font-family: var(--at-font-body);
	font-size: var(--at-fs-body-sm);
	color: var(--at-body);
	line-height: 1.55;
	margin: 0 0 var(--at-space-6);
}

.at-shop-modal__choices {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--at-space-4);
}
.at-shop-modal__choice {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--at-space-2);
	background-color: transparent;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: var(--at-radius-xs);
	padding: var(--at-space-5) var(--at-space-4);
	color: var(--at-headline);
	font-family: var(--at-font-body);
	cursor: pointer;
	transition: background-color var(--at-trans-fast), color var(--at-trans-fast), border-color var(--at-trans-fast);
}
.at-shop-modal__choice-label {
	font-size: var(--at-fs-body);
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.at-shop-modal__choice-host {
	font-family: var(--at-font-mono);
	font-size: var(--at-fs-eyebrow);
	color: var(--at-muted);
	letter-spacing: var(--at-tracking-default);
	transition: color var(--at-trans-fast);
}
.at-shop-modal__choice:hover,
.at-shop-modal__choice:focus-visible {
	background-color: var(--at-highlight);
	color: var(--at-canvas);
	border-color: var(--at-highlight);
	outline: none;
}
.at-shop-modal__choice:hover .at-shop-modal__choice-host,
.at-shop-modal__choice:focus-visible .at-shop-modal__choice-host {
	color: var(--at-canvas);
}

@media (max-width: 480px) {
	.at-shop-modal__choices { grid-template-columns: 1fr; }
}

body.at-modal-locked { overflow: hidden; }
}
