:root {
	--aidp-black: #020405;
	--aidp-void: #05090b;
	--aidp-ink: #091116;
	--aidp-panel: rgba(5, 10, 13, 0.66);
	--aidp-panel-heavy: rgba(6, 11, 14, 0.9);
	--aidp-line: rgba(172, 196, 205, 0.18);
	--aidp-line-soft: rgba(172, 196, 205, 0.08);
	--aidp-red: #ff3028;
	--aidp-red-hot: #ff5146;
	--aidp-red-dim: rgba(255, 48, 40, 0.2);
	--aidp-ember: #ff7a35;
	--aidp-cyan: #8bdce7;
	--aidp-green: #2ee979;
	--aidp-text: #e6edf0;
	--aidp-muted: #9aa8ad;
	--aidp-dim: #647176;
	--aidp-max: 1860px;
	--aidp-edge: clamp(14px, 2.2vw, 36px);
	--aidp-mono: "Roboto Mono", Consolas, monospace;
	--aidp-display: "Rajdhani", "Arial Narrow", sans-serif;
	--aidp-sans: "Inter", "Segoe UI", Arial, sans-serif;
}

html {
	scroll-behavior: smooth;
	background: var(--aidp-black);
}

body.aidp-body {
	margin: 0;
	background: var(--aidp-black);
	color: var(--aidp-text);
	font-family: var(--aidp-sans);
}

.aidp-body * {
	box-sizing: border-box;
}

.aidp-body a {
	color: inherit;
	text-decoration: none;
}

.aidp-skip-link {
	position: fixed;
	top: 14px;
	left: 14px;
	z-index: 1000;
	padding: 10px 14px;
	background: var(--aidp-red);
	color: #fff;
	transform: translateY(-150%);
	transition: transform 180ms ease;
}

.aidp-skip-link:focus {
	transform: translateY(0);
}

.aidp-home {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
	background:
		radial-gradient(circle at 82% 8%, rgba(255, 48, 40, 0.13), transparent 34rem),
		radial-gradient(circle at 16% 18%, rgba(139, 220, 231, 0.08), transparent 30rem),
		linear-gradient(180deg, #020405 0%, #071014 44%, #020405 100%);
	isolation: isolate;
}

.aidp-home::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -2;
	background-image:
		linear-gradient(rgba(139, 220, 231, 0.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(139, 220, 231, 0.048) 1px, transparent 1px),
		linear-gradient(rgba(255, 48, 40, 0.036) 1px, transparent 1px);
	background-size: 92px 92px, 92px 92px, 23px 23px;
	opacity: 0.52;
	pointer-events: none;
}

.aidp-home::after {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 40;
	background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 5px);
	mix-blend-mode: screen;
	opacity: 0.14;
	pointer-events: none;
}

.aidp-screen-noise {
	position: fixed;
	inset: 0;
	z-index: 39;
	background:
		radial-gradient(circle at 50% 50%, transparent 0 48%, rgba(0, 0, 0, 0.35) 82%, rgba(0, 0, 0, 0.82) 100%),
		linear-gradient(90deg, rgba(255, 48, 40, 0.035), transparent 28%, transparent 72%, rgba(139, 220, 231, 0.025));
	pointer-events: none;
}

.aidp-interface-frame {
	position: fixed;
	inset: 24px;
	z-index: 38;
	border: 1px solid rgba(172, 196, 205, 0.13);
	box-shadow: inset 0 0 0 1px rgba(255, 48, 40, 0.035), inset 0 0 80px rgba(0, 0, 0, 0.34);
	pointer-events: none;
}

.aidp-container,
.aidp-site-shell {
	width: min(calc(100% - (var(--aidp-edge) * 2)), var(--aidp-max));
	margin-inline: auto;
}

.aidp-site-shell {
	position: fixed;
	top: 24px;
	left: 50%;
	z-index: 60;
	display: grid;
	grid-template-columns: 330px 1fr 220px;
	align-items: stretch;
	height: 94px;
	border: 1px solid var(--aidp-line);
	background:
		linear-gradient(180deg, rgba(4, 8, 10, 0.74), rgba(4, 8, 10, 0.52)),
		rgba(3, 6, 8, 0.72);
	backdrop-filter: blur(14px);
	transform: translateX(-50%);
}

body.admin-bar .aidp-site-shell {
	top: 56px;
}

.aidp-site-shell::before,
.aidp-site-shell::after {
	content: "";
	position: absolute;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--aidp-red), transparent);
	opacity: 0.8;
}

.aidp-site-shell::before {
	left: 240px;
	top: 50%;
	width: 120px;
}

.aidp-site-shell::after {
	right: 260px;
	bottom: 20px;
	width: 94px;
}

.aidp-brand {
	position: relative;
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 0 30px;
	border-right: 1px solid var(--aidp-line);
}

.aidp-brand::after {
	content: "";
	position: absolute;
	right: -28px;
	bottom: -1px;
	width: 58px;
	height: 28px;
	border-right: 1px solid var(--aidp-line);
	border-bottom: 1px solid var(--aidp-line);
	transform: skewX(-42deg);
	background: rgba(3, 6, 8, 0.5);
}

.aidp-brand-mark {
	position: relative;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border: 1px solid rgba(255, 48, 40, 0.68);
	border-radius: 50%;
	box-shadow: 0 0 30px rgba(255, 48, 40, 0.2);
}

.aidp-brand-mark::before {
	content: "";
	width: 38px;
	height: 38px;
	border: 2px solid var(--aidp-red);
	clip-path: polygon(50% 0, 100% 88%, 0 88%);
}

.aidp-brand-mark span {
	position: absolute;
	width: 10px;
	height: 10px;
	border: 2px solid var(--aidp-red);
	border-radius: 50%;
}

.aidp-brand-text {
	color: #f3f7f8;
	font-family: var(--aidp-display);
	font-size: 24px;
	font-weight: 800;
	line-height: 0.92;
	letter-spacing: 2.2px;
	text-transform: uppercase;
}

.aidp-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(24px, 3.7vw, 70px);
	padding-inline: 34px;
	color: #c2cbd0;
	font-family: var(--aidp-mono);
	font-size: 12px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}

