/* ============================================================
   Antiflow — Landing institucional · estilos compartilhados
   Tokens + base + componentes (home, agentes, blog, artigo)
   ============================================================ */

:root {
	--navy: #1E1B4B;
	--bg: #06050F;
	--cyan: #00C4CC;
	--cyan-glow: rgba(0, 196, 204, 0.15);
	--cyan-dim: rgba(0, 196, 204, 0.6);
	--text: #E8E6F0;
	--text-dim: rgba(232, 230, 240, 0.55);
	--text-muted: rgba(232, 230, 240, 0.28);
	--surface: rgba(255, 255, 255, 0.04);
	--surface-2: rgba(255, 255, 255, 0.02);
	--surface-border: rgba(255, 255, 255, 0.08);
	--font-display: 'Barlow Condensed', sans-serif;
	--font-body: 'Figtree', sans-serif;
	--font-brand: 'Google Sans', sans-serif;
	--maxw: 1120px;
}

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.65;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

a {
	color: inherit;
}

img {
	max-width: 100%;
	display: block;
}

/* Fundo estático para páginas internas (sem shader WebGL) */
body.bg-static {
	background:
		radial-gradient(1200px 600px at 80% -10%, rgba(30, 27, 75, 0.55), transparent 60%),
		radial-gradient(900px 500px at -10% 10%, rgba(0, 196, 204, 0.06), transparent 55%),
		var(--bg);
	background-attachment: fixed;
}

/* ===== SHADER CANVAS ===== */
#shader-canvas {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
}

/* ===== LAYOUT PRIMITIVES ===== */
.container {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 1.5rem;
}

.section {
	position: relative;
	z-index: 1;
	padding: 6.5rem 0;
}

.section-tint {
	background: linear-gradient(180deg, rgba(30, 27, 75, 0.28), transparent 90%);
}

.eyebrow {
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--cyan);
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
}

.eyebrow::before {
	content: "";
	width: 1.75rem;
	height: 1px;
	background: var(--cyan);
}

.eyebrow.center {
	justify-content: center;
}

h2.title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4.2vw, 3.1rem);
	font-weight: 700;
	line-height: 1.05;
	color: #fff;
	margin: 0.9rem 0 1rem;
	text-transform: uppercase;
}

.lead {
	color: var(--text-dim);
	max-width: 680px;
	font-size: 1.12rem;
	line-height: 1.7;
}

.section-head {
	margin-bottom: 3rem;
}

.section-head.center {
	text-align: center;
}

.section-head.center .lead {
	margin: 0 auto;
}

/* ===== HEADER ===== */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 2.5rem;
	height: 64px;
	background: rgba(6, 5, 15, 0.65);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border-bottom: 1px solid var(--surface-border);
}

.header-logo {
	display: flex;
	align-items: center;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.header-logo.visible {
	opacity: 1;
}

.header-logo img {
	height: 26px;
	width: auto;
}

.header-right {
	display: flex;
	align-items: center;
	gap: 1.75rem;
}

.header-nav {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.header-nav a {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-dim);
	text-decoration: none;
	transition: color 0.25s ease;
}

.header-nav a:hover {
	color: var(--text);
}

.header-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1.4rem;
	background: transparent;
	border: 1px solid var(--cyan-dim);
	border-radius: 9999px;
	color: var(--cyan);
	font-family: var(--font-body);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.header-cta:hover {
	background: var(--cyan-glow);
	border-color: var(--cyan);
	box-shadow: 0 0 24px rgba(0, 196, 204, 0.2);
}

.header-cta svg {
	width: 14px;
	height: 14px;
	transition: transform 0.3s ease;
}

.header-cta:hover svg {
	transform: translateX(3px);
}

/* ===== BUTTONS ===== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	padding: 0.9rem 1.8rem;
	border-radius: 9999px;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.98rem;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 1px solid transparent;
	white-space: nowrap;
}

.btn svg {
	width: 18px;
	height: 18px;
}

.btn-primary {
	background: var(--cyan);
	color: #04121a;
	box-shadow: 0 0 28px rgba(0, 196, 204, 0.25);
}

.btn-primary:hover {
	box-shadow: 0 0 42px rgba(0, 196, 204, 0.45);
	transform: translateY(-1px);
}

.btn-ghost {
	background: transparent;
	border-color: var(--cyan-dim);
	color: var(--cyan);
}

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

.btn-whats {
	background: #25D366;
	color: #fff;
	box-shadow: 0 0 24px rgba(37, 211, 102, 0.18);
}

.btn-whats:hover {
	background: #20bd5a;
	transform: translateY(-1px);
	box-shadow: 0 0 32px rgba(37, 211, 102, 0.3);
}

/* ===== HERO ===== */
.hero {
	position: relative;
	z-index: 1;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 8rem 0 5rem;
}

.hero .container {
	width: 100%;
}

.hero .eyebrow {
	margin-bottom: 1.25rem;
}

.hero h1 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(2.6rem, 6vw, 4.6rem);
	line-height: 1.02;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: #fff;
	max-width: 14ch;
	margin-bottom: 1.4rem;
}

