/* ── hero-demo.css — GEO-Signature-Hero: Text links, KI-Ranking rechts ⭐ ──────
   Ersetzt die orbitale System-Map. Ein Balken-Ranking „Am häufigsten von KI
   empfohlen" zeigt auf einen Blick: eure Marke steht in KI-Antworten an erster
   Stelle, der Wettbewerb dahinter — die Kernaussage ohne Lesen erfassbar.
   Übernimmt Button-, Typo- und Token-DNA; Karte wie im DNA-Radienschema.
   ──────────────────────────────────────────────────────────────────────────── */

.hero-demo {
	padding-block: 3rem 4rem;
}

.hero-demo__inner {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	align-items: center;
	gap: 3.5rem;
}

.hero-demo__content {
	min-width: 0;
}

.hero-demo__eyebrow {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 0.75rem;
	margin: 0 0 1.25rem;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: var(--fs-sm);
	color: var(--c-text-muted);
}

.hero-demo__eyebrow a {
	color: var(--c-link);
}

.hero-demo__eyebrow span {
	color: var(--c-border);
}

.hero-demo__title {
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	font-weight: 700;
	letter-spacing: -0.01em;
	margin-bottom: 0.4em;
}

.hero-demo__subline {
	font-size: 1.1875rem;
	color: var(--c-text-muted);
	max-width: 34rem;
	margin: 0 0 1.75rem;
}

.hero-demo__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem 2.5rem;
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
}

.hero-demo__stat {
	display: flex;
	flex-direction: column;
	max-width: 15rem;
}

.hero-demo__stat-num {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 2.25rem;
	line-height: 1.05;
	color: var(--c-primary);
}

.hero-demo__stat-desc {
	margin-top: 0.35rem;
	font-size: var(--fs-sm);
	line-height: 1.4;
	color: var(--c-text-muted);
}

.hero-demo__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem 1.25rem;
}

.hero-demo__visual {
	min-width: 0;
}

/* GEO-Ranking — „Am häufigsten von KI empfohlen": eine Marke hervorgehoben,
   Wettbewerb neutral. Highlight-eine-Marke-Muster (dataviz), Oliv sparsam.
   Balkenlängen sind illustrativ und fest im CSS (keine Inline-Styles). */

.geo-rank {
	margin: 0;
	background: var(--c-bg);
	border: 0.0625rem solid var(--c-border-light);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card-hover);
	padding: 1.75rem;
}

.geo-rank__title {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: var(--fs-h3);
	line-height: 1.25;
	color: var(--c-primary);
	margin: 0 0 1.5rem;
}

.geo-rank__title-icon {
	flex-shrink: 0;
	color: var(--c-accent-dark);
}

.geo-rank__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1.125rem;
}

.geo-rank__row {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.geo-rank__head {
	display: flex;
	align-items: center;
	gap: 0.625rem;
}

.geo-rank__pos {
	flex-shrink: 0;
	width: 1.375rem;
	height: 1.375rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-full);
	background: var(--c-border-light);
	color: var(--c-text-muted);
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 0.75rem;
}

.geo-rank__name {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 0.9375rem;
	color: var(--c-text-muted);
}

.geo-rank__tag {
	margin-left: auto;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 0.6875rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--c-link);
}

.geo-rank__bar {
	display: block;
	height: 0.625rem;
	border-radius: var(--radius-full);
	background: rgb(var(--c-primary-rgb) / 0.22);
}

/* Balkenlängen — illustrativ, eure Marke klar führend */
.geo-rank__row:nth-child(1) .geo-rank__bar { width: 88%; }
.geo-rank__row:nth-child(2) .geo-rank__bar { width: 46%; }
.geo-rank__row:nth-child(3) .geo-rank__bar { width: 32%; }
.geo-rank__row:nth-child(4) .geo-rank__bar { width: 21%; }

/* Lead-Row = eure Marke: hervorgehoben */
.geo-rank__row--lead .geo-rank__pos {
	background: var(--c-primary);
	color: var(--c-white);
}

.geo-rank__row--lead .geo-rank__name {
	color: var(--c-text);
}

.geo-rank__row--lead .geo-rank__bar {
	background: var(--c-accent);
	height: 0.75rem;
}

.geo-rank__hint {
	margin: 1.75rem 0 0;
	padding-top: 1.25rem;
	border-top: 0.0625rem solid var(--c-border-light);
	font-size: var(--fs-sm);
	color: var(--c-text-muted);
	text-align: center;
}

@media (max-width: 64rem) {
	.hero-demo__inner {
		grid-template-columns: 1fr;
		gap: 2.25rem;
	}

	.hero-demo__visual {
		max-width: 34rem;
		margin-inline: auto;
		width: 100%;
	}
}

@media (max-width: 30rem) {
	.hero-demo__actions {
		flex-direction: column;
		align-items: stretch;
		gap: 0.75rem;
	}
}