.aidp-nav a {
	position: relative;
	display: inline-flex;
	align-items: center;
	height: 100%;
	opacity: 0.86;
	transition: color 160ms ease, opacity 160ms ease;
}

.aidp-nav a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	height: 2px;
	background: var(--aidp-red);
	box-shadow: 0 0 18px rgba(255, 48, 40, 0.58);
	transform: translateX(-50%);
	transition: width 180ms ease;
}

.aidp-nav a:hover,
.aidp-nav a:focus-visible {
	color: #fff;
	opacity: 1;
}

.aidp-nav a:hover::after,
.aidp-nav a:focus-visible::after {
	width: 100%;
}

.aidp-system-status {
	position: relative;
	display: grid;
	align-content: center;
	padding: 0 56px 0 28px;
	border-left: 1px solid var(--aidp-line);
	font-family: var(--aidp-mono);
	text-transform: uppercase;
}

.aidp-system-status span {
	color: var(--aidp-muted);
	font-size: 11px;
	letter-spacing: 1px;
}

.aidp-system-status strong {
	margin-top: 5px;
	color: var(--aidp-green);
	font-size: 13px;
	letter-spacing: 1.8px;
}

.aidp-system-status i {
	position: absolute;
	right: 30px;
	top: 50%;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--aidp-green);
	box-shadow: 0 0 20px var(--aidp-green);
	transform: translateY(-50%);
}

.aidp-hero {
	position: relative;
	min-height: 850px;
	padding: 142px 0 42px;
	background-image:
		linear-gradient(90deg, rgba(2, 4, 5, 0.76) 0%, rgba(2, 4, 5, 0.42) 28%, rgba(2, 4, 5, 0.08) 54%, rgba(2, 4, 5, 0.5) 100%),
		linear-gradient(180deg, rgba(2, 4, 5, 0.04) 0%, rgba(2, 4, 5, 0.16) 42%, rgba(2, 4, 5, 0.78) 100%),
		var(--aidp-hero-image);
	background-position: center, center, center 36%;
	background-size: cover;
}

.aidp-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 66% 35%, rgba(255, 48, 40, 0.1), transparent 26rem),
		radial-gradient(circle at 52% 13%, rgba(255, 255, 255, 0.16), transparent 22rem),
		linear-gradient(180deg, transparent 0%, rgba(2, 4, 5, 0.1) 58%, rgba(2, 4, 5, 0.9) 100%);
	pointer-events: none;
}

.aidp-hero-grid,
.aidp-hero-vignette {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.aidp-hero-grid {
	background-image:
		linear-gradient(rgba(139, 220, 231, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(139, 220, 231, 0.06) 1px, transparent 1px);
	background-size: 86px 86px;
	mask-image: linear-gradient(180deg, #000, transparent 86%);
	opacity: 0.52;
}

.aidp-hero-vignette {
	background: linear-gradient(90deg, rgba(2, 4, 5, 0.34), transparent 40%, rgba(2, 4, 5, 0.2));
}

.aidp-hero-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(520px, 0.9fr) minmax(340px, 0.44fr);
	align-items: center;
	gap: clamp(56px, 7vw, 132px);
	min-height: 620px;
}

.aidp-hero-copy {
	padding-top: 10px;
}

.aidp-kicker,
.aidp-section-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	color: var(--aidp-red);
	font-family: var(--aidp-mono);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.7px;
	text-transform: uppercase;
}

.aidp-kicker span {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--aidp-red);
	box-shadow: 0 0 18px var(--aidp-red);
}

.aidp-hero h1 {
	max-width: 650px;
	margin: 0;
	color: #eef3f5;
	font-family: var(--aidp-display);
	font-size: clamp(54px, 5.1vw, 88px);
	font-weight: 800;
	line-height: 0.92;
	letter-spacing: 0;
	text-transform: uppercase;
	text-shadow: 0 10px 40px rgba(0, 0, 0, 0.76);
}

.aidp-hero-lede {
	max-width: 760px;
	margin: 28px 0 0;
	color: #d4dcdf;
	font-family: var(--aidp-mono);
	font-size: clamp(15px, 1.25vw, 18px);
	line-height: 1.75;
}

.aidp-hero-mantra {
	margin: 18px 0 0;
	color: #f1f5f6;
	font-family: var(--aidp-mono);
	font-size: clamp(16px, 1.4vw, 21px);
	letter-spacing: 0.5px;
}

.aidp-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.aidp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 22px;
	border: 1px solid rgba(172, 196, 205, 0.24);
	background: rgba(3, 6, 8, 0.48);
	color: #edf4f5;
	font-family: var(--aidp-mono);
	font-size: 11px;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.aidp-button-primary {
	background: linear-gradient(180deg, rgba(255, 64, 54, 0.94), rgba(160, 18, 18, 0.94));
	border-color: rgba(255, 98, 75, 0.75);
	box-shadow: 0 0 36px rgba(255, 48, 40, 0.28);
}

.aidp-button:hover,
.aidp-button:focus-visible {
	border-color: rgba(255, 48, 40, 0.72);
	box-shadow: 0 0 26px rgba(255, 48, 40, 0.16);
}

.aidp-telemetry-strip {
	display: inline-grid;
	grid-template-columns: repeat(3, auto);
	margin-top: 28px;
	border: 1px solid rgba(172, 196, 205, 0.22);
	background: rgba(1, 3, 4, 0.48);
	color: var(--aidp-muted);
	font-family: var(--aidp-mono);
	font-size: 12px;
	text-transform: uppercase;
}

.aidp-telemetry-strip span {
	padding: 13px 18px;
	border-right: 1px solid rgba(172, 196, 205, 0.16);
	white-space: nowrap;
}

.aidp-telemetry-strip span:last-child {
	border-right: 0;
}

.aidp-telemetry-strip strong {
	color: var(--aidp-red);
}

