/* ===== Reset & Base ===== */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
	--navy-950: #0a0f1e;
	--navy-900: #0f172a;
	--navy-800: #1e293b;
	--navy-700: #334155;
	--navy-600: #475569;
	--slate-500: #64748b;
	--slate-400: #94a3b8;
	--slate-300: #cbd5e1;
	--slate-200: #e2e8f0;
	--slate-100: #f1f5f9;
	--slate-50: #f8fafc;
	--zinc-400: #a1a1aa;
	--mist: #eef2f7;
	--accent: #3b82f6;
	--accent-light: #60a5fa;
	--accent-dark: #1d4ed8;
	--green: #22c55e;
	--amber: #f59e0b;
	--red: #ef4444;
	--font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
	--font-mono: 'IBM Plex Mono', 'Menlo', monospace;
	--container: 1200px;
	--radius: 8px;
	--radius-lg: 12px;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
	font-family: var(--font-sans);
	background: var(--navy-950);
	color: var(--slate-200);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
a { color: var(--accent-light); text-decoration: none; transition: color .2s; }
a:hover { color: #93c5fd; }
code {
	font-family: var(--font-mono);
	background: rgba(59,130,246,.12);
	color: var(--accent-light);
	padding: 2px 6px;
	border-radius: 4px;
	font-size: .85em;
}
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; }

/* ===== Portfolio Banner ===== */
.portfolio-banner {
	background: var(--navy-900);
	border-bottom: 1px solid rgba(148,163,184,.1);
	padding: 8px 0;
	overflow: hidden;
	position: relative;
	z-index: 100;
}
.portfolio-banner-inner {
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}
.portfolio-banner-label {
	font-size: .7rem;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--slate-400);
	white-space: nowrap;
	font-weight: 600;
}
.portfolio-banner-commands {
	display: flex;
	gap: 4px;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	flex: 1;
}
.portfolio-banner-commands::-webkit-scrollbar { display: none; }
.portfolio-banner-commands a {
	font-size: .65rem;
	font-family: var(--font-mono);
	color: var(--slate-500);
	padding: 2px 6px;
	border-radius: 3px;
	white-space: nowrap;
	transition: all .15s;
	text-decoration: none;
}
.portfolio-banner-commands a:hover {
	background: rgba(59,130,246,.12);
	color: var(--accent-light);
}
.portfolio-banner-commands a.current {
	background: var(--accent);
	color: #fff;
	font-weight: 600;
}

/* ===== Nav ===== */
.nav {
	position: sticky;
	top: 0;
	z-index: 90;
	background: rgba(10,15,30,.85);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(148,163,184,.08);
	padding: 14px 0;
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	font-size: 1.15rem;
	color: var(--slate-50);
	text-decoration: none;
}
.nav-logo:hover { color: var(--slate-50); }
.nav-links {
	display: flex;
	list-style: none;
	gap: 28px;
	align-items: center;
}
.nav-links a {
	font-size: .875rem;
	color: var(--slate-400);
	font-weight: 500;
	text-decoration: none;
	transition: color .2s;
}
.nav-links a:hover { color: var(--slate-100); }
.nav-cta {
	background: var(--accent);
	color: #fff !important;
	padding: 8px 20px;
	border-radius: 6px;
	font-weight: 600;
}
.nav-cta:hover { background: var(--accent-dark); }
.nav-mobile-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--slate-300);
	font-size: 1.4rem;
	cursor: pointer;
}

