/* ==========================================================================
   FLATSOME CHILD — JARVIS AI DIRECTORY (đồng bộ chính xác với thiết kế
   tham chiếu: cùng bảng màu, font, thuật ngữ, bố cục hero/stats/category).
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600;700;800;900&family=Sora:wght@400;500;600;700&family=JetBrains+Mono:wght@500;600;700&display=swap');

:root {
	--jv-void:      #05080a;
	--jv-panel:     #0b131c;
	--jv-panel-alt: #101c28;
	--jv-line:      #1d2c38;
	--jv-cyan:      #43e6ff;
	--jv-cyan-dim:  #1c8fa6;
	--jv-amber:     #ffb454;
	--jv-text:      #dcf3f8;
	--jv-muted:     #7b93a0;
	--jv-glow-sm:   0 0 18px rgba(67,230,255,.18);
	--jv-glow-md:   0 0 0 1px rgba(67,230,255,.25), 0 0 48px rgba(67,230,255,.22);
	--jv-font-head: 'Orbitron', 'Arial Narrow', sans-serif;
	--jv-font-body: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--jv-font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
}

/* ------------------------------------------------------------------------
   0. NỀN & NỀN TẢNG
   --------------------------------------------------------------------- */
html { background: var(--jv-void) !important; }

body {
	background: var(--jv-void) !important;
	color: var(--jv-text) !important;
	font-family: var(--jv-font-body) !important;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	position: relative;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	background:
		radial-gradient(circle at 12% 8%, rgba(67,230,255,.06) 0%, transparent 45%),
		radial-gradient(circle at 88% 92%, rgba(255,180,84,.05) 0%, transparent 40%),
		linear-gradient(rgba(67,230,255,.035) 1px, transparent 1px) 0 0/42px 42px,
		linear-gradient(90deg, rgba(67,230,255,.035) 1px, transparent 1px) 0 0/42px 42px,
		var(--jv-void);
	-webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,.3) 65%, transparent 100%);
	mask-image: linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,.3) 65%, transparent 100%);
}

#wrapper, #Content, #main, .container { position: relative; z-index: 1; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--jv-font-head) !important;
	font-weight: 700 !important;
	letter-spacing: .02em;
	text-transform: uppercase;
	color: #f2fcff !important;
}

a { color: var(--jv-cyan); }
a:hover { color: var(--jv-amber); }
::selection { background: var(--jv-cyan); color: var(--jv-void); }
body.aid-no-scroll { overflow: hidden; }

#top-bar { display: none !important; }

/* ------------------------------------------------------------------------
   1. HEADER
   --------------------------------------------------------------------- */
#masthead.header-main,
.header-main {
	background: rgba(5, 8, 10, .82) !important;
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--jv-line) !important;
	box-shadow: none !important;
	position: sticky;
	top: 0;
	z-index: 999;
}

.header-main .logo {
	position: relative;
	display: inline-flex;
	align-items: center;
}
.header-main .logo::before {
	content: "";
	position: absolute;
	left: -8px; top: 50%;
	width: 34px; height: 34px;
	margin-top: -17px;
	border-radius: 50%;
	border: 1px dashed var(--jv-cyan-dim);
	animation: jv-spin 12s linear infinite;
}
.header-main .logo img { max-height: 32px; margin-left: 34px; filter: drop-shadow(0 0 6px rgba(67,230,255,.4)); }

.header-main nav .nav > li > a {
	font-family: var(--jv-font-mono) !important;
	font-weight: 600 !important;
	font-size: 13px !important;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--jv-muted) !important;
}
.header-main nav .nav > li > a:hover { color: var(--jv-cyan) !important; }

.header-main input,
input.search-field {
	background: var(--jv-panel) !important;
	border: 1px solid var(--jv-line) !important;
	color: var(--jv-text) !important;
	border-radius: 999px !important;
}
.header-main input::placeholder { color: var(--jv-muted) !important; }
.header-main .icon, .header-main svg, .header-main i { color: var(--jv-cyan) !important; }