.aidp-oracle-card {
	--aidp-pointer-x: 50%;
	--aidp-pointer-y: 0%;
	position: relative;
	justify-self: end;
	width: min(100%, 480px);
	margin-top: 18px;
	padding: 20px;
	border: 1px solid rgba(172, 196, 205, 0.18);
	background:
		radial-gradient(circle at var(--aidp-pointer-x) var(--aidp-pointer-y), rgba(255, 48, 40, 0.18), transparent 22rem),
		linear-gradient(180deg, rgba(27, 12, 14, 0.72), rgba(3, 7, 9, 0.82));
	box-shadow: 0 38px 110px rgba(0, 0, 0, 0.64), inset 0 0 0 1px rgba(255, 48, 40, 0.08);
	backdrop-filter: blur(7px);
	clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
}

.aidp-oracle-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 5px);
	opacity: 0.24;
	pointer-events: none;
}

.aidp-card-chrome {
	position: absolute;
	inset: 14px;
	border: 1px solid rgba(255, 48, 40, 0.2);
	pointer-events: none;
}

.aidp-card-chrome::before,
.aidp-card-chrome::after {
	content: "";
	position: absolute;
	width: 120px;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--aidp-red), transparent);
}

.aidp-card-chrome::before {
	top: -1px;
	left: 22px;
}

.aidp-card-chrome::after {
	right: 22px;
	bottom: -1px;
}

.aidp-oracle-card > *:not(.aidp-card-chrome) {
	position: relative;
	z-index: 1;
}

.aidp-oracle-card-head,
.aidp-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-family: var(--aidp-mono);
	text-transform: uppercase;
}

.aidp-oracle-card-head {
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(172, 196, 205, 0.15);
}

.aidp-oracle-card-head p {
	margin: 0;
	color: #fff;
	font-size: 15px;
	letter-spacing: 1px;
}

.aidp-oracle-card-head span,
.aidp-card-footer {
	color: var(--aidp-muted);
	font-size: 11px;
	letter-spacing: 1px;
}

.aidp-threat-meter {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6px;
	margin: 16px 0;
}

.aidp-threat-meter div {
	min-height: 62px;
	padding: 10px;
	border: 1px solid rgba(172, 196, 205, 0.14);
	background: rgba(0, 0, 0, 0.22);
}

.aidp-threat-meter span {
	display: block;
	color: var(--aidp-dim);
	font-family: var(--aidp-mono);
	font-size: 9px;
	text-transform: uppercase;
}

.aidp-threat-meter strong {
	display: block;
	margin-top: 7px;
	color: var(--aidp-red);
	font-family: var(--aidp-display);
	font-size: 22px;
	line-height: 1;
	text-transform: uppercase;
}

.aidp-prophecy-shortcode {
	display: grid;
	min-height: 220px;
}

.aidp-oracle-card .aidp-today-prophecy {
	display: grid;
	gap: 14px;
}

.aidp-oracle-card .aidp-today-prophecy h3 {
	margin: 0;
	padding: 12px 0 10px;
	color: #f4f7f8;
	font-family: var(--aidp-display);
	font-size: clamp(25px, 2.1vw, 34px);
	font-weight: 800;
	line-height: 0.96;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	text-shadow: 0 0 18px rgba(255, 48, 40, 0.2), 0 2px 18px rgba(0, 0, 0, 0.82);
}

.aidp-oracle-card .aidp-today-prophecy p {
	margin: 0;
	color: rgba(242, 246, 247, 0.92);
	font-family: var(--aidp-mono);
	font-size: 15px;
	line-height: 1.62;
}

.aidp-oracle-card .aidp-read-link {
	width: fit-content;
	color: #fff;
	font-family: var(--aidp-mono);
	font-size: 13px;
	text-decoration: none;
}

.aidp-oracle-card .aidp-read-link:hover,
.aidp-oracle-card .aidp-read-link:focus-visible {
	color: var(--aidp-red);
	text-shadow: 0 0 16px rgba(255, 48, 40, 0.28);
}

.aidp-risk-report-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: min(100%, 360px);
	min-height: 58px;
	margin-top: 10px;
	border: 1px solid rgba(255, 48, 40, 0.72);
	color: var(--aidp-red);
	background:
		linear-gradient(180deg, rgba(255, 48, 40, 0.16), rgba(45, 4, 6, 0.34)),
		rgba(8, 4, 5, 0.72);
	font-family: var(--aidp-display);
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	box-shadow: inset 0 0 24px rgba(255, 48, 40, 0.06);
	transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.aidp-risk-report-cta:hover,
.aidp-risk-report-cta:focus-visible {
	color: #fff;
	background-color: rgba(255, 48, 40, 0.12);
	box-shadow: 0 0 22px rgba(255, 48, 40, 0.22);
}

.aidp-card-footer {
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px solid rgba(172, 196, 205, 0.12);
}

.aidp-pulse-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--aidp-red);
	box-shadow: 0 0 20px var(--aidp-red);
}

.aidp-section {
	position: relative;
	margin-top: -1px;
	padding: 42px 0;
}

.aidp-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(139, 220, 231, 0.026), transparent);
	pointer-events: none;
}

.aidp-analysis-section {
	z-index: 3;
	margin-top: -58px;
	padding-top: 0;
}

.aidp-analysis-section .aidp-container,
.aidp-risk-section .aidp-container,
.aidp-archive-section .aidp-container,
.aidp-disclaimer-section .aidp-container {
	position: relative;
}

.aidp-analysis-section .aidp-container::before,
.aidp-risk-section .aidp-container::before,
.aidp-archive-panel::before,
.aidp-disclaimer-panel::before {
	content: "";
	position: absolute;
	inset: 0;
	border: 1px solid rgba(172, 196, 205, 0.13);
	pointer-events: none;
}

.aidp-analysis-header,
.aidp-section-header {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 0;
	padding: 22px 28px 14px;
	background: rgba(2, 5, 7, 0.62);
}

.aidp-analysis-header {
	padding: 42px 28px 16px;
}

.aidp-headlines-header {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 42px 28px 16px;
	background: rgba(2, 5, 7, 0.62);
}

.aidp-headlines-header h2 {
	margin: 0;
	color: #f3f7f8;
	font-family: var(--aidp-display);
	font-size: clamp(24px, 2.6vw, 42px);
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}