/* ===== Hero ===== */
.hero {
	padding: 100px 0 80px;
	position: relative;
	overflow: hidden;
}
.hero::before {
	content: '';
	position: absolute;
	top: -200px;
	right: -200px;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(59,130,246,.08) 0%, transparent 70%);
	pointer-events: none;
}
.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(59,130,246,.1);
	border: 1px solid rgba(59,130,246,.2);
	padding: 6px 14px;
	border-radius: 20px;
	font-size: .8rem;
	font-weight: 500;
	color: var(--accent-light);
	margin-bottom: 20px;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.hero h1 {
	font-size: 2.8rem;
	font-weight: 800;
	line-height: 1.15;
	color: var(--slate-50);
	margin-bottom: 20px;
	letter-spacing: -.02em;
}
.hero-desc {
	font-size: 1.05rem;
	color: var(--slate-400);
	line-height: 1.7;
	margin-bottom: 32px;
	max-width: 540px;
}
.hero-actions { display: flex; gap: 12px; margin-bottom: 40px; }
.btn-primary {
	display: inline-flex;
	padding: 12px 28px;
	background: var(--accent);
	color: #fff;
	font-weight: 600;
	border-radius: 6px;
	font-size: .95rem;
	transition: all .2s;
	text-decoration: none;
}
.btn-primary:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); }
.btn-secondary {
	display: inline-flex;
	padding: 12px 28px;
	background: transparent;
	color: var(--slate-300);
	font-weight: 600;
	border-radius: 6px;
	font-size: .95rem;
	border: 1px solid var(--navy-700);
	transition: all .2s;
	text-decoration: none;
}
.btn-secondary:hover { border-color: var(--slate-500); color: var(--slate-100); }
.btn-lg { padding: 14px 36px; font-size: 1rem; }
.hero-metrics { display: flex; gap: 32px; }
.hero-metric { display: flex; flex-direction: column; }
.hero-metric-value { font-size: 1.5rem; font-weight: 800; color: var(--accent-light); font-family: var(--font-mono); }
.hero-metric-label { font-size: .75rem; color: var(--slate-500); }