.hero h1 .cyan {
	color: var(--cyan);
}

.hero .sub {
	font-size: clamp(1.05rem, 2vw, 1.32rem);
	color: var(--text-dim);
	max-width: 640px;
	line-height: 1.6;
	margin-bottom: 2.25rem;
}

.hero .cta-row {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.hero .trust {
	margin-top: 2.25rem;
	font-size: 0.92rem;
	color: var(--text-muted);
}

/* Hero menor para páginas internas */
.hero-sm {
	min-height: auto;
	padding: 10rem 0 3rem;
}

.hero-sm h1 {
	font-size: clamp(2.2rem, 5vw, 3.6rem);
}

/* ===== REVEAL (progressive enhancement; só esconde com JS ativo) ===== */
.js .reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ===== AGENT GRID / CARD ===== */
.agent-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.agent-card {
	display: block;
	text-decoration: none;
	color: inherit;
	background: var(--surface);
	border: 1px solid var(--surface-border);
	border-radius: 1.25rem;
	padding: 1.6rem;
	transition: all 0.3s ease;
}

.agent-card:hover {
	border-color: var(--cyan-dim);
	background: rgba(0, 196, 204, 0.05);
	transform: translateY(-3px);
}

.agent-card .icon {
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: var(--cyan-glow);
	color: var(--cyan);
	margin-bottom: 1.1rem;
}

.agent-card .icon svg {
	width: 22px;
	height: 22px;
}

.agent-card h3 {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	color: #fff;
	margin-bottom: 0.45rem;
}

.agent-card p {
	color: var(--text-dim);
	font-size: 0.95rem;
	line-height: 1.55;
}

.badge {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.2rem 0.6rem;
	border-radius: 9999px;
	margin-bottom: 0.85rem;
}

.badge-live {
	background: rgba(0, 196, 204, 0.15);
	color: var(--cyan);
}

.badge-custom {
	background: rgba(232, 230, 240, 0.08);
	color: var(--text-dim);
}

/* ===== TWO-COLUMN PATH CARDS ===== */
.two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.path-card {
	background: var(--surface);
	border: 1px solid var(--surface-border);
	border-radius: 1.5rem;
	padding: 2.25rem;
	position: relative;
	overflow: hidden;
}

.path-card.accent {
	background: linear-gradient(135deg, rgba(0, 196, 204, 0.07), rgba(0, 196, 204, 0.015));
	border-color: rgba(0, 196, 204, 0.18);
}

.path-card .tag {
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--cyan-dim);
}

.path-card h3 {
	font-family: var(--font-display);
	font-size: 1.9rem;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	margin: 0.5rem 0 0.7rem;
}

.path-card p {
	color: var(--text-dim);
	font-size: 1rem;
	line-height: 1.65;
}

/* ===== STAGES (Shadow → Auto) ===== */
.stages {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

.stage {
	position: relative;
	background: var(--surface);
	border: 1px solid var(--surface-border);
	border-radius: 1rem;
	padding: 1.75rem 1.5rem 1.5rem;
}

.stage .num {
	position: absolute;
	top: -14px;
	left: 1.4rem;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--cyan);
	color: #04121a;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.95rem;
}

.stage h4 {
	font-family: var(--font-display);
	font-size: 1.6rem;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	margin: 0.6rem 0 0.4rem;
}

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

/* ===== STEPS (numbered how-it-works) ===== */
.steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.step {
	background: var(--surface);
	border: 1px solid var(--surface-border);
	border-radius: 1.25rem;
	padding: 2rem;
}

.step .step-n {
	font-family: var(--font-display);
	font-size: 2.6rem;
	font-weight: 700;
	color: var(--cyan);
	line-height: 1;
	margin-bottom: 0.75rem;
}

.step h3 {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 600;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 0.5rem;
}

.step p {
	color: var(--text-dim);
	font-size: 0.95rem;
}

/* ===== FEATURE GRID ===== */
.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.feature {
	background: var(--surface);
	border: 1px solid var(--surface-border);
	border-radius: 1rem;
	padding: 1.5rem;
}

.feature .icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: var(--cyan-glow);
	color: var(--cyan);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.feature .icon svg {
	width: 20px;
	height: 20px;
}

.feature h3 {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 600;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 0.5rem;
}

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

