/*
 * Phantom Coast: Styles 1:1 aus _handoff/mockup.html.
 * Praefix pc-, BEM-artig. Werte unveraendert uebernommen.
 */

/* ---------- Basis ---------- */
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: #0b141b;
	font-family: 'Archivo', sans-serif;
	color: #e8f0f2;
}
a { color: #9fb8c4; text-decoration: none; }
a:hover { color: #d6e5ec; }

/* ---------- Navigation ---------- */
.pc-navbar {
	position: sticky;
	top: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 18px 40px;
	background: rgba(11,20,27,0.88);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid #1c2b34;
}
.admin-bar .pc-navbar { top: 32px; }
@media screen and (max-width: 782px) {
	.admin-bar .pc-navbar { top: 46px; }
}
.pc-navbar__brand {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.pc-navbar__title {
	font-variation-settings: 'wdth' 122;
	font-weight: 640;
	font-size: 15px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #e8f0f2;
}
.pc-navbar__sub {
	font-family: 'Space Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.16em;
	color: #7f9aa8;
}
.pc-navbar__links {
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
}
.pc-navbar__link {
	font-family: 'Space Mono', monospace;
	font-size: 12px;
	letter-spacing: 0.14em;
	padding-bottom: 3px;
	border-bottom: 1px solid transparent;
	transition: border-color 0.25s ease, color 0.25s ease;
}
.pc-navbar__link:hover {
	color: #eef6fa;
	border-bottom-color: #7fa3b2;
}
.pc-navbar__badge {
	font-family: 'Space Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.14em;
	color: #c9a86f;
	border: 1px solid #4a3c22;
	padding: 4px 10px;
}

/* Burger und Mobile-Menue: einzige Ergaenzung zum Mockup, nur unter 640px sichtbar. */
.pc-navbar__burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 34px;
	height: 30px;
	padding: 0 7px;
	margin: 0;
	background: transparent;
	border: 1px solid #2a4150;
	border-radius: 0;
	cursor: pointer;
	flex-shrink: 0;
}
.pc-navbar__burger-bar {
	display: block;
	width: 18px;
	height: 1px;
	background: #c2d5de;
	transition: transform 0.25s ease, opacity 0.25s ease;
}
.pc-navbar__burger[aria-expanded="true"] .pc-navbar__burger-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.pc-navbar__burger[aria-expanded="true"] .pc-navbar__burger-bar:nth-child(2) { opacity: 0; }
.pc-navbar__burger[aria-expanded="true"] .pc-navbar__burger-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.pc-navbar__menu {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	flex-direction: column;
	padding: 6px 20px 14px;
	background: rgba(11,20,27,0.88);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid #1c2b34;
}
.pc-navbar__menu.is-open { display: flex; }
.pc-navbar__menu-link {
	font-family: 'Space Mono', monospace;
	font-size: 12px;
	letter-spacing: 0.14em;
	padding: 13px 0;
	border-bottom: 1px solid #1c2b34;
	transition: color 0.25s ease;
}
.pc-navbar__menu-link:last-child { border-bottom: none; }
.pc-navbar__menu-link:hover { color: #eef6fa; }

/* ---------- Hero ---------- */
.pc-hero {
	position: relative;
	min-height: 88vh;
	background: #10222c;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
}
.pc-hero__bg {
	position: absolute;
	inset: -130px 0;
	will-change: transform;
}
.pc-hero__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 38%;
	filter: grayscale(1) contrast(1.08) brightness(0.92);
	mix-blend-mode: luminosity;
	opacity: 0.85;
}
.pc-hero__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(11,20,27,0.6) 0%, rgba(11,20,27,0.35) 45%, rgba(11,20,27,0.88) 80%, #0b141b 100%);
}
.pc-hero__inner {
	position: relative;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 120px 40px 90px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	text-align: center;
}
.pc-hero__kicker {
	font-family: 'Space Mono', monospace;
	font-size: 13px;
	letter-spacing: 0.42em;
	color: #d3e4ec;
	text-shadow: 0 1px 4px rgba(9,16,21,0.95), 0 0 18px rgba(9,16,21,0.9);
}
.pc-hero__title {
	margin: 0;
	font-variation-settings: 'wdth' 122;
	font-weight: 640;
	font-size: clamp(48px, 9vw, 110px);
	line-height: 0.98;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-shadow: 0 2px 24px rgba(9,16,21,0.7);
}
.pc-hero__subrow {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	justify-content: center;
}
.pc-hero__rule {
	width: 56px;
	height: 1px;
	background: #58798a;
}
.pc-hero__subtitle {
	font-family: 'Space Mono', monospace;
	font-size: 13px;
	letter-spacing: 0.18em;
	color: #c2d5de;
}
.pc-hero__meta {
	font-family: 'Space Mono', monospace;
	font-size: 12px;
	letter-spacing: 0.16em;
	color: #7f9aa8;
	margin-top: 14px;
}

/* ---------- Gemeinsame Bausteine ---------- */
.pc-band { border-top: 1px solid #1c2b34; }
.pc-band--alt {
	border-top: 1px solid #1c2b34;
	background: #0d1820;
}
.pc-sec {
	margin: 0 auto;
}
.pc-label {
	font-family: 'Space Mono', monospace;
	font-size: 12px;
	letter-spacing: 0.34em;
	color: #7fa3b2;
}
.pc-h2 {
	margin: 0;
	font-variation-settings: 'wdth' 110;
	font-weight: 600;
	font-size: clamp(28px, 4vw, 44px);
	line-height: 1.12;
}
.pc-h2--story { letter-spacing: 0.02em; }
.pc-h2--small {
	font-size: clamp(26px, 3.5vw, 38px);
	line-height: 1.15;
}
.pc-h2--partners { max-width: 720px; }
.pc-p {
	margin: 0;
	font-size: 17px;
	line-height: 1.75;
	color: #b8c8d1;
	text-wrap: pretty;
}
.pc-p--lg { font-size: 18px; }
.pc-p--team { line-height: 1.7; }
.pc-intro {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.pc-intro--team { max-width: 720px; }
.pc-intro--science { max-width: 760px; }
.pc-col {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

/* Kennzahlen */
.pc-stats {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
	margin-top: 12px;
}
.pc-stats--tight { margin-top: 4px; }
.pc-stat {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.pc-stat__value {
	font-family: 'Space Mono', monospace;
	font-size: 22px;
	color: #e8f0f2;
}
.pc-stat__value--lg { font-size: 26px; }
.pc-stat__label {
	font-family: 'Space Mono', monospace;
	font-size: 11px;
	letter-spacing: 0.14em;
	color: #7f9aa8;
}
a.pc-stat { text-decoration: none; }
a.pc-stat .pc-stat__value { transition: color 0.25s ease; }
a.pc-stat .pc-stat__arrow {
	margin-left: 0.35em;
	font-size: 0.75em;
	color: #7fa3b2;
	transition: color 0.25s ease;
}
a.pc-stat .pc-stat__label {
	display: inline-block;
	align-self: flex-start;
	border-bottom: 1px solid #3d5a68;
	padding-bottom: 3px;
	transition: color 0.25s ease, border-color 0.25s ease;
}
a.pc-stat:hover .pc-stat__value { color: #eef6fa; }
a.pc-stat:hover .pc-stat__arrow { color: #eef6fa; }
a.pc-stat:hover .pc-stat__label {
	color: #9fc0cf;
	border-bottom-color: #9fc0cf;
}

/* Portraits und Platzhalter */
.pc-figure {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.pc-figure__frame {
	width: 100%;
	aspect-ratio: 4 / 5;
	will-change: transform;
}
.pc-figure__caption {
	font-family: 'Space Mono', monospace;
	font-size: 11px;
	letter-spacing: 0.12em;
	color: #55707d;
}
.pc-img-slot {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border: 1px dashed #2a4150;
	background: #0f1c25;
}
.pc-img-slot__label {
	padding: 0 16px;
	font-family: 'Space Mono', monospace;
	font-size: 12px;
	letter-spacing: 0.34em;
	color: #7fa3b2;
	text-transform: uppercase;
	text-align: center;
}
.pc-portrait {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Karten */
.pc-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 24px;
}
.pc-cards--partners { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.pc-card {
	border: 1px solid #1c2b34;
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.pc-card__kicker {
	font-family: 'Space Mono', monospace;
	font-size: 11px;
	letter-spacing: 0.2em;
	color: #7f9aa8;
}
.pc-card__title {
	font-variation-settings: 'wdth' 110;
	font-weight: 620;
	font-size: 19px;
}
.pc-card__text {
	font-size: 15px;
	line-height: 1.6;
	color: #9fb2bd;
}
.pc-card__btn {
	font-family: 'Space Mono', monospace;
	font-size: 12px;
	letter-spacing: 0.12em;
	color: #d6e5ec;
	border: 1px solid #58798a;
	padding: 10px 18px;
	align-self: flex-start;
	margin-top: 8px;
	transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.pc-card__btn:hover {
	background: #7fa3b2;
	color: #0b141b;
	border-color: #7fa3b2;
	box-shadow: 0 0 0 4px rgba(127,163,178,0.18);
	transform: translateY(-1px);
}

/* ---------- Story ---------- */
.pc-sec--story {
	max-width: 860px;
	padding: 110px 40px 90px;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

/* ---------- Ben und Film (zweispaltig) ---------- */
.pc-sec--split {
	max-width: 1100px;
	padding: 100px 40px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 56px;
	align-items: start;
}
.pc-memoir {
	border: 1px solid #2a4150;
	background: rgba(20,38,48,0.5);
	padding: 20px 24px;
	display: flex;
	gap: 18px;
	align-items: center;
	flex-wrap: wrap;
	color: inherit;
}
a.pc-memoir { transition: border-color 0.25s ease; }
a.pc-memoir:hover { color: inherit; border-color: #58798a; }
.pc-memoir__inner {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.pc-memoir__kicker {
	font-family: 'Space Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.2em;
	color: #7f9aa8;
}
.pc-memoir__title {
	font-variation-settings: 'wdth' 110;
	font-weight: 620;
	font-size: 18px;
}
.pc-memoir__text {
	font-size: 14px;
	line-height: 1.6;
	color: #9fb2bd;
}

/* ---------- Memoir (Buch "Dead Reckoning") ---------- */
.pc-band--memoir {
	background: #0b141b;
}
.pc-sec--memoir {
	max-width: 1100px;
	padding: 100px 40px;
	display: flex;
	flex-direction: column;
	gap: 28px;
}
.pc-book {
	border: 1px solid #2a4150;
	background: rgba(20,38,48,0.5);
	padding: 40px;
}
.pc-book__grid {
	display: grid;
	grid-template-columns: minmax(200px, 280px) 1fr;
	gap: 48px;
	align-items: start;
}
.pc-book__cover {
	display: block;
	width: 100%;
	aspect-ratio: 2 / 3;
	box-shadow: 0 20px 50px rgba(0,0,0,0.45);
	color: inherit;
}
.pc-book__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pc-book__body {
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-width: 0;
}
.pc-book__kicker {
	font-family: 'Space Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.2em;
	color: #7f9aa8;
}
.pc-book__title {
	margin: 0;
	font-variation-settings: 'wdth' 110;
	font-weight: 620;
	font-size: 28px;
	line-height: 1.2;
}
.pc-book__byline {
	font-size: 14px;
	line-height: 1.6;
	color: #9fb2bd;
}
.pc-book__quote {
	margin: 8px 0 0;
	padding-left: 18px;
	border-left: 2px solid #58798a;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.pc-book__quote-text {
	margin: 0;
	font-family: 'Archivo', sans-serif;
	font-style: italic;
	font-size: 18px;
	line-height: 1.6;
	color: #d6e5ec;
	text-wrap: pretty;
}
.pc-book__quote-source {
	font-family: 'Space Mono', monospace;
	font-style: normal;
	font-size: 11px;
	letter-spacing: 0.12em;
	color: #7f9aa8;
}
.pc-book__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 8px;
}
.pc-book__buttons .pc-card__btn { margin-top: 0; }

/* ---------- Chart Band ---------- */
.pc-chart {
	position: relative;
	height: 520px;
	overflow: hidden;
	border-top: 1px solid #1c2b34;
	border-bottom: 1px solid #1c2b34;
	background: #0c1821;
}
.pc-chart__layer {
	position: absolute;
	inset: -120px 0;
	will-change: transform;
}
.pc-chart__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	filter: grayscale(1) brightness(0.6) contrast(1.15);
}
.pc-chart__tint {
	position: absolute;
	inset: 0;
	background: #10222c;
	mix-blend-mode: color;
}
.pc-chart__dim {
	position: absolute;
	inset: 0;
	background: rgba(12,24,33,0.35);
}
.pc-chart__marker {
	position: absolute;
	inset: -120px 0;
	will-change: transform;
	pointer-events: none;
}
.pc-chart__svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}
.pc-chart__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, #0b141b 0%, rgba(11,20,27,0.25) 22%, rgba(11,20,27,0.12) 60%, rgba(11,20,27,0.55) 86%, #0b141b 100%);
	pointer-events: none;
}
.pc-chart__labels {
	position: absolute;
	inset: 0;
	will-change: transform;
	pointer-events: none;
}
.pc-chart__legend {
	position: absolute;
	left: 50%;
	top: 34px;
	transform: translateX(28%);
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.pc-chart__legend-title {
	font-family: 'Space Mono', monospace;
	font-size: 13px;
	letter-spacing: 0.2em;
	color: #e4eef3;
	text-shadow: 0 1px 6px rgba(9,16,21,0.9);
}
.pc-chart__legend-sub {
	font-family: 'Space Mono', monospace;
	font-size: 11px;
	letter-spacing: 0.12em;
	color: #a9c9d8;
	text-shadow: 0 1px 6px rgba(9,16,21,0.9);
}
.pc-chart__credit {
	position: absolute;
	right: 40px;
	bottom: 22px;
}
.pc-chart__credit-text {
	font-family: 'Space Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.12em;
	color: #54707d;
}

/* ---------- Team ---------- */
.pc-sec--team {
	max-width: 1100px;
	padding: 110px 40px 90px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.pc-team__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 28px;
}
.pc-member {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.pc-member__frame {
	width: 100%;
	aspect-ratio: 4 / 5;
}
.pc-member__meta {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.pc-member__name {
	font-variation-settings: 'wdth' 110;
	font-weight: 620;
	font-size: 19px;
}
.pc-member__role {
	font-family: 'Space Mono', monospace;
	font-size: 11px;
	letter-spacing: 0.12em;
	color: #7f9aa8;
	line-height: 1.6;
}

/* ---------- Science ---------- */
.pc-sec--science {
	max-width: 1100px;
	padding: 100px 40px;
	display: flex;
	flex-direction: column;
	gap: 36px;
}
.pc-cta {
	border: 1px solid #2a4150;
	background: rgba(20,38,48,0.5);
	padding: 28px 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}
.pc-cta__body {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.pc-cta__title {
	font-variation-settings: 'wdth' 110;
	font-weight: 620;
	font-size: 19px;
}
.pc-cta__text {
	font-size: 15px;
	line-height: 1.6;
	color: #9fb2bd;
}
.pc-cta__btn {
	font-family: 'Space Mono', monospace;
	font-size: 13px;
	letter-spacing: 0.1em;
	color: #d6e5ec;
	border: 1px solid #58798a;
	padding: 12px 22px;
	white-space: nowrap;
	transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.pc-cta__btn:hover {
	background: #7fa3b2;
	color: #0b141b;
	border-color: #7fa3b2;
	box-shadow: 0 0 0 4px rgba(127,163,178,0.18);
	transform: translateY(-1px);
}

/* ---------- Partners ---------- */
.pc-sec--partners {
	max-width: 1100px;
	padding: 90px 40px;
	display: flex;
	flex-direction: column;
	gap: 28px;
}
.pc-note {
	font-family: 'Space Mono', monospace;
	font-size: 11px;
	letter-spacing: 0.12em;
	color: #55707d;
}

/* ---------- Contact und Footer ---------- */
.pc-sec--contact {
	max-width: 1100px;
	padding: 90px 40px 60px;
	display: flex;
	flex-direction: column;
	gap: 36px;
}
.pc-contact__links {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
	margin-top: 8px;
}
.pc-contact__link {
	font-family: 'Space Mono', monospace;
	font-size: 15px;
	letter-spacing: 0.06em;
	border-bottom: 1px solid #3d5a68;
	padding-bottom: 4px;
	transition: border-color 0.25s ease, color 0.25s ease;
}
.pc-contact__link:hover {
	color: #eef6fa;
	border-bottom-color: #9fc0cf;
}
.pc-footer {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 24px;
	flex-wrap: wrap;
	border-top: 1px solid #1c2b34;
	padding-top: 28px;
}
.pc-footer__brand {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.pc-footer__title {
	font-variation-settings: 'wdth' 122;
	font-weight: 640;
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.pc-footer__sub {
	font-family: 'Space Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.16em;
	color: #55707d;
}
.pc-footer__right {
	font-family: 'Space Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.14em;
	color: #55707d;
}

/* ---------- Breakpoints (1:1 aus dem Mockup) ---------- */
/* Absicherung ohne Badge: sieben Links bleiben bis zum Burger bei 640px einzeilig. */
@media (max-width: 1100px) {
	.pc-navbar__links { gap: 18px; }
}
@media (max-width: 900px) {
	.pc-book__grid { grid-template-columns: 1fr; gap: 32px; }
	.pc-book__cover { max-width: 240px; }
	.pc-sec { padding-left: 28px !important; padding-right: 28px !important; padding-top: 72px !important; padding-bottom: 60px !important; }
	.pc-navbar { padding: 14px 20px !important; }
	.pc-navbar__links { gap: 14px !important; }
	.pc-chart { height: 420px !important; }
}
@media (max-width: 640px) {
	.pc-book { padding: 24px; }
	.pc-sec { padding-left: 20px !important; padding-right: 20px !important; padding-top: 52px !important; padding-bottom: 44px !important; }
	.pc-navbar__links .pc-navbar__link { display: none !important; }
	.pc-navbar__sub { display: none !important; }
	.pc-navbar__burger { display: flex; }
	.pc-hero__inner { padding: 90px 20px 64px !important; }
	.pc-chart { height: 340px !important; }
	.pc-chart__legend { left: auto !important; right: 16px !important; transform: none !important; top: 20px !important; align-items: flex-end; text-align: right; }
	.pc-chart__credit { left: 16px !important; right: auto !important; }
	.pc-stats { gap: 22px !important; }
	.pc-hero__meta { display: none !important; }
}