.header-main .button, .header-main a.button {
	background: transparent !important;
	border: 1px solid var(--jv-cyan-dim) !important;
	color: var(--jv-cyan) !important;
	border-radius: 6px !important;
	font-family: var(--jv-font-mono) !important;
	font-weight: 600 !important;
	font-size: 12.5px !important;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: 10px 18px !important;
	box-shadow: 0 0 18px rgba(67,230,255,.12);
	transition: all .2s ease !important;
}
.header-main .button:hover { background: var(--jv-amber) !important; border-color: var(--jv-amber) !important; color: var(--jv-void) !important; box-shadow: 0 0 22px rgba(255,180,84,.3) !important; }

@keyframes jv-spin { to { transform: rotate(360deg); } }

/* ------------------------------------------------------------------------
   2. HERO
   --------------------------------------------------------------------- */
.jarvis-hero {
	position: relative;
	text-align: center;
	padding: 88px 20px 50px;
	background: radial-gradient(circle at 50% 30%, rgba(67,230,255,.16) 0%, rgba(5,8,10,0) 62%);
	border-bottom: 1px solid var(--jv-line);
	overflow: hidden;
}
.jarvis-hero::before, .jarvis-hero::after {
	content: "";
	position: absolute;
	top: 230px; left: 50%;
	border-radius: 50%;
	pointer-events: none;
}
.jarvis-hero::before { width: 340px; height: 340px; margin: -170px 0 0 -170px; border: 1px solid rgba(67,230,255,.35); animation: jv-spin 50s linear infinite; }
.jarvis-hero::after   { width: 170px; height: 170px; margin: -85px 0 0 -85px; border: 1px solid rgba(67,230,255,.5); }

.jarvis-hero-inner { position: relative; z-index: 2; max-width: 940px; margin: 0 auto; }

.jarvis-eyebrow {
	font-family: var(--jv-font-mono);
	font-size: 13px;
	letter-spacing: .18em;
	color: var(--jv-cyan-dim);
	text-transform: uppercase;
	margin: 0 0 22px;
}

