/**
 * BRUNEL AGENT — DESIGN SYSTEM
 *
 * Aesthetic: Industrial Precision
 * Dark canvas with blueprint grid texture, blue-to-cyan accent gradient.
 * Inspired by the audacious engineering spirit of Isambard Kingdom Brunel.
 *
 * @package Brunel_Child
 * @since 1.0.0
 */

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* ================================================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ================================================================ */
:root {
	/* Canvas Backgrounds */
	--bg-void: #060A12;
	--bg-deep: #0A0F1C;
	--bg-plate: #0F1628;
	--bg-raised: #151D33;
	--bg-hover: #1A2440;

	/* Text Colors */
	--ink-100: #EFF3FA;
	--ink-200: #C5CDE0;
	--ink-300: #8A96B5;
	--ink-400: #5C6A8A;
	--ink-500: #3D4A66;

	/* Primary Accent (Blue) */
	--blue-400: #3B82F6;
	--blue-500: #2563EB;
	--blue-light: #60A5FA;
	--blue-glow: rgba(59, 130, 246, 0.12);

	/* Secondary Accent (Cyan) */
	--cyan-400: #22D3EE;
	--cyan-500: #06B6D4;
	--cyan-600: #0891B2;
	--cyan-glow: rgba(34, 211, 238, 0.12);

	/* Amber Data Highlights (semantic: caution/warning only) */
	--amber-400: #F5C842;
	--amber-500: #D4A520;
	--amber-glow: rgba(245, 200, 66, 0.10);

	/* Signal Colors */
	--green-400: #3DDC84;
	--red-400: #F0637C;

	/* Borders */
	--line-faint: rgba(138, 150, 181, 0.08);
	--line-subtle: rgba(138, 150, 181, 0.14);
	--line-accent: rgba(59, 130, 246, 0.30);

	/* Typography */
	--font-display: 'Bricolage Grotesque', system-ui, sans-serif;
	--font-body: 'Instrument Sans', system-ui, sans-serif;
	--font-mono: 'JetBrains Mono', monospace;

	/* Spacing */
	--space-xs: 0.5rem;
	--space-sm: 1rem;
	--space-md: 2rem;
	--space-lg: 4rem;
	--space-xl: 6.5rem;

	/* Layout */
	--wrap-width: 1180px;
	--wrap-narrow: 720px;
	--border-radius: 10px;
	--border-radius-sm: 6px;
}

/* ================================================================
   HTML & BODY
   ================================================================ */
html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--font-body);
	background: var(--bg-void);
	color: var(--ink-200);
	line-height: 1.72;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

/* Blueprint Grid Texture Background */
body::before {
	content: '';
	position: fixed;
	inset: 0;
	background-image:
		linear-gradient(var(--line-faint) 1px, transparent 1px),
		linear-gradient(90deg, var(--line-faint) 1px, transparent 1px);
	background-size: 64px 64px;
	pointer-events: none;
	z-index: 0;
}

/* ================================================================
   GENERATEPRESS THEME RESET
   ================================================================ */
/* Override GeneratePress default styles to match design system */
.site-content,
.entry-content {
	font-family: var(--font-body);
	color: var(--ink-200);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	color: var(--ink-100);
}

a {
	color: var(--cyan-400);
	transition: color 0.15s ease;
}

a:hover {
	color: var(--cyan-500);
}

/* Override GeneratePress blog/archive containers */
.archive .site-main,
.blog .site-main,
.archive .inside-article,
.blog .inside-article,
.archive .site-content,
.blog .site-content {
	background: transparent !important;
	padding: 0 !important;
	margin: 0 !important;
	max-width: none !important;
}

.archive article,
.blog article,
.archive .type-post,
.blog .type-post {
	background: transparent !important;
	padding: 0 !important;
	margin: 0 !important;
	border: none !important;
}

/* Hide GeneratePress default post meta and headers */
.archive .entry-meta,
.blog .entry-meta,
.archive .entry-header,
.blog .entry-header,
.archive .page-header,
.blog .page-header {
	display: none !important;
}

