/*
Theme Name:  GTMLens Child
Theme URI:   https://gtmlens.com
Description: Kadence child theme for GTMLens — independent analyst intelligence hub.
Author:      GTMLens
Author URI:  https://gtmlens.com
Template:    kadence
Version:     1.6.0
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gtmlens-child
*/

/* ─── Brand palette ───────────────────────────────────────────────────────── */
:root {
	--gl-primary:       #0D1F3C; /* deep navy — override in Customizer */
	--gl-accent:        #C8722A; /* warm amber */
	--gl-accent-light:  #F0A85A;
	--gl-text:          #1A1A2E; /* near-black for body copy */
	--gl-text-muted:    #5A6272;
	--gl-surface:       #F7F8FA; /* off-white page bg */
	--gl-border:        #DDE1E9;
	--gl-white:         #FFFFFF;
	--gl-green:         #1A7A4A; /* SWOT S */
	--gl-red:           #A3291C; /* SWOT T */
	--gl-blue-soft:     #2A5FA5; /* SWOT O */
	--gl-gold:          #8A6B1C; /* SWOT W */

	--gl-radius:        6px;
	--gl-shadow-sm:     0 1px 3px rgba(13,31,60,.10);
	--gl-shadow-md:     0 4px 16px rgba(13,31,60,.12);
	--gl-font-sans:     'Inter', system-ui, -apple-system, sans-serif;
	--gl-font-serif:    'Georgia', 'Times New Roman', serif;
}

/* ─── Typography reset ────────────────────────────────────────────────────── */
body {
	color: var(--gl-text);
	font-family: var(--gl-font-sans);
	background-color: var(--gl-surface);
}

h1, h2, h3, h4, h5, h6 {
	color: var(--gl-primary);
	font-family: var(--gl-font-sans);
	font-weight: 700;
	line-height: 1.25;
}

a {
	color: var(--gl-primary);
	text-decoration: underline;
	text-decoration-color: var(--gl-accent);
}

a:hover {
	color: var(--gl-accent);
}

/* ─── Vendor profile: sticky sidebar ─────────────────────────────────────── */
.gl-vendor-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 40px;
	align-items: start;
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 24px;
}

@media (max-width: 900px) {
	.gl-vendor-layout {
		grid-template-columns: 1fr;
	}
	.gl-sidebar {
		position: static !important;
	}
}

.gl-sidebar {
	position: sticky;
	top: 80px;
	background: var(--gl-white);
	border: 1px solid var(--gl-border);
	border-radius: var(--gl-radius);
	padding: 24px;
	box-shadow: var(--gl-shadow-sm);
}

.gl-sidebar__row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 8px 0;
	border-bottom: 1px solid var(--gl-border);
	font-size: .875rem;
}

.gl-sidebar__row:last-child {
	border-bottom: none;
}

.gl-sidebar__label {
	color: var(--gl-text-muted);
	font-weight: 500;
}

.gl-sidebar__value {
	color: var(--gl-text);
	font-weight: 600;
	text-align: right;
}

.gl-sidebar__cta {
	display: block;
	margin-top: 16px;
	padding: 10px 16px;
	background: var(--gl-primary);
	color: var(--gl-white) !important;
	text-align: center;
	border-radius: var(--gl-radius);
	text-decoration: none;
	font-weight: 600;
	font-size: .875rem;
	transition: background .2s;
}

.gl-sidebar__cta:hover {
	background: var(--gl-accent);
	color: var(--gl-white) !important;
}

/* ─── Vendor hero ─────────────────────────────────────────────────────────── */
.gl-vendor-hero {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 32px 0 24px;
	border-bottom: 2px solid var(--gl-border);
	margin-bottom: 32px;
}

.gl-vendor-hero__logo {
	width: 72px;
	height: 72px;
	object-fit: contain;
	border-radius: var(--gl-radius);
	border: 1px solid var(--gl-border);
	background: var(--gl-white);
	padding: 6px;
}

.gl-vendor-hero__name {
	font-size: 2rem;
	margin: 0 0 4px;
}

.gl-vendor-hero__category {
	display: inline-block;
	background: var(--gl-primary);
	color: var(--gl-white);
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .05em;
	text-transform: uppercase;
	padding: 3px 10px;
	border-radius: 100px;
}

/* ─── SWOT block ──────────────────────────────────────────────────────────── */
.gl-swot {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin: 32px 0;
}

@media (max-width: 640px) {
	.gl-swot { grid-template-columns: 1fr; }
}

.gl-swot__box {
	border-radius: var(--gl-radius);
	padding: 20px;
	border-left: 4px solid transparent;
}

.gl-swot__box--s {
	background: #F0FBF4;
	border-left-color: var(--gl-green);
}

.gl-swot__box--w {
	background: #FEFBEE;
	border-left-color: var(--gl-gold);
}

.gl-swot__box--o {
	background: #EEF4FF;
	border-left-color: var(--gl-blue-soft);
}

.gl-swot__box--t {
	background: #FFF1F0;
	border-left-color: var(--gl-red);
}

.gl-swot__heading {
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	margin: 0 0 8px;
}

.gl-swot__box--s .gl-swot__heading { color: var(--gl-green); }
.gl-swot__box--w .gl-swot__heading { color: var(--gl-gold); }
.gl-swot__box--o .gl-swot__heading { color: var(--gl-blue-soft); }
.gl-swot__box--t .gl-swot__heading { color: var(--gl-red); }

.gl-swot__text {
	font-size: .9rem;
	line-height: 1.6;
	color: var(--gl-text);
	margin: 0;
}

/* ─── Tag cloud (capabilities / integrations) ─────────────────────────────── */
.gl-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 16px 0;
}