.jarvis-hero-title {
	font-size: clamp(28px, 4.4vw, 48px) !important;
	line-height: 1.22 !important;
	letter-spacing: .015em;
	margin: 0 auto !important;
	max-width: 900px;
	color: #f2fcff;
	background: linear-gradient(180deg, #ffffff 0%, #cfe9f2 60%, #a9d6e4 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow:
		0 1px 0 rgba(13,37,48,.9),
		0 2px 0 rgba(13,37,48,.8),
		0 3px 0 rgba(8,22,28,.7),
		0 4px 1px rgba(8,22,28,.6),
		0 6px 14px rgba(0,0,0,.55),
		0 0 40px rgba(67,230,255,.25);
}
.jarvis-highlight,
mark.jarvis-highlight {
	background: none !important;
	background-color: transparent !important;
	background-image: none !important;
	-webkit-background-clip: text !important;
	background-clip: text !important;
	color: var(--jv-cyan) !important;
	-webkit-text-fill-color: var(--jv-cyan) !important;
	text-shadow:
		0 1px 0 rgba(6,45,55,.9),
		0 2px 0 rgba(6,45,55,.8),
		0 3px 4px rgba(0,0,0,.5),
		0 0 26px rgba(67,230,255,.65),
		0 0 60px rgba(67,230,255,.3);
	padding: 0;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.jarvis-hero-subtitle {
	font-family: var(--jv-font-body);
	text-transform: none;
	font-size: 16px;
	color: var(--jv-muted);
	margin: 18px auto 0;
	font-weight: 500;
	max-width: 620px;
}
.jarvis-hero-subtitle strong { color: var(--jv-cyan); }

/* Thanh tìm kiếm — trông giống console ra lệnh cho AI, bấm để mở modal live search */
.jarvis-search-bar {
	display: flex;
	align-items: center;
	gap: 14px;
	max-width: 820px;
	width: 100%;
	margin: 34px auto 0;
	padding: 10px 10px 10px 16px;
	background: var(--jv-panel);
	border: 1px solid var(--jv-line);
	border-radius: 999px;
	box-shadow: 0 0 0 1px rgba(67,230,255,.06), 0 0 40px rgba(67,230,255,.08);
	cursor: pointer;
	transition: box-shadow .25s ease, border-color .25s ease;
}
.jarvis-search-bar:hover { border-color: var(--jv-cyan-dim); box-shadow: var(--jv-glow-md); }

.jarvis-search-icon {
	position: relative;
	width: 38px;
	height: 38px;
	flex-shrink: 0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(circle at 35% 30%, var(--jv-panel-alt), var(--jv-void) 75%);
	border: 1px solid var(--jv-cyan-dim);
	color: var(--jv-cyan);
	box-shadow: 0 0 16px rgba(67,230,255,.2);
}
.jarvis-search-icon-ring {
	position: absolute;
	inset: -5px;
	border-radius: 50%;
	border: 1px solid rgba(67,230,255,.45);
	animation: jv-orbpulse 2.2s ease-out infinite;
}
.jarvis-search-bar:hover .jarvis-search-icon {
	border-color: var(--jv-cyan);
	box-shadow: 0 0 22px rgba(67,230,255,.4);
}

.jarvis-search-placeholder {
	flex: 1;
	text-align: left;
	color: var(--jv-muted);
	font-size: 15px;
	padding: 10px 0;
}
.jarvis-search-submit {
	white-space: nowrap;
	background: var(--jv-cyan);
	color: var(--jv-void);
	border-radius: 999px;
	padding: 12px 22px;
	font-family: var(--jv-font-mono);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
}
.jarvis-search-bar:hover .jarvis-search-submit { background: var(--jv-amber); }

.jarvis-search-hint {
	font-family: var(--jv-font-mono);
	font-size: 12.5px;
	color: var(--jv-cyan-dim);
	text-transform: none;
	margin: 14px 0 0;
}

/* ------------------------------------------------------------------------
   3. STATS BAR
   --------------------------------------------------------------------- */
.jarvis-stats {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	max-width: 640px;
	margin: 46px auto 0;
	padding: 26px 6px 0;
	border-top: 1px solid var(--jv-line);
}
.jarvis-stat { text-align: center; flex: 1; }
.jarvis-stat-num {
	font-family: var(--jv-font-head);
	font-size: 22px;
	font-weight: 700;
	color: var(--jv-cyan);
	margin: 0 0 4px;
	text-transform: none;
}
.jarvis-stat-label {
	font-family: var(--jv-font-mono);
	font-size: 11.5px;
	letter-spacing: .08em;
	color: var(--jv-muted);
	margin: 0;
}

/* ------------------------------------------------------------------------
   4. LƯỚI DANH MỤC NỔI BẬT (trang chủ)
   --------------------------------------------------------------------- */
.jarvis-section { max-width: 1200px; margin: 0 auto; padding: 60px 24px; }
.jarvis-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 26px;
}
.jarvis-section-head h2 { font-size: 22px !important; margin: 0 !important; }
.jarvis-section-head a {
	font-family: var(--jv-font-mono);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.jarvis-cat-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.jarvis-cat-card {
	display: flex;
	flex-direction: column;
	gap: 8px;
	background: var(--jv-panel);
	border: 1px solid var(--jv-line);
	border-radius: 12px;
	padding: 22px 18px;
	text-decoration: none !important;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.jarvis-cat-card:hover {
	transform: translateY(-4px);
	border-color: var(--jv-cyan-dim);
	box-shadow: 0 12px 30px rgba(0,0,0,.35), 0 0 0 1px rgba(67,230,255,.18);
}
.jarvis-cat-emoji { font-size: 26px; }
.jarvis-cat-name {
	font-family: var(--jv-font-head);
	font-size: 15px;
	color: var(--jv-text);
	text-transform: none;
}
.jarvis-cat-card:hover .jarvis-cat-name { color: var(--jv-cyan); }
.jarvis-cat-count {
	font-family: var(--jv-font-mono);
	font-size: 11.5px;
	color: var(--jv-muted);
	text-transform: uppercase;
}

/* ------------------------------------------------------------------------
   5. THANH LỌC DANH MỤC (dưới header, mọi trang)
   --------------------------------------------------------------------- */
.aid-cat-filter {
	background: rgba(5,8,10,.85);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--jv-line);
	position: sticky;
	top: 57px;
	z-index: 90;
}
.aid-cat-filter-inner {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding: 12px 20px;
	max-width: 1200px;
	margin: 0 auto;
	scrollbar-width: none;
}
.aid-cat-filter-inner::-webkit-scrollbar { display: none; }

.aid-cat-link {
	white-space: nowrap;
	padding: 7px 15px;
	border-radius: 999px;
	font-family: var(--jv-font-mono);
	font-size: 12.5px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .03em;
	color: var(--jv-muted) !important;
	background: var(--jv-panel);
	border: 1px solid transparent;
}
.aid-cat-link:hover { border-color: var(--jv-line); color: var(--jv-text) !important; }
.aid-cat-link.is-active {
	background: var(--jv-cyan);
	border-color: var(--jv-cyan);
	color: var(--jv-void) !important;
	box-shadow: var(--jv-glow-sm);
}
.aid-cat-count { opacity: .6; font-weight: 500; margin-left: 3px; }

/* ------------------------------------------------------------------------
   6. THẺ BÀI VIẾT / "AI TOOL CARD"
   --------------------------------------------------------------------- */
.box-blog-post {
	position: relative;
	border: 1px solid var(--jv-line) !important;
	border-radius: 14px !important;
	overflow: hidden;
	box-shadow: none !important;
	background: var(--jv-panel) !important;
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease !important;
}
.box-blog-post:hover {
	transform: translateY(-5px);
	border-color: rgba(67,230,255,.45) !important;
	box-shadow: 0 16px 40px rgba(0,0,0,.4), 0 0 0 1px rgba(67,230,255,.25), 0 0 30px rgba(67,230,255,.12) !important;
}

.box-blog-post .box-image { border-radius: 0 !important; position: relative; }
.box-blog-post .box-image::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(5,8,10,0) 40%, rgba(5,8,10,.9) 100%);
}
.box-blog-post .box-image img { border-radius: 0 !important; filter: saturate(1.05) contrast(1.03); }