/* Hide GeneratePress post content on archive */
.archive .entry-content,
.blog .entry-content,
.archive .entry-summary,
.blog .entry-summary {
	display: none !important;
}

/* ================================================================
   LAYOUT UTILITIES
   ================================================================ */
.wrap {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 2rem;
	position: relative;
	z-index: 1;
}

.wrap-narrow {
	max-width: 720px;
	margin: 0 auto;
	padding: 0 2rem;
	position: relative;
	z-index: 1;
}

.sect {
	padding: 6.5rem 0;
	position: relative;
}

/* ================================================================
   TYPOGRAPHY SYSTEM
   ================================================================ */
.label {
	font-family: var(--font-mono);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--cyan-400);
	margin-bottom: 1.1rem;
	display: inline-block;
}

.label::before {
	content: '// ';
	opacity: 0.5;
}

h1, h2, h3 {
	font-family: var(--font-display);
	color: var(--ink-100);
}

.heading-xl {
	font-size: clamp(2.6rem, 5.6vw, 4rem);
	font-weight: 800;
	line-height: 1.06;
	letter-spacing: -0.03em;
}

.heading-lg {
	font-size: clamp(1.9rem, 3.6vw, 2.6rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.heading-md {
	font-size: clamp(1.4rem, 2.4vw, 1.8rem);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.015em;
}

.heading-sm {
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -0.01em;
	color: var(--ink-100);
}

.sub {
	font-size: 1.15rem;
	color: var(--ink-300);
	max-width: 620px;
	line-height: 1.72;
}

.glow-text {
	background: linear-gradient(135deg, var(--blue-400) 0%, var(--cyan-400) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ================================================================
   BUTTON COMPONENTS
   ================================================================ */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.95rem;
	border-radius: 7px;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}

.btn-fill {
	padding: 0.85rem 2rem;
	background: linear-gradient(135deg, var(--blue-400) 0%, var(--cyan-400) 100%);
	color: var(--bg-void);
	border: none;
	box-shadow: 0 4px 24px rgba(59, 130, 246, 0.25);
}

.btn-fill:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 32px rgba(59, 130, 246, 0.35);
	color: #ffffff;
}

.btn-outline {
	padding: 0.8rem 1.8rem;
	background: transparent;
	color: var(--cyan-400);
	border: 1px solid var(--line-accent);
}

.btn-outline:hover {
	background: var(--cyan-glow);
	border-color: var(--cyan-400);
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 0.9rem 0;
	background: rgba(6, 10, 18, 0.82);
	backdrop-filter: blur(24px) saturate(1.4);
	border-bottom: 1px solid var(--line-faint);
}

.nav .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-brand {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	text-decoration: none;
	color: var(--ink-100);
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 700;
}

.nav-mark {
	width: 30px;
	height: 30px;
	background: linear-gradient(135deg, var(--blue-400), var(--cyan-400));
	clip-path: polygon(50% 4%, 96% 96%, 4% 96%);
	flex-shrink: 0;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 2rem;
}

/* Nav menu list — reset list styles */
.nav-menu {
	display: flex;
	align-items: center;
	gap: 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-menu li {
	list-style: none;
}

.nav-menu li a {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--ink-200);
	text-decoration: none;
	transition: color 0.15s;
}

.nav-menu li a:hover {
	color: var(--ink-100);
}

/* Legacy: direct links in .nav-links (fallback) */
.nav-links > a:not(.btn) {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--ink-200);
	text-decoration: none;
	transition: color 0.15s;
}

.nav-links > a:not(.btn):hover {
	color: var(--ink-100);
}

/* CTA button in nav */
.nav-cta {
	font-size: 0.875rem;
	padding: 0.55rem 1.3rem;
	white-space: nowrap;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 5.5rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

/* Page Hero (for interior pages) */
.page-hero {
	padding: 4.5rem 0 0;
	text-align: center;
	position: relative;
}

.page-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 600px;
	height: 300px;
	background: radial-gradient(ellipse, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.page-hero .label {
	display: inline-block;
}

.page-hero h1 {
	margin-bottom: 1.2rem;
}

.page-hero .sub {
	margin: 0 auto;
}

.hero::after {
	content: '';
	position: absolute;
	top: -30%;
	left: 50%;
	transform: translateX(-50%);
	width: 900px;
	height: 900px;
	background: radial-gradient(ellipse, rgba(59, 130, 246, 0.08) 0%, rgba(34, 211, 238, 0.04) 40%, transparent 70%);
	pointer-events: none;
}

.hero .wrap {
	position: relative;
	z-index: 2;
}

.hero-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.38rem 1rem;
	margin-bottom: 1.8rem;
	font-family: var(--font-mono);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cyan-400);
	background: var(--cyan-glow);
	border: 1px solid rgba(59, 130, 246, 0.20);
	border-radius: 100px;
}

.hero-pill .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--cyan-400);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.3; }
}