/* Terminal */
.terminal {
	background: var(--navy-900);
	border: 1px solid rgba(148,163,184,.1);
	border-radius: var(--radius-lg);
	overflow: hidden;
	font-family: var(--font-mono);
	font-size: .82rem;
}
.terminal.large { font-size: .78rem; }
.terminal-header {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	background: rgba(30,41,59,.8);
	border-bottom: 1px solid rgba(148,163,184,.08);
}
.terminal-dot { width: 10px; height: 10px; border-radius: 50%; }
.terminal-dot.red { background: #ef4444; }
.terminal-dot.yellow { background: #f59e0b; }
.terminal-dot.green { background: #22c55e; }
.terminal-title { margin-left: auto; color: var(--slate-500); font-size: .72rem; }
.terminal-body {
	padding: 16px;
	line-height: 1.65;
	color: var(--slate-300);
	min-height: 240px;
	outline: none;
}
.term-line { white-space: nowrap; }
.line-num {
	color: var(--slate-500);
	user-select: none;
	display: inline-block;
	min-width: 3ch;
	text-align: right;
	margin-right: 12px;
}
.term-line.highlight { background: rgba(59,130,246,.08); }
.search-match {
	background: rgba(251,191,36,.25);
	color: var(--amber);
	padding: 1px 3px;
	border-radius: 2px;
}
.term-status, .terminal-prompt {
	padding: 8px 16px;
	background: rgba(30,41,59,.6);
	border-top: 1px solid rgba(148,163,184,.08);
	color: var(--slate-400);
	font-size: .75rem;
}

/* Hero terminal animation */
.hero-terminal .term-line {
	opacity: 0;
	animation: termFade .4s ease forwards;
}
.hero-terminal .term-line:nth-child(1) { animation-delay: .1s; }
.hero-terminal .term-line:nth-child(2) { animation-delay: .2s; }
.hero-terminal .term-line:nth-child(3) { animation-delay: .3s; }
.hero-terminal .term-line:nth-child(4) { animation-delay: .4s; }
.hero-terminal .term-line:nth-child(5) { animation-delay: .5s; }
.hero-terminal .term-line:nth-child(6) { animation-delay: .6s; }
.hero-terminal .term-line:nth-child(7) { animation-delay: .7s; }
.hero-terminal .term-line:nth-child(8) { animation-delay: .8s; }
.hero-terminal .term-line:nth-child(9) { animation-delay: .9s; }
.hero-terminal .term-line:nth-child(10) { animation-delay: 1s; }
.hero-terminal .term-status { opacity: 0; animation: termFade .4s ease 1.1s forwards; }
@keyframes termFade { to { opacity: 1; } }

/* ===== Trust Bar ===== */
.trust-bar {
	padding: 24px 0;
	border-bottom: 1px solid rgba(148,163,184,.06);
	background: rgba(15,23,42,.5);
}
.trust-items { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: .8rem;
	font-weight: 500;
	color: var(--slate-400);
}
.trust-item svg { color: var(--slate-500); flex-shrink: 0; }

/* ===== Section Shared ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
	display: inline-block;
	font-size: .72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--accent-light);
	margin-bottom: 12px;
}
.section-header h2 {
	font-size: 2rem;
	font-weight: 800;
	color: var(--slate-50);
	margin-bottom: 12px;
	letter-spacing: -.01em;
}
.section-header p {
	font-size: 1.05rem;
	color: var(--slate-400);
	max-width: 600px;
	margin: 0 auto;
}

/* ===== Features ===== */
.features { padding: 100px 0; }
.features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.feature-card {
	background: var(--navy-900);
	border: 1px solid rgba(148,163,184,.08);
	border-radius: var(--radius-lg);
	padding: 28px 24px;
	transition: border-color .3s, transform .3s;
}
.feature-card:hover {
	border-color: rgba(59,130,246,.25);
	transform: translateY(-2px);
}
.feature-icon {
	font-size: 1.4rem;
	margin-bottom: 14px;
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(59,130,246,.08);
	border-radius: var(--radius);
	color: var(--accent-light);
}
.feature-card h3 {
	font-size: .95rem;
	font-weight: 700;
	color: var(--slate-100);
	margin-bottom: 8px;
}
.feature-card p {
	font-size: .82rem;
	color: var(--slate-400);
	line-height: 1.6;
}

/* ===== How It Works ===== */
.how-it-works {
	padding: 100px 0;
	background: var(--navy-900);
}
.steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.step {
	padding: 32px 24px;
	border-left: 2px solid rgba(59,130,246,.2);
	position: relative;
}
.step-num {
	font-family: var(--font-mono);
	font-size: .75rem;
	font-weight: 600;
	color: var(--accent);
	margin-bottom: 12px;
}
.step h3 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--slate-100);
	margin-bottom: 8px;
}
.step p {
	font-size: .85rem;
	color: var(--slate-400);
	line-height: 1.6;
}

/* ===== Stats ===== */
.stats { padding: 80px 0; }
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.stat-card {
	text-align: center;
	padding: 32px 16px;
	background: var(--navy-900);
	border: 1px solid rgba(148,163,184,.08);
	border-radius: var(--radius-lg);
}
.stat-value {
	font-size: 2.8rem;
	font-weight: 800;
	color: var(--accent-light);
	font-family: var(--font-mono);
	display: inline;
}
.stat-suffix {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--accent);
	display: inline;
}
.stat-label {
	font-size: .82rem;
	color: var(--slate-500);
	margin-top: 4px;
}

/* ===== Comparison ===== */
.comparison { padding: 100px 0; background: var(--navy-900); }
.comparison-table-wrapper { overflow-x: auto; }
.comparison-table {
	width: 100%;
	border-collapse: collapse;
	font-size: .85rem;
}
.comparison-table th,
.comparison-table td {
	padding: 14px 20px;
	text-align: left;
	border-bottom: 1px solid rgba(148,163,184,.06);
}
.comparison-table th {
	font-weight: 600;
	color: var(--slate-400);
	font-size: .75rem;
	text-transform: uppercase;
	letter-spacing: .06em;
}
.comparison-table td { color: var(--slate-300); }
.highlight-col { background: rgba(59,130,246,.06); }
.check { color: var(--green); font-weight: 700; }
.cross { color: var(--slate-500); }
.partial { color: var(--amber); font-size: .8rem; }