.gl-tag {
	display: inline-block;
	background: var(--gl-surface);
	border: 1px solid var(--gl-border);
	color: var(--gl-text-muted);
	font-size: .8rem;
	font-weight: 500;
	padding: 4px 10px;
	border-radius: 100px;
}

/* ─── Comparison table ────────────────────────────────────────────────────── */
.gl-comparison-table {
	width: 100%;
	border-collapse: collapse;
	margin: 24px 0;
	font-size: .9rem;
}

.gl-comparison-table th {
	background: var(--gl-primary);
	color: var(--gl-white);
	padding: 12px 16px;
	text-align: left;
	font-weight: 600;
}

.gl-comparison-table th:first-child {
	background: var(--gl-surface);
	color: var(--gl-text-muted);
	font-weight: 500;
}

.gl-comparison-table td {
	padding: 11px 16px;
	border-bottom: 1px solid var(--gl-border);
	vertical-align: top;
}

.gl-comparison-table tr:last-child td {
	border-bottom: none;
}

.gl-comparison-table tr:nth-child(even) td {
	background: #FAFBFD;
}

.gl-winner-badge {
	display: inline-block;
	background: var(--gl-accent);
	color: var(--gl-white);
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	padding: 2px 8px;
	border-radius: 100px;
	margin-left: 6px;
}

/* ─── Verdict banner ──────────────────────────────────────────────────────── */
.gl-verdict {
	background: var(--gl-primary);
	color: var(--gl-white);
	border-radius: var(--gl-radius);
	padding: 20px 24px;
	margin: 24px 0;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
}

.gl-verdict strong {
	color: var(--gl-accent-light);
}

/* ─── Decision rules ──────────────────────────────────────────────────────── */
.gl-decision-rules {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin: 24px 0;
}

@media (max-width: 640px) {
	.gl-decision-rules { grid-template-columns: 1fr; }
}

.gl-decision-rule {
	border: 1px solid var(--gl-border);
	border-radius: var(--gl-radius);
	padding: 16px;
}

.gl-decision-rule__label {
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--gl-text-muted);
	margin: 0 0 8px;
}

/* ─── Stack recipe ────────────────────────────────────────────────────────── */
.gl-tier-badge {
	display: inline-block;
	background: var(--gl-accent);
	color: var(--gl-white);
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 100px;
	margin-bottom: 12px;
}

.gl-tools-list {
	list-style: none;
	padding: 0;
	margin: 16px 0;
}

.gl-tools-list__item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid var(--gl-border);
}

.gl-tools-list__item:last-child {
	border-bottom: none;
}

.gl-tools-list__logo {
	width: 32px;
	height: 32px;
	object-fit: contain;
	border-radius: 4px;
	border: 1px solid var(--gl-border);
}

.gl-tools-list__name {
	font-weight: 600;
	flex: 1;
}

.gl-tools-list__price {
	color: var(--gl-text-muted);
	font-size: .85rem;
}

.gl-cost-total {
	background: var(--gl-primary);
	color: var(--gl-white);
	border-radius: var(--gl-radius);
	padding: 16px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 16px 0;
}

.gl-cost-total__label {
	font-size: .85rem;
	opacity: .8;
}

.gl-cost-total__amount {
	font-size: 1.4rem;
	font-weight: 700;
}

/* ─── Alternatives rail ────────────────────────────────────────────────────── */
.gl-alternatives {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 12px;
	margin: 16px 0;
}

.gl-alt-card {
	border: 1px solid var(--gl-border);
	border-radius: var(--gl-radius);
	padding: 12px;
	text-decoration: none;
	background: var(--gl-white);
	transition: box-shadow .2s, border-color .2s;
}

.gl-alt-card:hover {
	box-shadow: var(--gl-shadow-md);
	border-color: var(--gl-accent);
	text-decoration: none;
}

.gl-alt-card__logo {
	width: 36px;
	height: 36px;
	object-fit: contain;
	border-radius: 4px;
	display: block;
	margin-bottom: 8px;
}

.gl-alt-card__name {
	font-weight: 600;
	font-size: .875rem;
	color: var(--gl-text);
	display: block;
}

/* ─── Vendor archive grid ─────────────────────────────────────────────────── */
.gl-vendor-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 20px;
	margin: 24px 0;
}

.gl-vendor-card {
	background: var(--gl-white);
	border: 1px solid var(--gl-border);
	border-radius: var(--gl-radius);
	padding: 20px;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: box-shadow .2s, border-color .2s;
}

.gl-vendor-card:hover {
	box-shadow: var(--gl-shadow-md);
	border-color: var(--gl-accent);
	text-decoration: none;
}

.gl-vendor-card__logo {
	width: 48px;
	height: 48px;
	object-fit: contain;
	border-radius: 6px;
	border: 1px solid var(--gl-border);
}

.gl-vendor-card__name {
	font-weight: 700;
	color: var(--gl-primary);
	font-size: 1rem;
}

.gl-vendor-card__excerpt {
	color: var(--gl-text-muted);
	font-size: .85rem;
	line-height: 1.5;
}

.gl-vendor-card__meta {
	margin-top: auto;
	font-size: .78rem;
	color: var(--gl-text-muted);
}

/* ─── Category filter chips ────────────────────────────────────────────────── */
.gl-filter-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 16px 0 28px;
}

.gl-chip {
	display: inline-block;
	padding: 6px 14px;
	border: 1px solid var(--gl-border);
	border-radius: 100px;
	font-size: .8rem;
	font-weight: 500;
	color: var(--gl-text-muted);
	text-decoration: none;
	background: var(--gl-white);
	transition: background .15s, border-color .15s, color .15s;
}

.gl-chip:hover,
.gl-chip--active {
	background: var(--gl-primary);
	border-color: var(--gl-primary);
	color: var(--gl-white);
	text-decoration: none;
}