.hero h1 {
	max-width: 860px;
	margin: 0 auto 1.6rem;
}

.hero h1 .line-dim {
	display: block;
	color: var(--ink-400);
}

.hero h1 .line-glow {
	display: block;
}

.hero-sub {
	font-size: 1.15rem;
	color: var(--ink-300);
	max-width: 640px;
	margin: 0 auto 2.2rem;
}

.hero-sub strong {
	color: var(--ink-100);
	font-weight: 600;
}

.hero-ctas {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 2rem;
}

.hero-agents {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	font-size: 0.875rem;
	color: var(--ink-300);
}

.hero-agents span {
	opacity: 0.5;
}

/* ================================================================
   STATS BAR
   ================================================================ */
.stats {
	padding: 2.8rem 0;
	border-top: 1px solid var(--line-subtle);
	border-bottom: 1px solid var(--line-subtle);
	background: var(--bg-deep);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	text-align: center;
}

.stat {
	position: relative;
}

.stat:not(:last-child)::after {
	content: '';
	position: absolute;
	right: -0.75rem;
	top: 10%;
	height: 80%;
	width: 1px;
	background: var(--line-subtle);
}

.stat-val {
	font-family: var(--font-display);
	font-size: 2.6rem;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 0.4rem;
	background: linear-gradient(135deg, var(--blue-400), var(--cyan-400));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-desc {
	font-size: 0.88rem;
	color: var(--ink-300);
	line-height: 1.4;
}

.stat-src {
	font-family: var(--font-mono);
	font-size: 0.8rem;
	color: var(--ink-400);
	margin-top: 0.3rem;
	letter-spacing: 0.04em;
}

/* ================================================================
   PARADOX SECTION (The Problem)
   ================================================================ */
.paradox {
	background: var(--bg-deep);
}

.paradox-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-top: 2.5rem;
}

.paradox-col {
	background: var(--bg-plate);
	border: 1px solid var(--line-subtle);
	border-radius: 10px;
	padding: 2rem;
}

.paradox-col-head {
	font-family: var(--font-mono);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--line-subtle);
}

.paradox-col-head.red {
	color: var(--red-400);
}

.paradox-col-head.teal {
	color: var(--cyan-400);
}

.p-row {
	display: flex;
	gap: 0.9rem;
	margin-bottom: 1.2rem;
	align-items: flex-start;
}

.p-row:last-child {
	margin-bottom: 0;
}

.p-icon {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-mono);
	font-size: 0.75rem;
	font-weight: 700;
}

.p-icon.r {
	background: rgba(240, 99, 124, 0.12);
	color: var(--red-400);
}

.p-icon.g {
	background: rgba(34, 211, 238, 0.10);
	color: var(--cyan-400);
}

.p-text {
	font-size: 0.92rem;
	color: var(--ink-300);
	line-height: 1.55;
}

.p-text strong {
	color: var(--ink-100);
}