.box-blog-post .blog-post-inner { padding: 20px 20px 22px !important; }

.box-blog-post .cat-label { margin-bottom: 12px !important; display: inline-block; }
.box-blog-post .cat-label a {
	font-family: var(--jv-font-mono) !important;
	font-size: 11px !important;
	text-transform: uppercase !important;
	padding: 3px 10px !important;
	border-radius: 999px !important;
	background: rgba(255,180,84,.12) !important;
	color: var(--jv-amber) !important;
	border: 1px solid rgba(255,180,84,.35) !important;
	letter-spacing: .05em;
}

.box-blog-post .post-title {
	font-family: var(--jv-font-head) !important;
	font-size: 16.5px !important;
	font-weight: 700 !important;
	text-transform: none !important;
	line-height: 1.35 !important;
	margin-bottom: 10px !important;
	color: var(--jv-text) !important;
}
.box-blog-post:hover .post-title { color: var(--jv-cyan) !important; }

.box-blog-post .from_the_blog_excerpt {
	color: var(--jv-muted) !important;
	font-size: 14.5px !important;
	line-height: 1.55 !important;
	min-height: 40px;
}

.box-blog-post .badge.post-date {
	background: var(--jv-void) !important;
	border: 1px solid var(--jv-cyan) !important;
	border-radius: 8px !important;
	box-shadow: var(--jv-glow-sm);
}
.box-blog-post .badge.post-date span { color: var(--jv-cyan) !important; }