/* ─── Methodology footer ────────────────────────────────────────────────────── */
.gl-methodology {
	background: var(--gl-surface);
	border-top: 2px solid var(--gl-border);
	border-radius: 0 0 var(--gl-radius) var(--gl-radius);
	padding: 20px 24px;
	font-size: .8rem;
	color: var(--gl-text-muted);
	line-height: 1.6;
	margin-top: 40px;
}

.gl-methodology strong {
	color: var(--gl-text);
}

/* ─── Editorial policy callout ──────────────────────────────────────────────── */
.gl-editorial-callout {
	border: 1px solid var(--gl-border);
	border-left: 4px solid var(--gl-accent);
	background: var(--gl-white);
	border-radius: 0 var(--gl-radius) var(--gl-radius) 0;
	padding: 16px 20px;
	margin: 32px 0;
	font-size: .875rem;
	color: var(--gl-text-muted);
	line-height: 1.6;
}

.gl-editorial-callout a {
	color: var(--gl-accent);
	font-weight: 600;
}

/* ─── Last-updated notice ────────────────────────────────────────────────── */
.gl-last-updated {
	font-size: .78rem;
	color: var(--gl-text-muted);
	margin-top: 8px;
}

/* ─── Home hero ──────────────────────────────────────────────────────────── */
.gl-hero {
	background: var(--gl-primary);
	color: var(--gl-white);
	padding: 72px 24px;
	text-align: center;
}

.gl-hero__tagline {
	font-size: 2.25rem;
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 16px;
	color: var(--gl-white);
}

.gl-hero__sub {
	font-size: 1.1rem;
	opacity: .75;
	max-width: 560px;
	margin: 0 auto 28px;
}

.gl-hero__cta {
	display: inline-block;
	background: var(--gl-accent);
	color: var(--gl-white) !important;
	padding: 14px 28px;
	border-radius: var(--gl-radius);
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	transition: background .2s;
}

.gl-hero__cta:hover {
	background: var(--gl-accent-light);
	text-decoration: none;
}

/* ─── Section headings ────────────────────────────────────────────────────── */
.gl-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 48px 24px;
}

.gl-section__title {
	font-size: 1.4rem;
	margin: 0 0 24px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--gl-border);
}

/* ─── Insight card ────────────────────────────────────────────────────────── */
.gl-insight-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}

.gl-insight-card {
	background: var(--gl-white);
	border: 1px solid var(--gl-border);
	border-radius: var(--gl-radius);
	padding: 20px;
	text-decoration: none;
	display: block;
	transition: box-shadow .2s;
}

.gl-insight-card:hover {
	box-shadow: var(--gl-shadow-md);
	text-decoration: none;
}

.gl-insight-card__cat {
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--gl-accent);
	margin-bottom: 6px;
}

.gl-insight-card__title {
	font-weight: 700;
	font-size: 1rem;
	color: var(--gl-primary);
	margin: 0 0 8px;
}

.gl-insight-card__excerpt {
	font-size: .85rem;
	color: var(--gl-text-muted);
	line-height: 1.5;
}

/* ─── Battle card highlight ────────────────────────────────────────────────── */
.gl-battle-card-highlight {
	background: var(--gl-primary);
	border-radius: var(--gl-radius);
	padding: 24px;
	color: var(--gl-white);
}

.gl-battle-card-highlight__label {
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--gl-accent-light);
	margin-bottom: 8px;
}

.gl-battle-card-highlight__title {
	font-size: 1.25rem;
	color: var(--gl-white);
	margin: 0 0 12px;
}

.gl-battle-card-highlight a {
	color: var(--gl-accent-light);
}

/* ─── Stack quiz container ─────────────────────────────────────────────────── */
#stack-quiz {
	background: var(--gl-white);
	border: 1px solid var(--gl-border);
	border-radius: var(--gl-radius);
	padding: 32px;
	max-width: 720px;
	margin: 0 auto;
}

/* ─── Pros / cons table ────────────────────────────────────────────────────── */
.gl-pros-cons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin: 24px 0;
}

@media (max-width: 640px) {
	.gl-pros-cons { grid-template-columns: 1fr; }
}

.gl-pros-cons__col {
	border: 1px solid var(--gl-border);
	border-radius: var(--gl-radius);
	padding: 16px;
}

.gl-pros-cons__heading {
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin: 0 0 10px;
}

.gl-pros-cons__col--pros .gl-pros-cons__heading { color: var(--gl-green); }
.gl-pros-cons__col--cons .gl-pros-cons__heading { color: var(--gl-red); }

.gl-pros-cons ul {
	margin: 0;
	padding-left: 18px;
}

.gl-pros-cons li {
	font-size: .875rem;
	line-height: 1.6;
	color: var(--gl-text);
}

/* ─── AI attribution chip ────────────────────────────────────────────────── */
.gl-ai-chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.25rem 0.6rem; border-radius: 9999px;
  background: rgba(13, 31, 60, 0.06);
  color: var(--gl-text-muted); font-size: 0.75rem;
  text-decoration: none; line-height: 1;
  transition: background 0.15s ease;
}
.gl-ai-chip:hover { background: rgba(13, 31, 60, 0.12); color: var(--gl-text); text-decoration: none; }
.gl-ai-chip svg { color: var(--gl-accent); flex-shrink: 0; }
.gl-ai-chip--medium { font-size: 0.85rem; padding: 0.4rem 0.85rem; }
.gl-ai-chip--header { position: fixed; top: 0.5rem; right: 1rem; z-index: 999; background: rgba(255,255,255,0.95); backdrop-filter: blur(6px); }
@media (max-width: 768px) { .gl-ai-chip--header { display: none; } }