/* ===== Pricing ===== */
.pricing { padding: 100px 0; }
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	align-items: start;
}
.pricing-card {
	background: var(--navy-900);
	border: 1px solid rgba(148,163,184,.08);
	border-radius: var(--radius-lg);
	padding: 32px 24px;
	position: relative;
}
.pricing-card.featured {
	border-color: var(--accent);
	box-shadow: 0 0 40px rgba(59,130,246,.1);
}
.pricing-card.dark {
	background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
}
.pricing-badge {
	position: absolute;
	top: -10px;
	right: 20px;
	background: var(--accent);
	color: #fff;
	font-size: .7rem;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: .04em;
}
.pricing-tier {
	font-size: .8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--accent-light);
	margin-bottom: 8px;
}
.pricing-price {
	font-size: 2.4rem;
	font-weight: 800;
	color: var(--slate-50);
	margin-bottom: 4px;
}
.pricing-price span {
	font-size: .85rem;
	font-weight: 500;
	color: var(--slate-500);
}
.pricing-desc {
	font-size: .82rem;
	color: var(--slate-500);
	margin-bottom: 24px;
}
.pricing-features {
	list-style: none;
	margin-bottom: 28px;
}
.pricing-features li {
	font-size: .82rem;
	color: var(--slate-300);
	padding: 6px 0;
	display: flex;
	align-items: flex-start;
	gap: 8px;
}
.pricing-features li.disabled { color: var(--slate-600); }
.pricing-features li .check { flex-shrink: 0; }
.pricing-features li .cross { flex-shrink: 0; }
.btn-outline {
	display: block;
	text-align: center;
	padding: 10px 20px;
	border: 1px solid var(--navy-700);
	border-radius: 6px;
	color: var(--slate-300);
	font-weight: 600;
	font-size: .88rem;
	transition: all .2s;
	text-decoration: none;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent-light); }
.pricing-card .btn-primary { display: block; text-align: center; }

/* ===== Testimonials ===== */
.testimonials { padding: 100px 0; background: var(--navy-900); }
.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.testimonial-card {
	background: var(--navy-950);
	border: 1px solid rgba(148,163,184,.06);
	border-radius: var(--radius-lg);
	padding: 28px 24px;
}
.testimonial-text {
	font-size: .88rem;
	color: var(--slate-300);
	line-height: 1.65;
	margin-bottom: 20px;
	font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent), var(--accent-dark));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .72rem;
	font-weight: 700;
	color: #fff;
	flex-shrink: 0;
}
.testimonial-name { font-size: .82rem; font-weight: 600; color: var(--slate-200); }
.testimonial-role { font-size: .72rem; color: var(--slate-500); }

/* ===== Demo ===== */
.demo { padding: 100px 0; }
.demo-terminal { max-width: 800px; margin: 0 auto; }
.demo-terminal .terminal-body { min-height: 320px; cursor: text; }
.demo-hint {
	text-align: center;
	font-size: .8rem;
	color: var(--slate-500);
	margin-top: 12px;
}

/* Demo lines */
.demo-line { white-space: pre; }
.demo-line .dm-num {
	color: var(--slate-500);
	display: inline-block;
	min-width: 4ch;
	text-align: right;
	margin-right: 10px;
	user-select: none;
}
.demo-line.dm-highlight { background: rgba(59,130,246,.08); }
.demo-line .dm-match {
	background: rgba(251,191,36,.25);
	color: var(--amber);
	padding: 1px 2px;
	border-radius: 2px;
}
.demo-line .dm-mark {
	color: var(--green);
	font-weight: 700;
}
.demo-search-input {
	background: none;
	border: none;
	color: var(--slate-200);
	font-family: var(--font-mono);
	font-size: inherit;
	outline: none;
	width: 200px;
}

/* ===== Changelog ===== */
.changelog { padding: 80px 0; background: var(--navy-900); }
.changelog-entries { max-width: 720px; margin: 0 auto; }
.changelog-entry {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(148,163,184,.06);
}
.changelog-version {
	font-family: var(--font-mono);
	font-size: .78rem;
	font-weight: 600;
	color: var(--slate-400);
	min-width: 48px;
}
.changelog-tag {
	font-size: .65rem;
	font-weight: 700;
	text-transform: uppercase;
	padding: 2px 8px;
	border-radius: 3px;
	letter-spacing: .04em;
}
.changelog-tag.new { background: rgba(34,197,94,.15); color: var(--green); }
.changelog-tag.improved { background: rgba(59,130,246,.15); color: var(--accent-light); }
.changelog-text { font-size: .82rem; color: var(--slate-400); }