.aidp-headlines-date {
	display: inline-flex;
	margin-top: 7px;
	color: var(--aidp-red);
	font-family: var(--aidp-mono);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.7px;
	text-transform: uppercase;
}

.aidp-full-analysis-link {
	flex: 0 0 auto;
	color: #dfe7e9;
	font-family: var(--aidp-mono);
	font-size: 11px;
	letter-spacing: 1.1px;
	text-transform: uppercase;
}

.aidp-headlines-shortcode-wrap {
	position: relative;
	z-index: 1;
	padding: 0 28px 28px;
	background: linear-gradient(180deg, rgba(2, 5, 7, 0.6), rgba(2, 5, 7, 0.76));
}

.aidp-headlines-fallback-grid,
.aidp-headlines-shortcode-wrap .aidp-yesterday-headlines,
.aidp-headlines-shortcode-wrap .aidp-headlines-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	align-items: stretch;
	gap: 12px;
}

.aidp-headline-fallback-card,
.aidp-headlines-shortcode-wrap .aidp-headline-card,
.aidp-headlines-shortcode-wrap .aidp-yesterday-headline-card {
	display: flex;
	min-height: 198px;
	flex-direction: column;
	padding: 18px 18px 15px;
	border: 1px solid rgba(120, 15, 18, 0.85);
	background: rgba(4, 8, 12, 0.72);
	box-shadow: inset 0 0 0 1px rgba(255, 40, 40, 0.08);
}

.aidp-headline-card-head,
.aidp-headlines-shortcode-wrap .aidp-headline-card-head,
.aidp-headlines-shortcode-wrap .aidp-headline-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}

.aidp-headline-icon,
.aidp-headlines-shortcode-wrap svg {
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	color: var(--aidp-red);
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
}

.aidp-headline-fallback-card h3,
.aidp-headlines-shortcode-wrap .aidp-headline-category,
.aidp-headlines-shortcode-wrap h3 {
	margin: 0;
	color: var(--aidp-red);
	font-family: var(--aidp-mono);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.aidp-headline-fallback-card p,
.aidp-headlines-shortcode-wrap .aidp-headline-text,
.aidp-headlines-shortcode-wrap .aidp-headline-title,
.aidp-headlines-shortcode-wrap p {
	margin: 0;
	color: rgba(245, 245, 245, 0.9);
	font-family: var(--aidp-mono);
	font-size: 15.5px;
	line-height: 1.65;
}

.aidp-headline-fallback-card span,
.aidp-headline-fallback-card .aidp-headline-source,
.aidp-headlines-shortcode-wrap .aidp-headline-source,
.aidp-headlines-shortcode-wrap cite {
	display: inline-flex;
	width: fit-content;
	margin-top: auto;
	padding-top: 18px;
	color: rgba(200, 200, 200, 0.62);
	font-family: var(--aidp-mono);
	font-size: 12px;
	font-style: normal;
	line-height: 1.4;
}

.aidp-headline-fallback-card .aidp-headline-source:hover,
.aidp-headline-fallback-card .aidp-headline-source:focus-visible,
.aidp-headlines-shortcode-wrap .aidp-headline-source:hover,
.aidp-headlines-shortcode-wrap .aidp-headline-source:focus-visible {
	color: rgba(255, 76, 68, 0.95);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.aidp-headlines-shortcode-wrap .aidp-shortcode-zone {
	min-height: 0;
	padding: 0;
	border: 0;
	background: transparent;
}

.aidp-section-header h2 {
	margin: 0;
	color: #f3f7f8;
	font-family: var(--aidp-display);
	font-size: clamp(24px, 2.6vw, 42px);
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}

.aidp-section-kicker span {
	margin-left: 8px;
}

.aidp-terminal-link,
.aidp-data-badge {
	flex: 0 0 auto;
	color: #dfe7e9;
	font-family: var(--aidp-mono);
	font-size: 11px;
	letter-spacing: 1.1px;
	text-transform: uppercase;
}

.aidp-terminal-link::after {
	content: " ->";
	color: var(--aidp-red);
}

.aidp-analysis-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	align-items: stretch;
	gap: 12px;
	padding: 0 28px 28px;
	background: linear-gradient(180deg, rgba(2, 5, 7, 0.6), rgba(2, 5, 7, 0.76));
}

.aidp-intel-card,
.aidp-watchlist,
.aidp-archive-panel,
.aidp-disclaimer-panel {
	--aidp-pointer-x: 50%;
	--aidp-pointer-y: 0%;
	position: relative;
	border: 1px solid rgba(172, 196, 205, 0.14);
	background:
		radial-gradient(circle at var(--aidp-pointer-x) var(--aidp-pointer-y), rgba(255, 48, 40, 0.12), transparent 17rem),
		rgba(4, 10, 13, 0.58);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.018);
}