/* ─── Utility ─────────────────────────────────────────────────────────────── */
.gl-divider {
	border: none;
	border-top: 1px solid var(--gl-border);
	margin: 32px 0;
}

.gl-label {
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--gl-text-muted);
	margin: 0 0 8px;
	display: block;
}

.gl-contact-email {
	color: var(--gl-accent);
	font-weight: 600;
}

/* ─── Site logo (replaces text site title with SVG wordmark) ─────────────── */
.site-branding .brand {
	display: inline-block;
	width: 220px;
	height: 48px;
	background: url('assets/images/logo.svg') no-repeat left center;
	background-size: contain;
}
.site-branding .brand .site-title-wrap,
.site-branding .brand .site-title,
.site-branding .site-description { display: none !important; }
@media (max-width: 480px) {
	.site-branding .brand { width: 180px; height: 40px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOMEPAGE v2 — full rewrite 2026-04-30
   Uses full-bleed technique to break Kadence's boxed container.
   Prefix: glhp-* (homepage-only), gl-fullbleed (shared primitive),
           gl-btn-primary / gl-btn-secondary (shared buttons)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Full-bleed primitive ────────────────────────────────────────────────── */
.gl-fullbleed {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	padding: 64px max(24px, calc((100vw - 1200px) / 2));
	box-sizing: border-box;
}

.gl-fullbleed__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.gl-fullbleed--dark {
	background: var(--gl-primary);
	color: var(--gl-white);
}

.gl-fullbleed--dark h2,
.gl-fullbleed--dark h3 {
	color: var(--gl-white);
}

/* ─── Button primitives ───────────────────────────────────────────────────── */
.gl-btn-primary {
	display: inline-block;
	padding: 12px 24px;
	background: var(--gl-accent);
	color: var(--gl-white) !important;
	font-weight: 600;
	font-size: .95rem;
	text-decoration: none;
	border-radius: var(--gl-radius);
	border: none;
	cursor: pointer;
	transition: background .15s;
	white-space: nowrap;
}

.gl-btn-primary:hover {
	background: var(--gl-primary);
	color: var(--gl-white) !important;
	text-decoration: none;
}

.gl-btn-secondary {
	display: inline-block;
	padding: 12px 24px;
	background: transparent;
	color: var(--gl-primary) !important;
	font-weight: 600;
	font-size: .95rem;
	text-decoration: none;
	border-radius: var(--gl-radius);
	border: 1.5px solid var(--gl-primary);
	cursor: pointer;
	transition: background .15s, color .15s;
	white-space: nowrap;
}

.gl-btn-secondary:hover {
	background: var(--gl-primary);
	color: var(--gl-white) !important;
	text-decoration: none;
}

/* ─── Section header (title + view-all link, space-between) ──────────────── */
.glhp-section-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 24px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--gl-border);
}

.glhp-section-header__title {
	font-size: 1.35rem;
	margin: 0;
	color: var(--gl-primary);
}

.glhp-section-header__link {
	font-size: .85rem;
	font-weight: 700;
	color: var(--gl-accent);
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
}

.glhp-section-header__link:hover {
	color: var(--gl-primary);
	text-decoration: none;
}

/* ─── Boxed section wrapper ───────────────────────────────────────────────── */
.glhp-boxed {
	max-width: 1200px;
	margin: 0 auto;
	padding: 56px 24px;
}

.glhp-boxed--white {
	background: var(--gl-white);
}

/* ══════════════════════════════════════════════════════════════════════════
   1. HERO
   ══════════════════════════════════════════════════════════════════════════ */
.glhp-hero {
	max-width: 1200px;
	margin: 0 auto;
	padding: 64px 24px 56px;
}

.glhp-hero__eyebrow {
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--gl-accent);
	margin: 0 0 16px;
}

.glhp-hero__h1 {
	font-size: clamp(1.75rem, 3.5vw, 2.6rem);
	font-weight: 800;
	line-height: 1.2;
	color: var(--gl-primary);
	max-width: 900px;
	margin: 0 0 20px;
}

.glhp-hero__sub {
	font-size: 1.05rem;
	color: var(--gl-text-muted);
	max-width: 720px;
	line-height: 1.65;
	margin: 0 0 8px;
}

/* ─── Stat strip — horizontal flex ───────────────────────────────────────── */
.glhp-stat-strip {
	display: flex;
	align-items: center;
	gap: 0;
	margin: 32px 0;
	padding: 20px 0;
	border-top: 1px solid var(--gl-border);
	border-bottom: 1px solid var(--gl-border);
	flex-wrap: wrap;
}

.glhp-stat-strip__item {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 0 32px 0 0;
}

.glhp-stat-strip__item:first-child {
	padding-left: 0;
}

.glhp-stat-strip__divider {
	width: 1px;
	height: 36px;
	background: var(--gl-border);
	margin: 0 32px 0 0;
	flex-shrink: 0;
}

.glhp-stat-strip__number {
	font-size: 2rem;
	font-weight: 800;
	color: var(--gl-primary);
	line-height: 1;
}

.glhp-stat-strip__label {
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--gl-text-muted);
}

.glhp-hero__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

@media (max-width: 600px) {
	.glhp-stat-strip {
		gap: 16px;
		flex-wrap: wrap;
	}
	.glhp-stat-strip__divider {
		display: none;
	}
	.glhp-stat-strip__item {
		padding: 0;
		min-width: 80px;
	}
	.glhp-hero__ctas {
		flex-direction: column;
		align-items: flex-start;
	}
	.glhp-hero__ctas .gl-btn-primary,
	.glhp-hero__ctas .gl-btn-secondary {
		width: 100%;
		text-align: center;
	}
}