.paradox-insight {
	margin-top: 2rem;
	padding: 1.4rem 2rem;
	background: var(--cyan-glow);
	border: 1px solid var(--line-accent);
	border-radius: 8px;
	text-align: center;
	font-size: 0.95rem;
	color: var(--ink-200);
}

.paradox-insight strong {
	color: var(--cyan-400);
}

/* ================================================================
   WORKFLOW (Plan → Export → Execute → Verify)
   ================================================================ */
.workflow-track {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	margin-top: 3rem;
	position: relative;
}

.workflow-track::before {
	content: '';
	position: absolute;
	top: 42px;
	left: 12.5%;
	right: 12.5%;
	height: 2px;
	background: linear-gradient(90deg, var(--blue-400), var(--cyan-400), var(--green-400), var(--blue-light));
	opacity: 0.5;
}

.wf-step {
	text-align: center;
	position: relative;
	z-index: 1;
	padding: 0 0.8rem;
}

.wf-num {
	width: 84px;
	height: 84px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.2rem;
	font-family: var(--font-display);
	font-size: 1.6rem;
	font-weight: 800;
	background: var(--bg-void);
	border: 2px solid;
}

.wf-step:nth-child(1) .wf-num {
	border-color: var(--cyan-400);
	color: var(--cyan-400);
}

.wf-step:nth-child(2) .wf-num {
	border-color: var(--cyan-500);
	color: var(--cyan-500);
}

.wf-step:nth-child(3) .wf-num {
	border-color: var(--green-400);
	color: var(--green-400);
}

.wf-step:nth-child(4) .wf-num {
	border-color: var(--blue-light);
	color: var(--blue-light);
}

.wf-step h3 {
	font-size: 0.92rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 0.65rem;
}

.wf-step:nth-child(1) h3 { color: var(--cyan-400); }
.wf-step:nth-child(2) h3 { color: var(--cyan-500); }
.wf-step:nth-child(3) h3 { color: var(--green-400); }
.wf-step:nth-child(4) h3 { color: var(--blue-light); }

.wf-step p {
	font-size: 0.88rem;
	color: var(--ink-300);
	line-height: 1.55;
}

.wf-note {
	margin-top: 2.5rem;
	text-align: center;
	padding: 1.2rem 2rem;
	background: var(--bg-raised);
	border: 1px solid var(--line-subtle);
	border-radius: 8px;
	font-size: 0.9rem;
	color: var(--ink-300);
}

.wf-note strong {
	color: var(--ink-100);
}

/* ================================================================
   AGENT AGNOSTIC
   ================================================================ */
.agnostic {
	background: var(--bg-deep);
}

.agent-row {
	display: flex;
	gap: 1.2rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 2.5rem;
}

.agent-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.6rem;
	padding: 1.4rem 1.8rem;
	min-width: 140px;
	background: var(--bg-plate);
	border: 1px solid var(--line-subtle);
	border-radius: 10px;
	transition: border-color 0.2s, transform 0.2s;
}

.agent-badge:hover {
	border-color: var(--line-accent);
	transform: translateY(-3px);
}

.agent-ico {
	width: 50px;
	height: 50px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	background: rgba(59, 130, 246, 0.08);
}

.agent-name {
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--ink-100);
}

.agent-type {
	font-size: 0.75rem;
	color: var(--ink-300);
	font-family: var(--font-mono);
	letter-spacing: 0.06em;
}

.agnostic-msg {
	text-align: center;
	margin-top: 1.8rem;
	font-size: 0.95rem;
	color: var(--ink-300);
}

.agnostic-msg em {
	font-style: normal;
	color: var(--cyan-400);
	font-weight: 600;
}

/* ================================================================
   COMPARISON TABLE
   ================================================================ */
.comp-wrap {
	overflow-x: auto;
	margin-top: 2.5rem;
	border: 1px solid var(--line-subtle);
	border-radius: 10px;
}

.comp-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 680px;
}

.comp-table th,
.comp-table td {
	padding: 0.78rem 1.1rem;
	text-align: center;
	border-bottom: 1px solid var(--line-faint);
	font-size: 0.85rem;
}