.aidp-intel-card {
	display: flex;
	min-height: 250px;
	flex-direction: column;
	padding: 22px 22px 18px;
	border: 1px solid rgba(120, 15, 18, 0.85);
	background:
		linear-gradient(180deg, rgba(8, 16, 19, 0.72), rgba(3, 8, 10, 0.82)),
		rgba(4, 10, 13, 0.58);
	box-shadow: inset 0 0 0 1px rgba(255, 40, 40, 0.08);
	transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.aidp-intel-card:hover,
.aidp-intel-card:focus-within {
	border-color: rgba(150, 24, 24, 0.92);
	box-shadow: inset 0 0 0 1px rgba(255, 40, 40, 0.1), 0 0 28px rgba(80, 6, 8, 0.28);
}

.aidp-card-offset {
	margin-top: 0;
}

.aidp-card-index {
	display: block;
	margin-bottom: 20px;
	color: rgba(139, 220, 231, 0.7);
	font-family: var(--aidp-mono);
	font-size: 11px;
}

.aidp-intel-card h3 {
	margin: 0;
	color: var(--aidp-red);
	font-family: var(--aidp-mono);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.aidp-watchlist h3 {
	margin: 0 0 14px;
	color: #fff;
	font-family: var(--aidp-display);
	font-size: 25px;
	line-height: 1;
	letter-spacing: 0.8px;
	text-transform: uppercase;
}

.aidp-intel-card-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}

.aidp-intel-icon {
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	color: var(--aidp-red);
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
}

.aidp-analysis-section .aidp-shortcode-zone {
	flex: 1;
	min-height: 0;
	padding: 0;
	border: 0;
	background: transparent;
}

.aidp-analysis-section .aidp-shortcode-demo {
	border: 0;
	background: transparent;
}

.aidp-analysis-section .aidp-demo-cluster {
	min-height: 0;
	height: 100%;
}

.aidp-analysis-section .aidp-demo-cluster p {
	display: none;
}

.aidp-analysis-section .aidp-demo-cluster strong {
	color: rgba(245, 245, 245, 0.88);
	font: 15.5px/1.65 var(--aidp-mono);
}

.aidp-analysis-section .aidp-demo-cluster span {
	margin-top: auto;
	padding-top: 18px;
	color: rgba(180, 191, 196, 0.72);
	font: 11px/1.4 var(--aidp-mono);
	letter-spacing: 0;
	text-transform: none;
}

.aidp-risk-section {
	z-index: 2;
	margin-top: -6px;
	padding: 28px 0 36px;
}

.aidp-risk-section .aidp-container {
	background:
		radial-gradient(circle at 72% 58%, rgba(255, 48, 40, 0.14), transparent 30rem),
		linear-gradient(180deg, rgba(2, 5, 7, 0.8), rgba(2, 5, 7, 0.88));
}

.aidp-risk-section .aidp-section-header {
	align-items: flex-start;
	padding: 30px 34px 12px;
	background: transparent;
}

.aidp-risk-section .aidp-section-header h2 {
	max-width: 960px;
	color: var(--aidp-red);
	font-size: clamp(40px, 5vw, 86px);
	line-height: 0.94;
	text-shadow: 0 0 28px rgba(255, 48, 40, 0.18);
}

.aidp-data-badge {
	display: grid;
	gap: 8px;
	padding-top: 8px;
	text-align: left;
}

.aidp-data-badge strong {
	color: var(--aidp-red);
	font-family: var(--aidp-display);
	font-size: clamp(52px, 5vw, 84px);
	line-height: 0.8;
}

.aidp-risk-layout {
	display: grid;
	grid-template-columns: minmax(250px, 0.35fr) minmax(0, 1fr) minmax(300px, 0.32fr);
	gap: 18px;
	align-items: stretch;
	padding: 4px 34px 34px;
}

.aidp-risk-copy {
	display: flex;
	min-height: 430px;
	flex-direction: column;
	justify-content: space-between;
	padding: 18px 0 0;
	border-right: 1px solid rgba(172, 196, 205, 0.12);
}

.aidp-risk-copy p {
	max-width: 390px;
	margin: 0;
	color: #d9e1e4;
	font-family: var(--aidp-mono);
	font-size: 15px;
	line-height: 1.72;
}

.aidp-timeline {
	display: grid;
	gap: 12px;
	padding-top: 22px;
	border-top: 1px solid rgba(172, 196, 205, 0.12);
	font-family: var(--aidp-mono);
	text-transform: uppercase;
}

.aidp-timeline span {
	color: var(--aidp-muted);
	font-size: 11px;
}

.aidp-timeline strong {
	color: var(--aidp-red);
	font-family: var(--aidp-display);
	font-size: 40px;
	line-height: 1;
}

.aidp-map-panel {
	position: relative;
	min-height: 430px;
	overflow: hidden;
	border: 0;
	background:
		linear-gradient(180deg, rgba(2, 5, 7, 0.05), rgba(2, 5, 7, 0.34)),
		linear-gradient(90deg, rgba(2, 5, 7, 0.62), transparent 20%, transparent 78%, rgba(2, 5, 7, 0.58)),
		var(--aidp-map-image);
	background-position: center;
	background-size: cover;
	filter: saturate(1.16) contrast(1.08);
	box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.88), 0 0 80px rgba(255, 48, 40, 0.08);
}

.aidp-daily-prophecy-visual {
	background-position: center;
	background-size: cover;
}

.aidp-map-panel::before,
.aidp-map-panel::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.aidp-map-panel::before {
	background: radial-gradient(circle at 50% 52%, rgba(255, 48, 40, 0.12), transparent 20rem);
}

.aidp-map-panel::after {
	border: 1px solid rgba(255, 48, 40, 0.16);
}

.aidp-map-scanline {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent, rgba(139, 220, 231, 0.12), transparent);
	animation: aidpScan 7s linear infinite;
	pointer-events: none;
}

.aidp-map-shortcode {
	position: absolute;
	left: 18px;
	bottom: 18px;
	z-index: 2;
	max-width: min(420px, calc(100% - 36px));
}

.aidp-global-risk-map {
	display: grid;
	gap: 6px;
	padding: 14px 16px;
	border-left: 2px solid var(--aidp-red);
	background: linear-gradient(90deg, rgba(2, 5, 7, 0.82), rgba(2, 5, 7, 0.46));
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.42);
}

.aidp-global-risk-map span,
.aidp-global-risk-map strong {
	display: block;
}

.aidp-global-risk-map span {
	color: rgba(244, 249, 250, 0.92);
	font-family: var(--aidp-mono);
	font-size: 15px;
	line-height: 1.35;
}

.aidp-global-risk-map strong {
	color: #fff;
	font-family: var(--aidp-display);
	font-size: 20px;
	line-height: 1.12;
	text-transform: uppercase;
	text-shadow: 0 0 18px rgba(0, 0, 0, 0.78);
}

.aidp-home-visual-brief {
	display: grid;
	gap: 8px;
	padding: 16px 18px;
	border-left: 2px solid var(--aidp-red);
	background:
		linear-gradient(90deg, rgba(2, 5, 7, 0.9), rgba(2, 5, 7, 0.64) 68%, rgba(2, 5, 7, 0.08));
	box-shadow: 0 0 38px rgba(0, 0, 0, 0.55);
}