/* ══════════════════════════════════════════════════════════════════════════
   2. FEATURED REPORT — dark navy full-bleed
   ══════════════════════════════════════════════════════════════════════════ */
.glhp-report__grid {
	display: grid;
	grid-template-columns: 60fr 40fr;
	gap: 48px;
	align-items: center;
}

.glhp-report__eyebrow {
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--gl-accent);
	margin: 0 0 14px;
}

.glhp-report__h2 {
	font-size: clamp(1.4rem, 2.5vw, 2rem);
	font-weight: 800;
	line-height: 1.25;
	color: var(--gl-white);
	margin: 0 0 16px;
}

.glhp-report__sub {
	color: rgba(255,255,255,.72);
	font-size: 1rem;
	line-height: 1.6;
	margin: 0 0 28px;
}

.glhp-report__map-link {
	display: block;
	border-radius: var(--gl-radius);
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0,0,0,.35);
	border: 1px solid rgba(255,255,255,.15);
	transition: transform .2s, box-shadow .2s;
}

.glhp-report__map-link:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 40px rgba(0,0,0,.45);
}

.glhp-report__map-img {
	display: block;
	width: 100%;
	max-height: 320px;
	object-fit: contain;
	background: rgba(255,255,255,.04);
}

@media (max-width: 768px) {
	.glhp-report__grid {
		grid-template-columns: 1fr;
	}
	.glhp-report__map-img {
		max-height: 220px;
	}
}

/* ══════════════════════════════════════════════════════════════════════════
   3. STACK BUILDER CTA — full-bleed, amber-tinted surface
   ══════════════════════════════════════════════════════════════════════════ */
.glhp-stack-cta {
	background: #FFF8F2;
	border-top: 3px solid var(--gl-accent);
	border-bottom: 1px solid #F0D5BC;
}

.glhp-stack-cta__inner {
	text-align: center;
	max-width: 720px;
	margin: 0 auto;
}

.glhp-stack-cta__eyebrow {
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--gl-accent);
	margin: 0 0 12px;
}

.glhp-stack-cta__h2 {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 800;
	color: var(--gl-primary);
	margin: 0 0 12px;
	line-height: 1.25;
}

.glhp-stack-cta__sub {
	font-size: 1rem;
	color: var(--gl-text-muted);
	line-height: 1.65;
	margin: 0 0 28px;
}

.glhp-stack-cta__tiers {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 28px;
}

.glhp-stack-cta__chip {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	padding: 10px 18px;
	border: 1px solid var(--gl-border);
	border-radius: var(--gl-radius);
	background: var(--gl-white);
	text-decoration: none;
	transition: background .15s, border-color .15s, color .15s;
}

.glhp-stack-cta__chip:hover {
	background: var(--gl-accent);
	border-color: var(--gl-accent);
	text-decoration: none;
}

.glhp-stack-cta__chip:hover .glhp-stack-cta__chip-label,
.glhp-stack-cta__chip:hover .glhp-stack-cta__chip-sub {
	color: var(--gl-white);
}

.glhp-stack-cta__chip-label {
	font-size: .9rem;
	font-weight: 700;
	color: var(--gl-primary);
	transition: color .15s;
}

.glhp-stack-cta__chip-sub {
	font-size: .72rem;
	color: var(--gl-text-muted);
	transition: color .15s;
}

@media (max-width: 480px) {
	.glhp-stack-cta__tiers {
		gap: 8px;
	}
	.glhp-stack-cta .gl-btn-primary {
		width: 100%;
		text-align: center;
	}
}

/* ══════════════════════════════════════════════════════════════════════════
   4. LATEST INSIGHTS — 3-column card grid with top-border accent
   ══════════════════════════════════════════════════════════════════════════ */
.glhp-insight-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.glhp-insight-card {
	display: flex;
	flex-direction: column;
	gap: 8px;
	background: var(--gl-white);
	border: 1px solid var(--gl-border);
	border-top: 4px solid var(--gl-primary);
	border-radius: var(--gl-radius);
	padding: 20px;
	text-decoration: none;
	transition: box-shadow .2s, transform .2s;
}

.glhp-insight-card:hover {
	box-shadow: var(--gl-shadow-md);
	transform: translateY(-2px);
	text-decoration: none;
}

.glhp-insight-card__cat {
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .09em;
	text-transform: uppercase;
	color: var(--gl-accent);
}

.glhp-insight-card__title {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--gl-primary);
	line-height: 1.35;
	margin: 0;
}

.glhp-insight-card__excerpt {
	font-size: .85rem;
	color: var(--gl-text-muted);
	line-height: 1.55;
	margin: 0;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.glhp-insight-card__date {
	font-size: .75rem;
	color: var(--gl-text-muted);
	margin-top: 4px;
}

@media (max-width: 900px) {
	.glhp-insight-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.glhp-insight-grid {
		grid-template-columns: 1fr;
	}
}

/* ══════════════════════════════════════════════════════════════════════════
   5. LATEST COMPARISONS — 3-column, white bg cards
   ══════════════════════════════════════════════════════════════════════════ */
.glhp-comp-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.glhp-comp-card {
	background: var(--gl-white);
	border: 1px solid var(--gl-border);
	border-radius: var(--gl-radius);
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: box-shadow .2s, border-color .2s;
}

.glhp-comp-card:hover {
	box-shadow: var(--gl-shadow-md);
	border-color: var(--gl-accent);
}

.glhp-comp-card__vs-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.glhp-comp-card__vendor {
	font-size: 1rem;
	font-weight: 700;
	color: var(--gl-primary);
}

.glhp-comp-card__vs {
	font-size: .8rem;
	color: var(--gl-text-muted);
	font-style: italic;
}

.glhp-comp-card__accent-line {
	height: 3px;
	background: var(--gl-accent);
	border-radius: 2px;
	width: 40px;
	flex-shrink: 0;
}

.glhp-comp-card__verdict {
	font-size: .875rem;
	color: var(--gl-text-muted);
	line-height: 1.55;
	margin: 0;
	flex: 1;
}

.glhp-comp-card__cta {
	font-size: .85rem;
	font-weight: 700;
	color: var(--gl-accent);
	text-decoration: none;
}

.glhp-comp-card__cta:hover {
	color: var(--gl-primary);
	text-decoration: none;
}

@media (max-width: 900px) {
	.glhp-comp-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.glhp-comp-grid {
		grid-template-columns: 1fr;
	}
}

/* ══════════════════════════════════════════════════════════════════════════
   6. VENDOR CATEGORIES — 5-column grid, hover navy fill
   ══════════════════════════════════════════════════════════════════════════ */
.glhp-cat-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
}