.box-blog-post .button {
	background: transparent !important;
	border: 1px solid var(--jv-cyan-dim) !important;
	border-radius: 6px !important;
	color: var(--jv-cyan) !important;
	font-family: var(--jv-font-mono) !important;
	font-weight: 600 !important;
	text-transform: uppercase;
	letter-spacing: .04em;
	font-size: 12px !important;
}
.box-blog-post .button:hover {
	background: var(--jv-cyan) !important;
	border-color: var(--jv-cyan) !important;
	color: var(--jv-void) !important;
}

/* ------------------------------------------------------------------------
   7. NÚT "AI ORB" NỔI — mở tìm kiếm
   --------------------------------------------------------------------- */
.aid-orb {
	position: fixed;
	right: 26px;
	bottom: 26px;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 30%, var(--jv-panel-alt), var(--jv-void) 70%);
	border: 1.5px solid var(--jv-cyan);
	box-shadow: var(--jv-glow-md);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 9998;
	padding: 0;
}
.aid-orb-ring {
	position: absolute;
	inset: -8px;
	border-radius: 50%;
	border: 1px solid rgba(67,230,255,.5);
	animation: jv-orbpulse 2.2s ease-out infinite;
}
@keyframes jv-orbpulse { 0% { transform: scale(.85); opacity: .9; } 80% { transform: scale(1.35); opacity: 0; } 100% { opacity: 0; } }
.aid-orb-core { color: var(--jv-cyan); display: flex; }
.aid-orb-kbd {
	position: absolute;
	bottom: -22px; left: 50%;
	transform: translateX(-50%);
	font-family: var(--jv-font-mono);
	font-size: 10px;
	color: var(--jv-muted);
	background: var(--jv-panel);
	border: 1px solid var(--jv-line);
	border-radius: 5px;
	padding: 1px 6px;
	white-space: nowrap;
	opacity: 0;
	transition: opacity .2s ease;
}
.aid-orb:hover .aid-orb-kbd { opacity: 1; }

/* ------------------------------------------------------------------------
   8. MODAL TÌM KIẾM TỨC THỜI
   --------------------------------------------------------------------- */
.aid-search-overlay {
	position: fixed;
	inset: 0;
	background: rgba(3, 5, 7, .8);
	backdrop-filter: blur(4px);
	z-index: 99999;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 10vh 16px 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity .18s ease;
}
.aid-search-overlay.is-open { opacity: 1; pointer-events: auto; }

.aid-search-box {
	position: relative;
	width: 100%;
	max-width: 640px;
	background: var(--jv-panel);
	border: 1px solid var(--jv-cyan-dim);
	border-radius: 16px;
	box-shadow: var(--jv-glow-md), 0 30px 70px rgba(0,0,0,.6);
	overflow: hidden;
	transform: translateY(-10px);
	transition: transform .18s ease;
	max-height: 76vh;
	display: flex;
	flex-direction: column;
}
.aid-search-overlay.is-open .aid-search-box { transform: translateY(0); }

.aid-search-scanline {
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--jv-cyan), transparent);
	animation: jv-scan 2.4s linear infinite;
	opacity: .8;
}
@keyframes jv-scan { 0% { transform: translateY(0); opacity: 0; } 10% { opacity: .9; } 90% { opacity: .9; } 100% { transform: translateY(320px); opacity: 0; } }