.aidp-home-visual-brief span {
	color: rgba(244, 249, 250, 0.92);
	font-family: var(--aidp-mono);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.aidp-home-visual-brief strong {
	color: #fff;
	font-family: var(--aidp-display);
	font-size: clamp(21px, 2vw, 32px);
	font-weight: 800;
	line-height: 0.96;
	text-transform: uppercase;
	text-shadow: 0 0 18px rgba(0, 0, 0, 0.85);
}

.aidp-home-visual-brief p {
	max-width: 34em;
	margin: 0;
	color: rgba(229, 238, 241, 0.82);
	font-family: var(--aidp-mono);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.45;
}

.aidp-watchlist {
	display: flex;
	flex-direction: column;
	padding: 22px;
}

.aidp-watchlist .aidp-section-kicker {
	margin-bottom: 10px;
}

.aidp-watchlist .aidp-shortcode-zone {
	min-height: 0;
	margin-top: 8px;
	padding: 0;
	border: 0;
	background: transparent;
}

.aidp-risk-item {
	display: grid;
	grid-template-columns: 30px minmax(0, 1fr) auto;
	column-gap: 6px;
	row-gap: 4px;
	align-items: baseline;
	padding: 7px 0;
	font-family: var(--aidp-mono);
}

.aidp-risk-item span {
	color: rgba(238, 246, 248, 0.8);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
}

.aidp-risk-item strong {
	color: #f5f8f9;
	font-family: var(--aidp-display);
	font-size: 20px;
	font-weight: 800;
	line-height: 1.1;
}

.aidp-risk-item em {
	justify-self: end;
	color: rgba(235, 238, 240, 0.72);
	font-size: 13px;
	font-style: italic;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
}

.aidp-archive-section {
	margin-top: -10px;
	padding: 24px 0;
}

.aidp-archive-panel {
	padding: 26px 34px 30px;
	border: 1px solid rgba(120, 15, 18, 0.72);
	background: rgba(2, 5, 7, 0.74);
}

.aidp-archive-panel .aidp-section-header {
	padding: 0 0 18px;
	background: transparent;
}

.aidp-archive-panel .aidp-shortcode-zone {
	min-height: 210px;
	border: 0;
	background: transparent;
	padding: 0;
}

.aidp-archive-list,
.aidp-prediction-archive {
	display: grid;
	gap: 0;
	border-top: 1px solid rgba(120, 15, 18, 0.55);
}

.aidp-archive-row,
.aidp-prediction-archive-row {
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr) auto;
	gap: 20px;
	align-items: center;
	min-height: 56px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(120, 15, 18, 0.45);
	font-family: var(--aidp-mono);
}

.aidp-archive-date {
	color: rgba(200, 200, 200, 0.62);
	font-size: 12px;
	text-transform: uppercase;
}

.aidp-archive-title {
	color: rgba(245, 245, 245, 0.92);
	font-family: var(--aidp-display);
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	transition: color 160ms ease, text-shadow 160ms ease;
}

.aidp-archive-title:hover,
.aidp-archive-title:focus-visible {
	color: var(--aidp-red);
	text-shadow: 0 0 18px rgba(255, 48, 40, 0.24);
}

.aidp-archive-confidence,
.aidp-archive-threat {
	color: var(--aidp-red);
	font-size: 12px;
	font-weight: 700;
	text-align: right;
	text-transform: uppercase;
}

.aidp-disclaimer-section {
	margin-top: -10px;
	padding: 24px 0 60px;
}

.aidp-disclaimer-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.32fr);
	gap: 34px;
	align-items: end;
	padding: 36px 44px;
	background:
		radial-gradient(circle at 86% 100%, rgba(255, 48, 40, 0.18), transparent 24rem),
		linear-gradient(180deg, rgba(2, 5, 7, 0.72), rgba(2, 5, 7, 0.92));
}

.aidp-disclaimer-panel h2 {
	max-width: 850px;
	margin: 10px 0 14px;
	color: #f1f5f6;
	font-family: var(--aidp-display);
	font-size: clamp(31px, 3.7vw, 64px);
	line-height: 0.98;
	text-transform: uppercase;
}

.aidp-disclaimer-panel p {
	max-width: 760px;
	margin: 0;
	color: var(--aidp-muted);
	font-family: var(--aidp-mono);
	line-height: 1.72;
}

.aidp-disclaimer-panel blockquote {
	max-width: 980px;
	margin: 34px 0 0;
	color: rgba(230, 237, 240, 0.55);
	font-family: var(--aidp-mono);
	font-size: clamp(18px, 2vw, 27px);
	font-style: italic;
	line-height: 1.6;
}

.aidp-next-update {
	padding: 20px;
	border: 1px solid rgba(172, 196, 205, 0.13);
	background: rgba(0, 0, 0, 0.22);
}

.aidp-next-update > span {
	display: block;
	margin-bottom: 12px;
	color: var(--aidp-muted);
	font-family: var(--aidp-mono);
	font-size: 11px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.aidp-shortcode-zone {
	display: flex;
	min-height: 112px;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	padding: 18px;
	border: 1px solid rgba(255, 48, 40, 0.18);
	background:
		linear-gradient(135deg, rgba(255, 48, 40, 0.08), transparent 42%),
		rgba(0, 0, 0, 0.18);
	color: var(--aidp-muted);
	font-family: var(--aidp-mono);
}

.aidp-shortcode-zone span {
	color: #d6e0e3;
	font-size: 10px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.aidp-shortcode-zone code {
	display: block;
	overflow-wrap: anywhere;
	color: var(--aidp-red);
	font: 700 12px/1.6 var(--aidp-mono);
}

.aidp-shortcode-demo {
	position: relative;
	min-height: 100%;
	border-color: rgba(255, 48, 40, 0.18);
	background:
		linear-gradient(135deg, rgba(255, 48, 40, 0.09), transparent 44%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.13), rgba(0, 0, 0, 0.34));
}

.aidp-shortcode-marker {
	display: none;
}

.aidp-demo-prophecy {
	display: flex;
	min-height: 196px;
	flex-direction: column;
	justify-content: center;
}

.aidp-demo-label,
.aidp-demo-cluster p {
	margin: 0 0 10px;
	color: var(--aidp-cyan);
	font: 700 10px/1.4 var(--aidp-mono);
	letter-spacing: 1.4px;
	text-transform: uppercase;
}

.aidp-demo-prophecy h3 {
	margin: 0 0 14px;
	color: var(--aidp-red);
	font-family: var(--aidp-display);
	font-size: clamp(25px, 2.2vw, 34px);
	font-weight: 800;
	line-height: 0.96;
	text-transform: uppercase;
	text-shadow: 0 0 24px rgba(255, 48, 40, 0.2);
}

.aidp-demo-prophecy p:not(.aidp-demo-label) {
	margin: 0;
	color: #d7e0e2;
	font: 14px/1.65 var(--aidp-mono);
}

.aidp-demo-impact {
	display: grid;
	gap: 7px;
	margin-top: 18px;
}

.aidp-demo-impact span,
.aidp-demo-risk-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 8px 0;
	border-top: 1px solid rgba(172, 196, 205, 0.11);
	color: #dbe5e8;
	font: 10px/1.4 var(--aidp-mono);
	text-transform: uppercase;
}