/* ===== FAQ ===== */
.faq { padding: 100px 0; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
	border-bottom: 1px solid rgba(148,163,184,.06);
}
.faq-item summary {
	padding: 18px 0;
	font-size: .95rem;
	font-weight: 600;
	color: var(--slate-200);
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--slate-500); font-size: 1.2rem; transition: transform .2s; }
.faq-item[open] summary::after { content: '−'; }
.faq-answer {
	padding: 0 0 18px;
	font-size: .88rem;
	color: var(--slate-400);
	line-height: 1.65;
}

/* ===== CTA ===== */
.cta { padding: 100px 0; }
.cta-content {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}
.cta-content h2 {
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--slate-50);
	margin-bottom: 16px;
}
.cta-content p {
	font-size: 1.05rem;
	color: var(--slate-400);
	margin-bottom: 32px;
}
.cta-actions { display: flex; gap: 12px; justify-content: center; }

/* ===== Footer ===== */
.footer {
	padding: 60px 0 40px;
	background: var(--navy-900);
	border-top: 1px solid rgba(148,163,184,.06);
}
.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}
.footer-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 800;
	font-size: 1rem;
	color: var(--slate-200);
	margin-bottom: 8px;
}
.footer-brand p { font-size: .82rem; color: var(--slate-500); }
.footer-links h4 {
	font-size: .75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--slate-400);
	margin-bottom: 14px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: .82rem; color: var(--slate-500); }
.footer-links a:hover { color: var(--slate-200); }
.footer-bottom {
	display: flex;
	justify-content: space-between;
	border-top: 1px solid rgba(148,163,184,.06);
	padding-top: 20px;
	font-size: .75rem;
	color: var(--slate-600);
}

/* ===== Modal ===== */
.modal-overlay {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 200;
	background: rgba(0,0,0,.6);
	backdrop-filter: blur(4px);
	align-items: center;
	justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal {
	background: var(--navy-800);
	border: 1px solid rgba(148,163,184,.1);
	border-radius: var(--radius-lg);
	padding: 40px;
	max-width: 420px;
	text-align: center;
	position: relative;
}
.modal h3 {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--slate-100);
	margin-bottom: 8px;
}
.modal p {
	font-size: .9rem;
	color: var(--slate-400);
	margin-bottom: 24px;
}
.modal-close {
	position: absolute;
	top: 12px;
	right: 16px;
	background: none;
	border: none;
	color: var(--slate-500);
	font-size: 1.4rem;
	cursor: pointer;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
	.hero-grid { grid-template-columns: 1fr; gap: 40px; }
	.hero h1 { font-size: 2.2rem; }
	.features-grid { grid-template-columns: repeat(2, 1fr); }
	.steps { grid-template-columns: repeat(2, 1fr); }
	.stats-grid { grid-template-columns: repeat(2, 1fr); }
	.pricing-grid { grid-template-columns: repeat(2, 1fr); }
	.testimonial-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
	.nav-links { display: none; }
	.nav-links.open {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--navy-900);
		padding: 20px;
		border-bottom: 1px solid rgba(148,163,184,.08);
		gap: 12px;
	}
	.nav-mobile-toggle { display: block; }
	.hero h1 { font-size: 1.8rem; }
	.hero-metrics { flex-direction: column; gap: 16px; }
	.features-grid { grid-template-columns: 1fr; }
	.steps { grid-template-columns: 1fr; }
	.stats-grid { grid-template-columns: repeat(2, 1fr); }
	.pricing-grid { grid-template-columns: 1fr; }
	.testimonial-grid { grid-template-columns: 1fr; }
	.comparison-table { font-size: .75rem; }
	.comparison-table th, .comparison-table td { padding: 10px 12px; }
	.footer-grid { grid-template-columns: 1fr; gap: 24px; }
	.footer-bottom { flex-direction: column; gap: 4px; }
	.cta-actions { flex-direction: column; align-items: center; }
}