.comp-table th {
	background: var(--bg-raised);
	font-weight: 600;
	color: var(--ink-300);
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.comp-table th:first-child,
.comp-table td:first-child {
	text-align: left;
	font-weight: 500;
	color: var(--ink-200);
	padding-left: 1.4rem;
}

.comp-table th:last-child {
	color: var(--cyan-400);
}

.comp-table td:last-child {
	background: rgba(59, 130, 246, 0.05);
}

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

.comp-table .cY {
	color: var(--green-400);
	font-weight: 700;
}

.comp-table .cN {
	color: var(--ink-500);
}

.comp-table .cL {
	color: var(--amber-400);
	font-size: 0.76rem;
}

.comp-table .cD {
	color: var(--ink-500);
	font-weight: 300;
}

.comp-table .cB {
	color: var(--cyan-400);
	font-weight: 700;
}

.comp-foot {
	text-align: center;
	margin-top: 1.2rem;
	font-size: 0.82rem;
	color: var(--ink-400);
}

/* ================================================================
   TEAM FEATURES / FEATURE CARDS
   ================================================================ */
.feat-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.3rem;
	margin-top: 2.5rem;
}

.feat-card {
	background: var(--bg-plate);
	border: 1px solid var(--line-subtle);
	border-radius: 10px;
	padding: 1.8rem;
	transition: border-color 0.2s, transform 0.2s;
}

.feat-card:hover {
	border-color: var(--line-accent);
	transform: translateY(-3px);
}

.feat-ico {
	width: 44px;
	height: 44px;
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	margin-bottom: 1.1rem;
	background: rgba(59, 130, 246, 0.08);
}

.feat-card h3 {
	font-size: 1.02rem;
	font-weight: 700;
	margin-bottom: 0.6rem;
	color: var(--ink-100);
}

.feat-card p {
	font-size: 0.88rem;
	color: var(--ink-300);
	line-height: 1.6;
}

/* ================================================================
   PERSONAS
   ================================================================ */
.persona-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.3rem;
	margin-top: 2.5rem;
}

.persona {
	background: var(--bg-plate);
	border: 1px solid var(--line-subtle);
	border-radius: 10px;
	padding: 1.8rem;
}

.persona-role {
	font-family: var(--font-mono);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--amber-400);
	margin-bottom: 0.7rem;
}

.persona h3 {
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 0.6rem;
	line-height: 1.3;
}

.persona p {
	font-size: 0.88rem;
	color: var(--ink-300);
	line-height: 1.6;
}

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.faq-list {
	max-width: 780px;
	margin: 2.5rem auto 0;
}

.faq-item {
	border-bottom: 1px solid var(--line-subtle);
}

.faq-q {
	width: 100%;
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.3rem 1.2rem;
	text-align: left;
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 600;
	color: var(--ink-100);
	transition: color 0.15s;
}

.faq-q:hover {
	color: var(--cyan-400);
}

.faq-q .chevron {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	position: relative;
	transition: transform 0.25s;
}

.faq-q .chevron::before,
.faq-q .chevron::after {
	content: '';
	position: absolute;
	background: var(--ink-400);
	border-radius: 1px;
	transition: transform 0.25s, opacity 0.25s;
}

.faq-q .chevron::before {
	width: 12px;
	height: 2px;
	top: 9px;
	left: 4px;
}

.faq-q .chevron::after {
	width: 2px;
	height: 12px;
	top: 4px;
	left: 9px;
}

.faq-item.open .faq-q .chevron::after {
	transform: rotate(90deg);
	opacity: 0;
}

.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease, padding 0.3s ease;
	padding-bottom: 0;
}

.faq-item.open .faq-a {
	max-height: 800px;
	padding: 0 1.2rem 1.3rem;
}

.faq-a p {
	font-size: 0.92rem;
	color: var(--ink-300);
	line-height: 1.7;
}