.aidp-demo-impact strong,
.aidp-demo-risk-item em {
	color: var(--aidp-red);
	font-style: normal;
	font-weight: 700;
}

.aidp-demo-cluster {
	display: flex;
	min-height: 112px;
	flex-direction: column;
	justify-content: space-between;
}

.aidp-demo-cluster strong {
	color: #dfe8ea;
	font: 14px/1.55 var(--aidp-mono);
}

.aidp-demo-cluster span,
.aidp-demo-map-feed span,
.aidp-demo-archive span,
.aidp-demo-next-update span {
	color: var(--aidp-muted);
	font: 10px/1.4 var(--aidp-mono);
	letter-spacing: 1px;
	text-transform: uppercase;
}

.aidp-demo-map-feed {
	display: grid;
	gap: 6px;
	padding-left: 14px;
	border-left: 2px solid var(--aidp-red);
}

.aidp-demo-map-feed strong {
	color: #fff;
	font-family: var(--aidp-display);
	font-size: 26px;
	line-height: 1;
	text-transform: uppercase;
}

.aidp-demo-risk-item {
	min-height: 48px;
	padding: 0;
	border-top: 0;
}

.aidp-demo-risk-item span {
	color: var(--aidp-cyan);
	font-weight: 700;
}

.aidp-demo-risk-item strong {
	color: #fff;
	font-weight: 700;
}

.aidp-demo-archive {
	display: grid;
	gap: 0;
}

.aidp-demo-archive div {
	display: grid;
	grid-template-columns: 140px 1fr auto;
	gap: 18px;
	align-items: center;
	padding: 14px 0;
	border-bottom: 1px solid rgba(172, 196, 205, 0.11);
}

.aidp-demo-archive div:last-child {
	border-bottom: 0;
}

.aidp-demo-archive strong {
	color: #fff;
	font-family: var(--aidp-display);
	font-size: 23px;
	line-height: 1;
	text-transform: uppercase;
}

.aidp-demo-archive em {
	color: var(--aidp-red);
	font: 700 11px/1.4 var(--aidp-mono);
	font-style: normal;
	text-transform: uppercase;
}

.aidp-demo-next-update {
	display: grid;
	gap: 12px;
}

.aidp-demo-next-update strong {
	color: var(--aidp-red);
	font-family: var(--aidp-display);
	font-size: 52px;
	line-height: 1;
}