/* ===== COMPARATIVO ===== */
.compare-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.compare-col {
	border-radius: 1.25rem;
	padding: 2.25rem;
	border: 1px solid var(--surface-border);
}

.compare-col.them {
	background: var(--surface-2);
}

.compare-col.us {
	background: linear-gradient(135deg, rgba(0, 196, 204, 0.06), rgba(0, 196, 204, 0.02));
	border-color: rgba(0, 196, 204, 0.15);
}

.compare-col h3 {
	font-family: var(--font-display);
	font-size: 1.3rem;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 1.75rem;
}

.compare-col.them h3 {
	color: var(--text-dim);
}

.compare-col.us h3 {
	color: var(--cyan);
}

.compare-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 1rem;
	padding: 0.8rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.compare-row:last-child {
	border-bottom: none;
}

.compare-label {
	font-size: 0.88rem;
	color: var(--text-dim);
}

.compare-value {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1rem;
	text-align: right;
}

.compare-col.them .compare-value {
	color: var(--text-dim);
}

.compare-col.us .compare-value {
	color: #fff;
}

.compare-col.us .compare-value.hl {
	color: var(--cyan);
}

/* ===== MOCKUP (CSS-drawn UI) ===== */
.mockup {
	background: linear-gradient(180deg, rgba(30, 27, 75, 0.6), rgba(6, 5, 15, 0.6));
	border: 1px solid var(--surface-border);
	border-radius: 1rem;
	padding: 1.4rem;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.mockup .mock-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.1rem;
}

.mockup .mock-title {
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 600;
	text-transform: uppercase;
	color: #fff;
}

.mockup .mock-kpi {
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--cyan);
}

.mockup .row {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.82rem;
	color: var(--text-dim);
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--surface-border);
}

.mockup .row:last-child {
	border-bottom: none;
}

.mockup .bar {
	height: 8px;
	border-radius: 6px;
	background: var(--cyan);
	opacity: 0.85;
	flex: 1;
}

.mockup .bar.dim {
	opacity: 0.4;
}

.mockup .spacer {
	flex: 1;
}

.mockup .pill {
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	padding: 0.16rem 0.55rem;
	border-radius: 9999px;
	white-space: nowrap;
}

.pill-ok {
	background: rgba(16, 185, 129, 0.16);
	color: #34d399;
}

.pill-warn {
	background: rgba(249, 115, 22, 0.16);
	color: #fb923c;
}

.pill-info {
	background: var(--cyan-glow);
	color: var(--cyan);
}

/* ===== SPLIT (texto + mockup) ===== */
.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

/* ===== CASE / PROVA ===== */
.proof-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.proof {
	background: var(--surface);
	border: 1px solid var(--surface-border);
	border-radius: 1.25rem;
	padding: 1.9rem;
	position: relative;
	overflow: hidden;
}

.proof::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--cyan), transparent);
}

.proof .sector {
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--cyan-dim);
	margin-bottom: 0.9rem;
}

.proof p {
	color: var(--text);
	font-size: 1rem;
	line-height: 1.6;
}

.proof p strong {
	color: #fff;
}

/* ===== MANIFESTO BAND (Anti — secundário) ===== */
.manifesto {
	border-top: 1px solid var(--surface-border);
	border-bottom: 1px solid var(--surface-border);
	background: var(--surface-2);
}

.manifesto-lines {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	max-width: 640px;
}

.manifesto-lines li {
	font-family: var(--font-display);
	font-size: clamp(1rem, 1.7vw, 1.25rem);
	font-weight: 400;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--text-dim);
}

.manifesto-lines li::before {
	content: "— ";
	color: var(--text-muted);
}

.manifesto-lines li.struck {
	text-decoration: line-through;
	color: var(--text-muted);
}

.manifesto-sign {
	font-family: var(--font-display);
	font-size: clamp(1.4rem, 2.6vw, 2rem);
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	margin-top: 1.5rem;
}

.manifesto-sign .cyan {
	color: var(--cyan);
}

/* ===== CTA SECTION ===== */
.cta-section {
	text-align: center;
}

.cta-section h2.title {
	margin-bottom: 1rem;
}

.cta-section .lead {
	margin: 0 auto 2.25rem;
}

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

/* ===== FAQ ===== */
.faq {
	max-width: 760px;
	margin: 0 auto;
}

.faq details {
	border-bottom: 1px solid var(--surface-border);
	padding: 1.25rem 0;
}