.aid-search-input-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 18px 20px;
	border-bottom: 1px solid var(--jv-line);
	color: var(--jv-cyan);
}
.aid-search-input {
	flex: 1;
	border: none;
	outline: none;
	background: transparent;
	font-family: var(--jv-font-body);
	font-size: 17px;
	font-weight: 500;
	color: #fff;
}
.aid-search-input::placeholder { color: var(--jv-muted); }
.aid-search-close {
	border: 1px solid var(--jv-line);
	background: var(--jv-panel-alt);
	border-radius: 6px;
	padding: 3px 9px;
	font-family: var(--jv-font-mono);
	font-size: 12px;
	color: var(--jv-muted);
	cursor: pointer;
}

.aid-search-results { overflow-y: auto; }
.aid-search-status { padding: 34px 18px; text-align: center; color: var(--jv-muted); font-size: 14.5px; }
.aid-search-list { list-style: none; margin: 0; padding: 8px; }
.aid-search-item { border-radius: 10px; }
.aid-search-item.is-active, .aid-search-item:hover { background: rgba(67,230,255,.08); }
.aid-search-item-link { display: flex; align-items: center; gap: 14px; padding: 11px 12px; text-decoration: none; }
.aid-search-thumb { width: 46px; height: 46px; border-radius: 8px; object-fit: cover; flex-shrink: 0; background: var(--jv-panel-alt); border: 1px solid var(--jv-line); }
.aid-search-thumb--placeholder { display: flex; align-items: center; justify-content: center; font-family: var(--jv-font-mono); font-size: 11px; font-weight: 700; color: var(--jv-cyan); background: rgba(67,230,255,.08); }
.aid-search-item-body { display: flex; flex-direction: column; min-width: 0; }
.aid-search-item-title { font-family: var(--jv-font-head); font-weight: 700; font-size: 14.5px; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-transform: none; }
.aid-search-item-meta { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--jv-muted); overflow: hidden; }
.aid-search-item-cat { background: rgba(67,230,255,.1); border: 1px solid var(--jv-line); border-radius: 999px; padding: 1px 9px; flex-shrink: 0; font-family: var(--jv-font-mono); font-weight: 600; color: var(--jv-cyan); text-transform: uppercase; font-size: 11px; }
.aid-search-item-type { background: rgba(255,180,84,.12); border: 1px solid rgba(255,180,84,.35); border-radius: 999px; padding: 1px 9px; flex-shrink: 0; font-family: var(--jv-font-mono); font-weight: 600; color: var(--jv-amber); text-transform: uppercase; font-size: 11px; }
.aid-search-item-price { font-family: var(--jv-font-mono); font-weight: 600; color: var(--jv-cyan); white-space: nowrap; }
.aid-search-item-excerpt { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.aid-search-viewall { display: block; text-align: center; padding: 15px; border-top: 1px solid var(--jv-line); font-family: var(--jv-font-mono); font-weight: 700; text-transform: uppercase; letter-spacing: .03em; font-size: 12.5px; color: var(--jv-cyan) !important; text-decoration: none; }
.aid-search-viewall:hover { color: var(--jv-amber) !important; }

/* ------------------------------------------------------------------------
   9. FOOTER
   --------------------------------------------------------------------- */
#footer { background: var(--jv-panel) !important; color: var(--jv-muted) !important; border-top: 1px solid var(--jv-line); }
#footer h1, #footer h2, #footer h3, #footer h4, #footer h5 { color: #fff !important; }
#footer a { color: var(--jv-text) !important; }
#footer a:hover { color: var(--jv-cyan) !important; }
#footer .is-divider { border-color: var(--jv-line) !important; }

/* ------------------------------------------------------------------------
   10. RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 900px) {
	.jarvis-cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
	.jarvis-hero { padding: 64px 16px 40px; }
	.jarvis-hero::before, .jarvis-hero::after { display: none; }
	.jarvis-search-bar { flex-wrap: wrap; border-radius: 20px; }
	.jarvis-search-submit { width: 100%; text-align: center; }
	.jarvis-stats { flex-wrap: wrap; gap: 20px; }
	.aid-cat-filter { top: 52px; }
	.aid-orb { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}