@keyframes aidpScan {
	0% {
		transform: translateY(-100%);
	}

	100% {
		transform: translateY(100%);
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.aidp-map-scanline {
		animation: none;
	}

	.aidp-button,
	.aidp-intel-card,
	.aidp-nav a,
	.aidp-nav a::after,
	.aidp-skip-link {
		transition: none;
	}
}

@media (max-width: 1200px) {
	.aidp-site-shell {
		grid-template-columns: 280px 1fr;
	}

	.aidp-system-status {
		display: none;
	}

	.aidp-nav {
		justify-content: flex-end;
		gap: 24px;
	}

	.aidp-hero-inner,
	.aidp-risk-layout,
	.aidp-disclaimer-panel {
		grid-template-columns: 1fr;
	}

	.aidp-oracle-card {
		width: 100%;
		justify-self: stretch;
	}

	.aidp-analysis-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.aidp-headlines-fallback-grid,
	.aidp-headlines-shortcode-wrap .aidp-yesterday-headlines,
	.aidp-headlines-shortcode-wrap .aidp-headlines-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.aidp-card-offset {
		margin-top: 0;
	}

	.aidp-risk-copy {
		min-height: 0;
		border-right: 0;
		border-bottom: 1px solid rgba(172, 196, 205, 0.12);
		padding-bottom: 20px;
	}

	.aidp-watchlist {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 12px;
	}

	.aidp-watchlist .aidp-section-kicker,
	.aidp-watchlist h3 {
		grid-column: 1 / -1;
	}
}

@media (max-width: 780px) {
	:root {
		--aidp-edge: 11px;
	}

	.aidp-interface-frame {
		inset: 10px;
	}

	.aidp-site-shell {
		position: absolute;
		top: 10px;
		display: block;
		height: auto;
	}

	body.admin-bar .aidp-site-shell {
		top: 10px;
	}

	.aidp-brand {
		min-height: 72px;
		border-right: 0;
		border-bottom: 1px solid var(--aidp-line);
	}

	.aidp-brand::after {
		display: none;
	}

	.aidp-nav {
		justify-content: flex-start;
		overflow-x: auto;
		padding: 0 16px;
		gap: 24px;
		scrollbar-width: thin;
	}

	.aidp-nav a {
		flex: 0 0 auto;
		height: 48px;
	}

	.aidp-hero {
		min-height: auto;
		padding: 176px 0 80px;
		background-position: center, center, 58% top;
	}

	.aidp-hero-inner {
		min-height: 0;
	}

	.aidp-hero-copy {
		padding-top: 0;
	}

	.aidp-hero h1 {
		font-size: clamp(40px, 11vw, 58px);
		line-height: 0.94;
	}

	.aidp-hero-lede,
	.aidp-hero-mantra {
		line-height: 1.62;
	}

	.aidp-hero-actions,
	.aidp-telemetry-strip {
		width: 100%;
	}

	.aidp-button {
		width: 100%;
	}

	.aidp-telemetry-strip {
		grid-template-columns: 1fr;
	}

	.aidp-telemetry-strip span {
		border-right: 0;
		border-bottom: 1px solid rgba(172, 196, 205, 0.16);
		white-space: normal;
	}

	.aidp-threat-meter,
	.aidp-analysis-grid,
	.aidp-watchlist {
		grid-template-columns: 1fr;
	}

	.aidp-analysis-section {
		margin-top: -20px;
	}

	.aidp-analysis-header,
	.aidp-headlines-header,
	.aidp-section-header,
	.aidp-risk-section .aidp-section-header {
		display: block;
		padding: 22px 18px 14px;
	}

	.aidp-terminal-link,
	.aidp-data-badge {
		display: inline-grid;
		margin-top: 16px;
	}

	.aidp-analysis-grid,
	.aidp-headlines-shortcode-wrap,
	.aidp-risk-layout {
		padding: 0 18px 22px;
	}

	.aidp-headlines-fallback-grid,
	.aidp-headlines-shortcode-wrap .aidp-yesterday-headlines,
	.aidp-headlines-shortcode-wrap .aidp-headlines-grid {
		grid-template-columns: 1fr;
	}

	.aidp-risk-section .aidp-section-header h2 {
		font-size: clamp(38px, 12vw, 58px);
	}

	.aidp-map-panel {
		min-height: 360px;
	}

	.aidp-map-shortcode {
		left: 12px;
		right: 12px;
		bottom: 12px;
	}

	.aidp-archive-panel,
	.aidp-disclaimer-panel {
		padding: 24px 18px;
	}

	.aidp-demo-archive div {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.aidp-archive-row,
	.aidp-prediction-archive-row {
		grid-template-columns: 1fr;
		gap: 7px;
	}

	.aidp-archive-confidence,
	.aidp-archive-threat {
		text-align: left;
	}
}

@media (max-width: 480px) {
	.aidp-brand-text {
		font-size: 20px;
	}

	.aidp-brand-mark {
		width: 48px;
		height: 48px;
	}

	.aidp-oracle-card {
		padding: 18px;
		clip-path: none;
	}

	.aidp-threat-meter {
		gap: 6px;
	}

	.aidp-threat-meter strong {
		font-size: 22px;
	}

	.aidp-shortcode-zone {
		padding: 14px;
	}
}

/* Global header override for the reusable classified navigation. */
.aidp-body .aidp-global-header.aidp-site-shell {
	position: fixed;
	top: 0;
	left: 0;
	display: grid;
	grid-template-columns: minmax(260px, 0.42fr) minmax(420px, 1fr) auto;
	align-items: center;
	gap: clamp(18px, 2.6vw, 42px);
	width: 100%;
	height: auto;
	min-height: 88px;
	margin: 0;
	padding: 0 clamp(18px, 2.7vw, 36px);
	border: 0;
	border-bottom: 1px solid rgba(170, 14, 18, 0.88);
	background:
		linear-gradient(rgba(139, 220, 231, 0.026) 1px, transparent 1px),
		linear-gradient(90deg, rgba(139, 220, 231, 0.022) 1px, transparent 1px),
		linear-gradient(180deg, rgba(6, 9, 11, 0.98), rgba(0, 2, 4, 0.98));
	background-size: 34px 34px, 34px 34px, auto;
	box-shadow: 0 12px 44px rgba(0, 0, 0, 0.46), inset 0 -1px 0 rgba(255, 48, 48, 0.16);
	transform: none;
}

.aidp-body .aidp-global-header.aidp-site-shell::before {
	inset: auto 0 0;
	left: 0;
	top: auto;
	width: auto;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 48, 48, 0.9), transparent);
	opacity: 0.62;
}

.aidp-body .aidp-global-header.aidp-site-shell::after {
	inset: 0;
	right: auto;
	bottom: auto;
	width: auto;
	height: auto;
	background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 6px);
	opacity: 0.1;
}

body.admin-bar .aidp-global-header.aidp-site-shell {
	top: 32px;
}

.aidp-body .aidp-global-header .aidp-brand {
	display: grid;
	gap: 4px;
	padding: 0;
	border: 0;
}

.aidp-body .aidp-global-header .aidp-brand::after,
.aidp-body .aidp-global-header .aidp-brand-mark {
	display: none;
}

.aidp-body .aidp-global-header .aidp-brand-text {
	font-size: clamp(25px, 2.1vw, 34px);
	line-height: 0.9;
	letter-spacing: 1px;
	white-space: nowrap;
}

.aidp-body .aidp-global-header .aidp-brand-subtitle {
	color: var(--aidp-red);
	font-family: var(--aidp-mono);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.1px;
	text-transform: uppercase;
	white-space: nowrap;
}

.aidp-body .aidp-global-header .aidp-nav {
	justify-content: center;
	gap: clamp(18px, 3vw, 56px);
	padding: 0;
	font-family: var(--aidp-display);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1.2px;
}

.aidp-body .aidp-global-header .aidp-nav a {
	min-height: 88px;
	height: auto;
}

.aidp-body .aidp-global-header .aidp-classified-badge {
	display: inline-flex;
}

@media (max-width: 1120px) {
	.aidp-body .aidp-global-header.aidp-site-shell {
		grid-template-columns: minmax(230px, auto) 1fr auto;
		gap: 18px;
	}

	.aidp-body .aidp-global-header .aidp-nav {
		justify-content: flex-start;
		gap: 24px;
		overflow-x: auto;
	}
}

@media (max-width: 760px) {
	.aidp-body .aidp-global-header.aidp-site-shell {
		grid-template-columns: 1fr auto;
		min-height: 124px;
		padding: 15px 14px 0;
	}

	body.admin-bar .aidp-global-header.aidp-site-shell {
		top: 46px;
	}

	.aidp-body .aidp-global-header .aidp-nav {
		grid-column: 1 / -1;
		width: calc(100% + 28px);
		margin-inline: -14px;
		padding: 0 14px;
	}

	.aidp-body .aidp-global-header .aidp-nav a {
		min-height: 48px;
	}
}