.glhp-cat-tile {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
	background: var(--gl-white);
	border: 1px solid var(--gl-border);
	border-radius: var(--gl-radius);
	padding: 18px 16px;
	text-decoration: none;
	transition: background .15s, border-color .15s, box-shadow .15s;
}

.glhp-cat-tile:hover {
	background: var(--gl-primary);
	border-color: var(--gl-primary);
	box-shadow: var(--gl-shadow-md);
	text-decoration: none;
}

.glhp-cat-tile:hover .glhp-cat-tile__name,
.glhp-cat-tile:hover .glhp-cat-tile__count {
	color: var(--gl-white);
}

.glhp-cat-tile__icon {
	font-size: 1.25rem;
	line-height: 1;
	margin-bottom: 2px;
}

.glhp-cat-tile__name {
	font-weight: 700;
	font-size: .9rem;
	color: var(--gl-primary);
	transition: color .15s;
	text-transform: capitalize;
}

.glhp-cat-tile__count {
	font-size: .75rem;
	color: var(--gl-text-muted);
	font-weight: 500;
	transition: color .15s;
}

@media (max-width: 1024px) {
	.glhp-cat-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 560px) {
	.glhp-cat-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ══════════════════════════════════════════════════════════════════════════
   7. EDITORIAL + NEWSLETTER — full-bleed surface, 2-col
   ══════════════════════════════════════════════════════════════════════════ */
.glhp-editorial {
	background: var(--gl-surface);
	border-top: 2px solid var(--gl-accent);
}

.glhp-editorial__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: start;
}

.glhp-editorial__h3 {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--gl-primary);
	margin: 0 0 12px;
}

.glhp-editorial__body {
	font-size: .95rem;
	color: var(--gl-text-muted);
	line-height: 1.7;
	margin: 0 0 16px;
}

.glhp-editorial__policy-link {
	font-weight: 700;
	color: var(--gl-accent);
	text-decoration: none;
	font-size: .9rem;
}

.glhp-editorial__policy-link:hover {
	color: var(--gl-primary);
	text-decoration: none;
}

/* Newsletter column */
.glhp-newsletter__h3 {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--gl-primary);
	margin: 0 0 10px;
}

.glhp-newsletter__sub {
	font-size: .9rem;
	color: var(--gl-text-muted);
	line-height: 1.6;
	margin: 0 0 16px;
}