/* ================================================================
   FINAL CTA SECTION
   ================================================================ */
.cta-sect {
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-sect::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 800px;
	height: 400px;
	background: radial-gradient(ellipse, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
	pointer-events: none;
}

.cta-sect .heading-lg {
	max-width: 680px;
	margin: 0 auto 1rem;
}

.cta-sect .sub {
	margin: 0 auto 2.2rem;
	text-align: center;
}

.cta-btns {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.cta-footnote {
	margin-top: 1.8rem;
	font-family: var(--font-mono);
	font-size: 0.8rem;
	color: var(--ink-400);
	letter-spacing: 0.06em;
}

/* ================================================================
   BLOG COMPONENTS
   ================================================================ */

/* Blog Hero */
.blog-hero {
	padding: 9rem 0 5rem;
	text-align: center;
	position: relative;
}

.blog-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 600px;
	height: 300px;
	background: radial-gradient(ellipse, rgba(59,130,246,0.08) 0%, transparent 70%);
	pointer-events: none;
}

.blog-hero h1 {
	margin-bottom: 1.2rem;
}

.blog-hero .sub {
	margin: 0 auto;
}

/* Filter Tabs */
.filter-tabs {
	display: flex;
	gap: 0.8rem;
	justify-content: center;
	margin-top: 3rem;
	flex-wrap: wrap;
}

.filter-tab {
	padding: 0.6rem 1.4rem;
	background: var(--bg-plate);
	border: 1px solid var(--line-subtle);
	border-radius: 6px;
	font-family: var(--font-mono);
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--ink-300);
	cursor: pointer;
	transition: all 0.2s;
}

.filter-tab:hover {
	border-color: var(--line-accent);
	color: var(--cyan-400);
}

.filter-tab.active {
	background: var(--cyan-glow);
	border-color: var(--cyan-400);
	color: var(--cyan-400);
}

/* Blog Grid */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
	gap: 2rem;
	margin-top: 4rem;
}

/* Featured Post */
.featured-post {
	grid-column: 1 / -1;
	background: var(--bg-plate);
	border: 1px solid var(--line-subtle);
	border-radius: 12px;
	padding: 3rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	transition: border-color 0.2s;
	text-decoration: none;
	color: inherit;
}

.featured-post:hover {
	border-color: var(--line-accent);
}

.featured-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-mono);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--amber-400);
	margin-bottom: 1.2rem;
}

.featured-badge::before {
	content: '';
	width: 6px;
	height: 6px;
	background: var(--amber-400);
	border-radius: 50%;
}

.featured-post h2 {
	font-size: 2.2rem;
	margin-bottom: 1rem;
	line-height: 1.15;
}

.featured-excerpt {
	font-size: 1.05rem;
	color: var(--ink-300);
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.featured-meta {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	font-size: 0.85rem;
	color: var(--ink-400);
	font-family: var(--font-mono);
}

.featured-meta span {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.featured-visual {
	aspect-ratio: 16/10;
	background: linear-gradient(135deg, var(--blue-glow) 0%, var(--cyan-glow) 100%);
	border-radius: 8px;
	position: relative;
	overflow: hidden;
}

.featured-visual::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(var(--line-faint) 1px, transparent 1px),
		linear-gradient(90deg, var(--line-faint) 1px, transparent 1px);
	background-size: 24px 24px;
}

/* Blog Card */
.blog-card {
	background: var(--bg-plate);
	border: 1px solid var(--line-subtle);
	border-radius: 10px;
	overflow: hidden;
	transition: border-color 0.2s, transform 0.2s;
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
}

.blog-card:hover {
	border-color: var(--line-accent);
	transform: translateY(-4px);
}

.blog-card-visual {
	aspect-ratio: 16/9;
	background: linear-gradient(135deg, var(--blue-glow) 0%, var(--cyan-glow) 100%);
	position: relative;
}

.blog-card-visual::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(var(--line-faint) 1px, transparent 1px),
		linear-gradient(90deg, var(--line-faint) 1px, transparent 1px);
	background-size: 20px 20px;
}