.faq summary {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 600;
	text-transform: uppercase;
	color: #fff;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

.faq summary::-webkit-details-marker {
	display: none;
}

.faq summary::after {
	content: "+";
	color: var(--cyan);
	font-size: 1.5rem;
	font-weight: 400;
	transition: transform 0.25s ease;
}

.faq details[open] summary::after {
	transform: rotate(45deg);
}

.faq details p {
	color: var(--text-dim);
	margin-top: 0.85rem;
	line-height: 1.7;
}

/* ===== BLOG ===== */
.post-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.post-card {
	background: var(--surface);
	border: 1px solid var(--surface-border);
	border-radius: 1.25rem;
	padding: 1.9rem;
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.post-card:hover {
	border-color: var(--cyan-dim);
	transform: translateY(-3px);
}

.post-card .tag {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--cyan);
	text-transform: uppercase;
}

.post-card h3 {
	font-family: var(--font-display);
	font-size: 1.7rem;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	margin: 0.55rem 0 0.6rem;
	line-height: 1.1;
}

.post-card p {
	color: var(--text-dim);
	font-size: 0.95rem;
	flex: 1;
}

.post-card .meta {
	margin-top: 1.1rem;
	font-size: 0.82rem;
	color: var(--text-muted);
}

/* ===== ARTICLE ===== */
.article {
	max-width: 720px;
	margin: 0 auto;
}

.article .kicker {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--cyan);
}

.article h1 {
	font-family: var(--font-display);
	font-size: clamp(2.1rem, 4.5vw, 3.2rem);
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.05;
	color: #fff;
	margin: 0.8rem 0 1rem;
}

.article .article-meta {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin-bottom: 2.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--surface-border);
}

.article h2 {
	font-family: var(--font-display);
	font-size: clamp(1.6rem, 3vw, 2.1rem);
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	margin: 2.5rem 0 1rem;
}

.article p {
	margin: 1.1rem 0;
	color: var(--text);
	font-size: 1.08rem;
	line-height: 1.8;
}

.article ul {
	margin: 1.1rem 0 1.1rem 1.25rem;
	color: var(--text);
}

.article li {
	margin: 0.5rem 0;
	line-height: 1.7;
}

.article p a,
.article li a {
	color: var(--cyan);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.article blockquote {
	border-left: 3px solid var(--cyan);
	padding: 0.5rem 0 0.5rem 1.5rem;
	margin: 1.75rem 0;
	font-family: var(--font-display);
	font-size: 1.5rem;
	line-height: 1.3;
	text-transform: uppercase;
	color: #fff;
}

.article-cta {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid var(--surface-border);
}

/* ===== FOOTER ===== */
.site-footer {
	position: relative;
	z-index: 1;
	border-top: 1px solid var(--surface-border);
	background: var(--bg);
	padding: 4rem 0 2.5rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 2.5rem;
}

.footer-brand img {
	height: 24px;
	opacity: 0.85;
	margin-bottom: 1rem;
}

.footer-brand p {
	color: var(--text-muted);
	font-size: 0.9rem;
	max-width: 280px;
}

.footer-col h4 {
	font-family: var(--font-display);
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--text);
	margin-bottom: 1rem;
}

.footer-col a {
	display: block;
	font-size: 0.9rem;
	color: var(--text-dim);
	text-decoration: none;
	padding: 0.3rem 0;
	transition: color 0.25s ease;
}

.footer-col a:hover {
	color: var(--cyan);
}

.footer-base {
	margin-top: 3rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--surface-border);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.footer-base p {
	font-size: 0.82rem;
	color: var(--text-muted);
}

.footer-base a {
	color: var(--cyan-dim);
	text-decoration: none;
}

.footer-base a:hover {
	color: var(--cyan);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
	font-size: 0.82rem;
	color: var(--text-muted);
	margin-bottom: 1.5rem;
}

.breadcrumb a {
	color: var(--cyan-dim);
	text-decoration: none;
}

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

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
	.agent-grid {
		grid-template-columns: repeat(2, 1fr);
	}

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

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
}

@media (max-width: 820px) {
	.stages {
		grid-template-columns: 1fr 1fr;
		gap: 1.5rem;
	}

	.split {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

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

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

	.header {
		padding: 0 1.25rem;
		height: 56px;
	}

	.header-nav {
		display: none;
	}

	.header-logo img {
		height: 22px;
	}

	.header-cta {
		padding: 0.4rem 1rem;
		font-size: 0.8rem;
	}

	.hero {
		padding: 7rem 0 3rem;
		min-height: auto;
	}

	.two-col,
	.compare-grid {
		grid-template-columns: 1fr;
	}

	.cta-row {
		flex-direction: column;
	}

	.cta-row .btn {
		width: 100%;
	}
}

@media (max-width: 600px) {

	.agent-grid,
	.feature-grid,
	.proof-grid,
	.post-grid,
	.stages {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
	}

	.js .reveal {
		opacity: 1;
		transform: none;
	}
}