.glhp-newsletter__label {
	display: block;
	font-size: .72rem;
	font-weight: 700;
	color: var(--gl-text-muted);
	letter-spacing: .05em;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.glhp-newsletter__row {
	margin-bottom: 8px;
}

.glhp-newsletter__input-group {
	display: flex;
	gap: 8px;
}

.glhp-newsletter__input {
	flex: 1 1 200px;
	padding: 11px 14px;
	border: 1px solid var(--gl-border);
	border-radius: var(--gl-radius);
	font-size: .9rem;
	color: var(--gl-text);
	background: var(--gl-white);
	outline: none;
	transition: border-color .15s, box-shadow .15s;
}

.glhp-newsletter__input:focus {
	border-color: var(--gl-primary);
	box-shadow: 0 0 0 3px rgba(13,31,60,.10);
}

.glhp-newsletter__input::placeholder {
	color: var(--gl-text-muted);
	opacity: .7;
}

.glhp-newsletter__btn {
	flex-shrink: 0;
}

.glhp-newsletter__note {
	font-size: .78rem;
	color: var(--gl-text-muted);
	margin: 0;
	line-height: 1.5;
}

@media (max-width: 860px) {
	.glhp-editorial__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

@media (max-width: 480px) {
	.glhp-newsletter__input-group {
		flex-direction: column;
	}
	.glhp-newsletter__btn {
		width: 100%;
		text-align: center;
	}
}

/* ══════════════════════════════════════════════════════════════════════════
   Footer strip
   ══════════════════════════════════════════════════════════════════════════ */
.glhp-footer-strip {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 24px;
	border-top: 1px solid var(--gl-border);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.glhp-footer-strip__copy {
	font-size: .82rem;
	color: var(--gl-text-muted);
}

.glhp-footer-strip__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: center;
}

.glhp-footer-strip__nav a {
	font-size: .82rem;
	font-weight: 600;
	color: var(--gl-text-muted);
	text-decoration: none;
	transition: color .15s;
}

.glhp-footer-strip__nav a:hover {
	color: var(--gl-accent);
	text-decoration: none;
}

@media (max-width: 600px) {
	.glhp-footer-strip {
		flex-direction: column;
		align-items: flex-start;
	}
}


/* ──────────────────────────────────────────────────────────────────────────
   Market Map — analyst-grade 2D scatter
   ────────────────────────────────────────────────────────────────────────── */
.gl-mm2 {
	max-width: 1240px;
	margin: 64px auto;
	padding: 0 24px;
	font-feature-settings: "tnum" 1, "ss01" 1;
}

/* Header — eyebrow, title, methodology meta block */
.gl-mm2__head {
	margin-bottom: 22px;
	padding-bottom: 18px;
	border-bottom: 2px solid var(--gl-primary);
}
.gl-mm2__eyebrow {
	margin: 0 0 6px;
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--gl-text-muted);
	font-variant-numeric: tabular-nums;
}
.gl-mm2__h2 {
	margin: 0 0 8px;
	font-size: 1.85rem;
	font-weight: 700;
	color: var(--gl-primary);
	line-height: 1.15;
	letter-spacing: -0.01em;
}
.gl-mm2__sub {
	margin: 0;
	font-size: .92rem;
	color: var(--gl-text);
	max-width: 720px;
	line-height: 1.5;
}
.gl-mm2__sub strong { color: var(--gl-primary); font-weight: 700; }

.gl-mm2__meta {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 240px;
	font-size: .72rem;
}
.gl-mm2__meta-row {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 4px 0;
	border-bottom: 1px dotted var(--gl-border);
}
.gl-mm2__meta-row:last-child { border-bottom: none; }
.gl-mm2__meta-k {
	color: var(--gl-text-muted);
	letter-spacing: .04em;
	text-transform: uppercase;
	font-size: .65rem;
	font-weight: 700;
}
.gl-mm2__meta-v { color: var(--gl-primary); font-weight: 600; text-align: right; }

/* Legend */
.gl-mm2__legend {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-bottom: 14px;
}
.gl-mm2-leg {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 5px 10px 5px 8px;
	font-size: .74rem;
	font-weight: 600;
	color: var(--gl-text);
	background: var(--gl-white);
	border: 1px solid var(--gl-border);
	border-radius: 4px;
	cursor: pointer;
	transition: all .12s;
	letter-spacing: -0.005em;
}
.gl-mm2-leg:hover { border-color: var(--gl-primary); background: var(--gl-surface); }
.gl-mm2-leg.is-active {
	background: var(--gl-primary);
	color: var(--gl-white);
	border-color: var(--gl-primary);
}
.gl-mm2-leg__sw {
	display: inline-block;
	width: 9px;
	height: 9px;
	border-radius: 1px;
}
.gl-mm2-leg__n {
	font-size: .65rem;
	color: var(--gl-text-muted);
	font-variant-numeric: tabular-nums;
	font-weight: 700;
	margin-left: 2px;
}
.gl-mm2-leg.is-active .gl-mm2-leg__n { color: rgba(255,255,255,.65); }

/* Plot wrap */
.gl-mm2__plot-wrap {
	position: relative;
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 0;
	background: var(--gl-white);
	border: 1px solid var(--gl-border);
	border-radius: 4px;
	padding: 18px 20px 56px 8px;
	box-shadow: 0 1px 3px rgba(13,31,60,.04);
}
.gl-mm2__y-axis {
	position: relative;
	padding-top: 6px;
	padding-bottom: 32px;
}
.gl-mm2__y-label {
	position: absolute;
	right: 14px;
	transform: translateY(-50%);
	font-size: .65rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--gl-text-muted);
	white-space: nowrap;
	text-align: right;
	line-height: 1.3;
}
.gl-mm2__y-label em {
	font-style: normal;
	font-weight: 600;
	font-size: .58rem;
	color: var(--gl-text-muted);
	opacity: .75;
	display: block;
	letter-spacing: .04em;
}
.gl-mm2__y-title {
	position: absolute;
	left: 6px;
	bottom: 36px;
	transform: rotate(-90deg);
	transform-origin: left bottom;
	font-size: .7rem;
	font-weight: 700;
	color: var(--gl-primary);
	letter-spacing: .08em;
	text-transform: uppercase;
	white-space: nowrap;
}

.gl-mm2__plot {
	position: relative;
	height: 680px;
	background:
		linear-gradient(to right, transparent 0, transparent calc(50% - 1px), rgba(13,31,60,.06) 50%, transparent calc(50% + 1px)),
		linear-gradient(to bottom, transparent 0, transparent calc(50% - 1px), rgba(13,31,60,.06) 50%, transparent calc(50% + 1px)),
		radial-gradient(circle at 1px 1px, rgba(13,31,60,.08) 1px, transparent 0) 0 0 / 24px 24px,
		var(--gl-white);
	border: 1px solid var(--gl-border);
	border-radius: 3px;
	overflow: visible;
}

/* Quadrant labels (subtle, in corners) */
.gl-mm2__quadrants { position: absolute; inset: 0; pointer-events: none; }
.gl-mm2__qcorner {
	position: absolute;
	font-size: .62rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--gl-text-muted);
	opacity: .55;
	white-space: nowrap;
}
.gl-mm2__qcorner--tl { top: 8px; left: 12px; }
.gl-mm2__qcorner--tr { top: 8px; right: 12px; }
.gl-mm2__qcorner--bl { bottom: 8px; left: 12px; }
.gl-mm2__qcorner--br { bottom: 8px; right: 12px; }

.gl-mm2__grid { position: absolute; inset: 0; pointer-events: none; }
.gl-mm2__gv {
	position: absolute;
	top: 0; bottom: 0;
	width: 1px;
	background: rgba(13,31,60,.08);
}
.gl-mm2__gh {
	position: absolute;
	left: 0; right: 0;
	height: 1px;
	background: rgba(13,31,60,.08);
}

.gl-mm2__x-label {
	position: absolute;
	bottom: -32px;
	transform: translateX(-50%);
	font-size: .62rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--gl-text-muted);
	white-space: nowrap;
}
.gl-mm2__x-title {
	margin-top: 26px;
	text-align: center;
	font-size: .7rem;
	font-weight: 700;
	color: var(--gl-primary);
	letter-spacing: .08em;
	text-transform: uppercase;
	grid-column: 2;
}