.blog-card-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 1;
}

.blog-card-content {
	padding: 1.8rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.blog-tag {
	font-family: var(--font-mono);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--cyan-400);
	margin-bottom: 0.8rem;
}

.blog-card h3 {
	font-size: 1.3rem;
	margin-bottom: 0.8rem;
	line-height: 1.3;
}

.blog-excerpt {
	font-size: 0.95rem;
	color: var(--ink-300);
	line-height: 1.6;
	margin-bottom: 1.5rem;
	flex: 1;
}

.blog-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.8rem;
	color: var(--ink-400);
	font-family: var(--font-mono);
}

.blog-date {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.blog-read-time {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

/* Blog Responsive */
@media (max-width: 900px) {
	.featured-post {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.blog-grid {
		grid-template-columns: 1fr;
	}
}

/* Pagination */
.pagination {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 3rem;
}

.pagination .page-numbers {
	padding: 0.5rem 1rem;
	background: var(--bg-plate);
	border: 1px solid var(--line-subtle);
	border-radius: 5px;
	color: var(--ink-200);
	text-decoration: none;
	transition: border-color 0.15s, background 0.15s;
	font-family: var(--font-body);
	font-size: 0.9rem;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
	border-color: var(--line-accent);
	background: var(--cyan-glow);
	color: var(--cyan-400);
}

.pagination .dots {
	padding: 0.5rem;
	color: var(--ink-400);
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
	padding: 2.5rem 0;
	border-top: 1px solid var(--line-faint);
	text-align: center;
	font-size: 0.8rem;
	color: var(--ink-500);
}

/* ================================================================
   CARD COMPONENT (GENERIC)
   ================================================================ */
.card {
	background: var(--bg-plate);
	border: 1px solid var(--line-subtle);
	border-radius: var(--border-radius);
	padding: 2rem;
	transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
	border-color: var(--line-accent);
	transform: translateY(-3px);
}

/* ================================================================
   ACCESSIBILITY
   ================================================================ */
.skip-link {
	position: absolute;
	top: -40px;
	left: 0;
	background: var(--cyan-400);
	color: var(--bg-void);
	padding: 8px;
	text-decoration: none;
	z-index: 100;
}

.skip-link:focus {
	top: 0;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: var(--cyan-400);
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: var(--bg-void);
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* ================================================================
   RESPONSIVE BREAKPOINTS
   ================================================================ */
@media (max-width: 1024px) {
	.paradox-grid {
		grid-template-columns: 1fr;
	}

	.feat-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.sect {
		padding: 4.5rem 0;
	}

	.stats-grid {
		grid-template-columns: 1fr 1fr;
		gap: 1.8rem;
	}

	.stat:not(:last-child)::after {
		display: none;
	}

	.workflow-track {
		grid-template-columns: 1fr 1fr;
		gap: 2.5rem;
	}

	.workflow-track::before {
		display: none;
	}

	.feat-grid {
		grid-template-columns: 1fr;
	}

	.persona-grid {
		grid-template-columns: 1fr;
	}

	.nav-links {
		display: none;
	}
}

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

	.workflow-track {
		grid-template-columns: 1fr;
	}

	.hero-ctas {
		flex-direction: column;
		align-items: center;
	}

	.agent-row {
		gap: 0.8rem;
	}

	.agent-badge {
		min-width: 120px;
		padding: 1rem 1.2rem;
	}
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes riseIn {
	from {
		opacity: 0;
		transform: translateY(28px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero .hero-pill {
	animation: riseIn 0.5s ease-out 0.1s both;
}

.hero h1 {
	animation: riseIn 0.6s ease-out 0.2s both;
}

.hero-sub {
	animation: riseIn 0.6s ease-out 0.35s both;
}

.hero-ctas {
	animation: riseIn 0.6s ease-out 0.5s both;
}

.hero-agents {
	animation: riseIn 0.5s ease-out 0.65s both;
}