/* ===== Portfolio Pills (universal) ===== */
.portfolio-banner,
[class*="portfolio-banner"] {
	padding: 3rem 0;
	text-align: center;
}

.portfolio-banner .container,
[class*="portfolio-banner"] .container,
[class*="portfolio-banner"] [class*="portfolio-banner-inner"] {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.portfolio-scroll,
.portfolio-grid,
.portfolio-list,
.portfolio-links,
.portfolio-commands,
.portfolio-track,
.portfolio-banner-commands,
.portfolio-items,
.footer-commands {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-top: 1rem;
}

.portfolio-scroll a,
.portfolio-grid a,
.portfolio-list a,
.portfolio-links a,
.portfolio-commands a,
.portfolio-track a,
.portfolio-banner-commands a,
.portfolio-items a,
.footer-commands a {
	display: inline-block;
	padding: 6px 14px;
	font-size: .75rem;
	font-weight: 600;
	border-radius: 100px;
	border: 1px solid currentColor;
	opacity: .55;
	text-decoration: none;
	transition: opacity .2s ease, transform .15s ease;
	white-space: nowrap;
}

.portfolio-scroll a:hover,
.portfolio-grid a:hover,
.portfolio-list a:hover,
.portfolio-links a:hover,
.portfolio-commands a:hover,
.portfolio-track a:hover,
.portfolio-banner-commands a:hover,
.portfolio-items a:hover,
.footer-commands a:hover {
	opacity: 1;
	transform: translateY(-1px);
}

.portfolio-current,
.portfolio-scroll .portfolio-current,
.portfolio-grid .portfolio-current,
.portfolio-list .portfolio-current,
.portfolio-banner-commands .portfolio-current,
span.portfolio-current,
[class*="portfolio"] span.current,
[class*="portfolio"] span[class*="current"] {
	display: inline-block;
	padding: 6px 14px;
	font-size: .75rem;
	font-weight: 700;
	border-radius: 100px;
	opacity: 1;
	white-space: nowrap;
}

.portfolio-label,
.portfolio-banner-label {
	font-size: .8125rem;
	opacity: .6;
	margin-bottom: .5rem;
}

.portfolio-label a,
.portfolio-banner-label a {
	border: none !important;
	padding: 0 !important;
	opacity: 1 !important;
	font-weight: 700 !important;
	border-radius: 0 !important;
}

.portfolio-current,
span.portfolio-current,
[class*="portfolio"] span.current,
[class*="portfolio"] span[class*="current"] {
	background: #3b82f6;
	color: #fff;
	border: 1px solid #3b82f6;
}

/* Dark theme pill overrides */
.portfolio-scroll a,
.portfolio-grid a,
.portfolio-list a,
.portfolio-links a,
.portfolio-commands a,
.portfolio-track a,
.portfolio-banner-commands a,
.portfolio-items a,
.footer-commands a {
	color: #ccc !important;
	border-color: #555 !important;
	opacity: .8 !important;
}
.portfolio-scroll a:hover,
.portfolio-grid a:hover,
.portfolio-list a:hover,
.portfolio-links a:hover,
.portfolio-commands a:hover,
.portfolio-track a:hover,
.portfolio-banner-commands a:hover,
.portfolio-items a:hover,
.footer-commands a:hover {
	color: #3b82f6 !important;
	border-color: #3b82f6 !important;
	opacity: 1 !important;
}

.portfolio-current,
span.portfolio-current {
	background: #3b82f6 !important;
	color: #fff !important;
	border: 1px solid #3b82f6 !important;
	opacity: 1 !important;
}

[class*="avatar"]{overflow:hidden}[class*="avatar"] img{display:block;width:100%;height:100%;object-fit:cover;border-radius:50%}