/* Dot — chip + name label */
.gl-mm2-dot {
	position: absolute;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	z-index: 2;
	transition: transform .15s, opacity .2s;
	text-decoration: none;
}
.gl-mm2-dot:hover { z-index: 50; transform: translate(-50%, -50%) scale(1.18); text-decoration: none; }
.gl-mm2-dot:hover .gl-mm2-dot__label { background: var(--gl-primary); color: var(--gl-white); box-shadow: 0 2px 6px rgba(13,31,60,.18); }
.gl-mm2-dot.is-dim { opacity: .1; pointer-events: none; }

.gl-mm2-dot__chip {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--gl-white);
	border: 2px solid var(--cc, #6B7C99);
	border-radius: 50%;
	box-shadow:
		0 0 0 3px var(--gl-white),
		0 2px 6px rgba(13,31,60,.10);
	overflow: hidden;
	transition: box-shadow .15s, transform .15s;
	position: relative;
	z-index: 2;
}
.gl-mm2-dot:hover .gl-mm2-dot__chip {
	box-shadow: 0 6px 16px rgba(13,31,60,.18);
	border-width: 2.5px;
}
.gl-mm2-dot__chip img {
	width: 22px;
	height: 22px;
	object-fit: contain;
	border-radius: 2px;
}
.gl-mm2-dot__initial {
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--cc, #6B7C99);
	line-height: 1;
}
.gl-mm2-dot__label {
	position: relative;
	z-index: 3;
	font-size: .66rem;
	font-weight: 700;
	color: var(--gl-primary);
	background: var(--gl-white);
	padding: 1px 6px;
	border-radius: 3px;
	letter-spacing: -0.005em;
	white-space: nowrap;
	max-width: 96px;
	overflow: hidden;
	text-overflow: ellipsis;
	box-shadow: 0 1px 0 rgba(13,31,60,.08);
	margin-top: 2px;
}

/* Tooltip */
.gl-mm2-dot__tip {
	position: absolute;
	bottom: calc(100% + 14px);
	left: 50%;
	transform: translateX(-50%);
	min-width: 260px;
	max-width: 300px;
	padding: 12px 14px 12px;
	background: var(--gl-white);
	color: var(--gl-text);
	border: 1px solid var(--gl-border);
	border-top: 3px solid var(--cc, #6B7C99);
	border-radius: 4px;
	font-size: .78rem;
	line-height: 1.5;
	box-shadow: 0 12px 32px rgba(13,31,60,.16);
	opacity: 0;
	pointer-events: none;
	transition: opacity .15s;
	display: flex;
	flex-direction: column;
	gap: 8px;
	text-align: left;
	z-index: 30;
}
.gl-mm2-dot__tip::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 7px solid transparent;
	border-top-color: var(--gl-white);
}
.gl-mm2-dot__tip-head {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.gl-mm2-dot__tip-head strong {
	font-size: 1rem;
	color: var(--gl-primary);
	font-weight: 700;
	letter-spacing: -0.01em;
}
.gl-mm2-dot__tip-cat {
	display: inline-block;
	padding: 2px 7px;
	font-size: .6rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--gl-white);
	border-radius: 2px;
}
.gl-mm2-dot__tip-meta {
	margin: 0;
	display: grid;
	gap: 4px;
}
.gl-mm2-dot__tip-meta div {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 8px;
	margin: 0;
}
.gl-mm2-dot__tip-meta dt {
	font-size: .62rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--gl-text-muted);
	margin: 0;
	padding-top: 1px;
}
.gl-mm2-dot__tip-meta dd {
	margin: 0;
	font-size: .76rem;
	color: var(--gl-text);
	font-weight: 500;
}
.gl-mm2-dot__tip-cta {
	display: block;
	margin-top: 4px;
	padding-top: 8px;
	border-top: 1px solid var(--gl-border);
	font-size: .72rem;
	font-weight: 700;
	color: var(--gl-accent);
	letter-spacing: .02em;
}
.gl-mm2-dot:hover .gl-mm2-dot__tip { opacity: 1; }

/* Footer */
.gl-mm2__foot {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 24px;
	align-items: center;
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid var(--gl-border);
}
.gl-mm2__foot-method {
	margin: 0;
	font-size: .76rem;
	color: var(--gl-text-muted);
	line-height: 1.55;
	max-width: 820px;
}
.gl-mm2__foot-method strong { color: var(--gl-primary); font-weight: 700; }
.gl-mm2__foot-method a { color: var(--gl-accent); font-weight: 600; text-decoration: none; }
.gl-mm2__foot-method a:hover { color: var(--gl-primary); }
.gl-mm2__foot-cta {
	font-size: .82rem;
	font-weight: 700;
	color: var(--gl-primary);
	text-decoration: none;
	white-space: nowrap;
	border-bottom: 2px solid var(--gl-accent);
	padding-bottom: 2px;
}
.gl-mm2__foot-cta:hover { color: var(--gl-accent); }

@media (max-width: 820px) {
	.gl-mm2__head { grid-template-columns: 1fr; gap: 16px; }
	.gl-mm2__plot { height: 480px; }
	.gl-mm2__plot-wrap { grid-template-columns: 70px 1fr; padding-left: 4px; }
	.gl-mm2-dot__chip { width: 36px; height: 36px; }
	.gl-mm2-dot__chip img { width: 22px; height: 22px; }
	.gl-mm2-dot__label { font-size: .58rem; max-width: 64px; }
	.gl-mm2__qcorner { font-size: .55rem; }
	.gl-mm2__x-label { font-size: .55rem; }
	.gl-mm2__foot { grid-template-columns: 1fr; }
}
