:root {
	--sand: #f5f0e8;
	--oat: #ede6d8;
	--cream: #faf8f3;
	--olive: #3d4a2e;
	--olive-light: #5a6b45;
	--olive-dark: #2a3320;
	--charcoal: #2c2c28;
	--warm-gray: #8a8478;
	--warm-gray-light: #b5aea3;
	--text: #2c2c28;
	--text-secondary: #6b665d;
	--white: #ffffff;
	--border: rgba(61, 74, 46, 0.12);
	--radius: 8px;
	--radius-lg: 14px;
	--shadow-sm: 0 1px 3px rgba(44, 44, 40, 0.06);
	--shadow-md: 0 4px 20px rgba(44, 44, 40, 0.08);
	--shadow-lg: 0 12px 40px rgba(44, 44, 40, 0.12);
	--transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	overflow-x: hidden;
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	color: var(--text);
	background: var(--cream);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
	font-family: 'Fraunces', Georgia, serif;
	line-height: 1.2;
	font-weight: 600;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

a {
	color: var(--olive);
	text-decoration: none;
	transition: color var(--transition);
}

a:hover {
	color: var(--olive-dark);
}

code {
	font-family: 'DM Sans', monospace;
	font-size: 0.88em;
	background: rgba(61, 74, 46, 0.08);
	padding: 2px 6px;
	border-radius: 4px;
}

/* ---- Modal ---- */
.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(44, 44, 40, 0.6);
	backdrop-filter: blur(4px);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--transition);
}

.modal-overlay.active {
	opacity: 1;
	pointer-events: auto;
}

.modal-box {
	background: var(--white);
	padding: 48px;
	border-radius: var(--radius-lg);
	text-align: center;
	max-width: 400px;
	box-shadow: var(--shadow-lg);
	transform: translateY(20px);
	transition: transform var(--transition);
}

.modal-overlay.active .modal-box {
	transform: translateY(0);
}

.modal-icon {
	font-size: 2.5rem;
	margin-bottom: 12px;
}

.modal-box h3 {
	margin-bottom: 8px;
	color: var(--olive);
}

.modal-box p {
	color: var(--text-secondary);
}

.modal-close {
	position: absolute;
	top: 16px;
	right: 20px;
	font-size: 1.5rem;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--warm-gray);
}

/* ---- Buttons ---- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	border-radius: var(--radius);
	font-family: 'DM Sans', sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all var(--transition);
}

.btn-primary {
	background: var(--olive);
	color: var(--cream);
	border-color: var(--olive);
}

.btn-primary:hover {
	background: var(--olive-dark);
	border-color: var(--olive-dark);
	color: var(--cream);
}

.btn-outline {
	background: transparent;
	color: var(--olive);
	border-color: var(--olive);
}

.btn-outline:hover {
	background: var(--olive);
	color: var(--cream);
}

.btn-sm {
	padding: 8px 18px;
	font-size: 0.85rem;
}

.btn-block {
	width: 100%;
}

/* ---- Navbar ---- */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(250, 248, 243, 0.85);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border);
	transition: box-shadow var(--transition);
}

.navbar.scrolled {
	box-shadow: var(--shadow-sm);
}

.nav-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: 'Fraunces', serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--olive);
}

.nav-logo:hover {
	color: var(--olive);
}

.logo-svg {
	color: var(--olive);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 28px;
}

.nav-links a {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-secondary);
}

.nav-links a:hover {
	color: var(--olive);
}

.nav-cta {
	padding: 8px 20px;
	background: var(--olive);
	color: var(--cream) !important;
	border-radius: var(--radius);
}

.nav-cta:hover {
	background: var(--olive-dark);
	color: var(--cream) !important;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}

.nav-toggle span {
	width: 22px;
	height: 2px;
	background: var(--olive);
	border-radius: 2px;
	transition: all var(--transition);
}

/* ---- Label / Section Headers ---- */
.section-label {
	font-family: 'DM Sans', sans-serif;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--olive-light);
	margin-bottom: 12px;
}

.section-title {
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	color: var(--olive-dark);
	margin-bottom: 16px;
	max-width: 700px;
}

.section-body {
	font-size: 1.05rem;
	color: var(--text-secondary);
	max-width: 640px;
	margin-bottom: 48px;
	line-height: 1.7;
}

/* ---- Hero ---- */
.hero {
	position: relative;
	padding: 140px 0 80px;
	overflow: hidden;
	background: var(--cream);
}

.hero-grid {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.hero-inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.hero-label {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--olive-light);
	margin-bottom: 20px;
}

.hero-title {
	font-size: clamp(2.2rem, 5.5vw, 3.6rem);
	color: var(--olive-dark);
	margin-bottom: 20px;
	max-width: 720px;
}

.hero-body {
	font-size: 1.1rem;
	color: var(--text-secondary);
	max-width: 600px;
	line-height: 1.75;
	margin-bottom: 36px;
}

.hero-actions {
	display: flex;
	gap: 16px;
	margin-bottom: 56px;
	flex-wrap: wrap;
}

/* ---- Hero Terminal ---- */
.hero-terminal {
	max-width: 600px;
	background: var(--charcoal);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.term-bar {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 12px 16px;
	background: rgba(255, 255, 255, 0.06);
}

.term-dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
}

.term-dot:first-child {
	background: #ff5f57;
}

.term-dot:nth-child(2) {
	background: #ffbd2e;
}

.term-dot:nth-child(3) {
	background: #28c840;
}

.term-title {
	margin-left: auto;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.35);
	font-family: 'DM Sans', monospace;
}

.term-body {
	padding: 20px;
	font-family: 'DM Sans', monospace;
	font-size: 0.85rem;
	color: #d4cfbf;
	line-height: 1.7;
	white-space: pre;
	overflow-x: auto;
}

.term-prompt {
	color: var(--olive-light);
	font-weight: 700;
}

.term-out {
	color: #a8a292;
}

/* ---- Stats ---- */
.stats {
	padding: 64px 0;
	background: var(--oat);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

.stat-card {
	text-align: center;
	padding: 24px;
}

.stat-number {
	font-family: 'Fraunces', serif;
	font-size: 2.8rem;
	font-weight: 700;
	color: var(--olive);
}

.stat-suffix {
	font-family: 'Fraunces', serif;
	font-size: 1.6rem;
	color: var(--olive);
	font-weight: 600;
}

.stat-label {
	display: block;
	margin-top: 4px;
	font-size: 0.85rem;
	color: var(--text-secondary);
}

/* ---- Features ---- */
.features {
	padding: 100px 0;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.feature-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 32px;
	transition: all var(--transition);
}

.feature-card:hover {
	box-shadow: var(--shadow-md);
	border-color: rgba(61, 74, 46, 0.25);
}

.feature-icon {
	font-size: 1.6rem;
	margin-bottom: 14px;
}

.feature-card h3 {
	font-size: 1.15rem;
	margin-bottom: 10px;
	color: var(--olive-dark);
}

.feature-card p {
	font-size: 0.92rem;
	color: var(--text-secondary);
	line-height: 1.65;
	margin-bottom: 14px;
}

.feature-flag {
	display: inline-block;
	font-size: 0.82rem;
	background: rgba(61, 74, 46, 0.06);
	color: var(--olive);
	padding: 4px 10px;
	border-radius: 4px;
	font-family: 'DM Sans', monospace;
}

/* ---- Inspector ---- */
.inspector {
	padding: 100px 0;
	background: var(--oat);
}

.inspector-controls {
	display: flex;
	gap: 12px;
	margin-bottom: 32px;
	flex-wrap: wrap;
}

.inspector-controls .btn.active {
	background: var(--olive);
	color: var(--cream);
	border-color: var(--olive);
}

.inspector-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 12px;
	min-height: 200px;
}

.var-tile {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 16px;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 1;
	transform: translateY(0);
}

.var-tile.entering {
	opacity: 0;
	transform: translateY(12px);
}

.var-tile.removing {
	opacity: 0;
	transform: scale(0.9);
}

.var-tile.injected {
	border-color: var(--olive);
	background: rgba(61, 74, 46, 0.04);
}

.var-key {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: var(--olive);
	text-transform: uppercase;
	margin-bottom: 4px;
	font-family: 'DM Sans', monospace;
}

.var-value {
	font-size: 0.85rem;
	color: var(--text-secondary);
	word-break: break-all;
	font-family: 'DM Sans', monospace;
}

.inspector-status {
	margin-top: 20px;
	font-size: 0.82rem;
	color: var(--warm-gray);
}

/* ---- Signal Matrix ---- */
.signal-matrix {
	padding: 100px 0;
}

.matrix-wrapper {
	overflow-x: auto;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: var(--white);
}

.matrix-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.88rem;
}

.matrix-table th {
	text-align: left;
	padding: 14px 20px;
	background: rgba(61, 74, 46, 0.04);
	border-bottom: 1px solid var(--border);
	font-family: 'DM Sans', sans-serif;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--olive-light);
}

.matrix-table td {
	padding: 12px 20px;
	border-bottom: 1px solid var(--border);
	color: var(--text-secondary);
}

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

.matrix-table tr:hover td {
	background: rgba(61, 74, 46, 0.02);
}

.signal-name {
	font-weight: 600;
	color: var(--olive);
	font-family: 'DM Sans', monospace;
}

.signal-badge {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
	cursor: pointer;
	transition: all var(--transition);
	user-select: none;
}

.signal-badge.default-active {
	background: rgba(61, 74, 46, 0.12);
	color: var(--olive);
}

.signal-badge.block-active {
	background: rgba(200, 120, 20, 0.15);
	color: #8a5a10;
}

.signal-badge.ignore-active {
	background: rgba(180, 40, 40, 0.12);
	color: #8a2020;
}

.signal-badge.inactive {
	background: rgba(0, 0, 0, 0.04);
	color: var(--warm-gray-light);
}

/* ---- How It Works ---- */
.how-it-works {
	padding: 100px 0;
	background: var(--oat);
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.step-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 32px;
}

.step-num {
	font-family: 'Fraunces', serif;
	font-size: 2.4rem;
	font-weight: 300;
	color: var(--olive-light);
	opacity: 0.4;
}

.step-card h3 {
	font-size: 1.15rem;
	margin: 12px 0 10px;
	color: var(--olive-dark);
}

.step-card p {
	font-size: 0.9rem;
	color: var(--text-secondary);
	line-height: 1.65;
}

/* ---- Testimonials ---- */
.testimonials {
	padding: 100px 0;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.testimonial-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 32px;
}

.testimonial-text {
	font-size: 0.95rem;
	color: var(--text);
	line-height: 1.7;
	margin-bottom: 24px;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 14px;
}

.testimonial-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--olive);
	color: var(--cream);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	font-weight: 700;
	flex-shrink: 0;
}

.testimonial-author strong {
	display: block;
	font-size: 0.9rem;
	color: var(--olive-dark);
}

.testimonial-author span {
	font-size: 0.8rem;
	color: var(--warm-gray);
}

/* ---- Pricing ---- */
.pricing {
	padding: 100px 0;
	background: var(--oat);
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	align-items: start;
}

.pricing-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 32px;
}

.pricing-featured {
	border-color: var(--olive);
	box-shadow: 0 0 0 1px var(--olive);
	position: relative;
}

.pricing-featured::before {
	content: 'Most Popular';
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--olive);
	color: var(--cream);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 4px 14px;
	border-radius: 20px;
}

.pricing-tier {
	font-size: 1.1rem;
	color: var(--olive-dark);
	margin-bottom: 12px;
}

.pricing-price {
	margin-bottom: 12px;
}

.pricing-amount {
	font-family: 'Fraunces', serif;
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--olive);
}

.pricing-period {
	font-size: 0.9rem;
	color: var(--warm-gray);
}

.pricing-desc {
	font-size: 0.88rem;
	color: var(--text-secondary);
	margin-bottom: 20px;
}

.pricing-features {
	list-style: none;
	margin-bottom: 28px;
}

.pricing-features li {
	font-size: 0.85rem;
	color: var(--text-secondary);
	padding: 7px 0;
	border-bottom: 1px solid var(--border);
	position: relative;
	padding-left: 20px;
}

.pricing-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--olive);
	font-weight: 700;
}

/* ---- FAQ ---- */
.faq {
	padding: 100px 0;
}

.faq-list {
	max-width: 720px;
}

.faq-item {
	border-bottom: 1px solid var(--border);
	padding: 20px 0;
}

.faq-item summary {
	font-family: 'Fraunces', serif;
	font-size: 1.05rem;
	font-weight: 500;
	color: var(--olive-dark);
	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: '+';
	font-size: 1.4rem;
	font-weight: 300;
	color: var(--warm-gray);
	transition: transform var(--transition);
	flex-shrink: 0;
	margin-left: 16px;
}

.faq-item[open] summary::after {
	content: '−';
}

.faq-item p {
	margin-top: 14px;
	font-size: 0.92rem;
	color: var(--text-secondary);
	line-height: 1.7;
}

/* ---- Manifesto ---- */
.manifesto {
	padding: 100px 0;
	background: var(--olive-dark);
	color: var(--sand);
}

.manifesto .section-label {
	color: rgba(245, 240, 232, 0.5);
}

.manifesto .section-title {
	color: var(--sand);
	max-width: 500px;
}

.manifesto-body {
	max-width: 680px;
}

.manifesto-body p {
	font-size: 1.05rem;
	color: rgba(245, 240, 232, 0.75);
	line-height: 1.8;
	margin-bottom: 24px;
}

/* ---- Portfolio ---- */
.portfolio {
	padding: 64px 0;
	background: var(--oat);
	text-align: center;
}

.portfolio-label {
	font-size: 0.82rem;
	color: var(--warm-gray);
	margin-bottom: 8px;
}

.portfolio-mando-link {
	font-weight: 700;
	color: var(--olive);
}

.portfolio-title {
	font-family: 'Fraunces', serif;
	font-size: 1.4rem;
	color: var(--olive-dark);
	margin-bottom: 28px;
}

.portfolio-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 16px;
	margin-bottom: 28px;
}

.portfolio-links a {
	font-size: 0.82rem;
	color: var(--text-secondary);
	font-weight: 500;
	transition: color var(--transition);
}

.portfolio-links a:hover {
	color: var(--olive);
}

.portfolio-current {
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--olive);
}

.portfolio-btn {
	font-size: 0.85rem;
}

/* ---- Footer ---- */
.site-footer {
	padding: 64px 0 32px;
	background: var(--charcoal);
	color: rgba(245, 240, 232, 0.6);
}

.footer-inner {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 48px;
}

.footer-logo {
	font-family: 'Fraunces', serif;
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--sand);
	margin-bottom: 10px;
	display: block;
}

.footer-brand p {
	font-size: 0.88rem;
	margin-bottom: 6px;
}

.footer-backed a {
	color: var(--sand);
	font-weight: 600;
}

.footer-col h4 {
	font-family: 'DM Sans', sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(245, 240, 232, 0.4);
	margin-bottom: 16px;
}

.footer-col a {
	display: block;
	font-size: 0.88rem;
	color: rgba(245, 240, 232, 0.6);
	margin-bottom: 10px;
}

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

.footer-bottom {
	border-top: 1px solid rgba(245, 240, 232, 0.1);
	padding-top: 24px;
	text-align: center;
	font-size: 0.8rem;
	color: rgba(245, 240, 232, 0.35);
}

/* ---- Animations ---- */
[data-animate] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
	opacity: 1;
	transform: translateY(0);
}

/* ---- Floating KV pairs in hero ---- */
.kv-float {
	position: absolute;
	font-family: 'DM Sans', monospace;
	font-size: 0.7rem;
	background: rgba(61, 74, 46, 0.06);
	border: 1px solid rgba(61, 74, 46, 0.1);
	border-radius: 6px;
	padding: 6px 12px;
	color: var(--olive-light);
	white-space: nowrap;
	pointer-events: none;
	opacity: 0;
	animation: kvFloat 12s ease-in-out infinite;
}

@keyframes kvFloat {
	0%, 100% {
		opacity: 0;
		transform: translateY(10px);
	}
	10%, 90% {
		opacity: 0.6;
	}
	50% {
		opacity: 0.8;
		transform: translateY(-20px);
	}
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
	.features-grid {
		grid-template-columns: 1fr;
	}

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

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

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

	.footer-inner {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
		position: absolute;
		top: 64px;
		left: 0;
		right: 0;
		background: var(--cream);
		border-bottom: 1px solid var(--border);
		flex-direction: column;
		padding: 20px 24px;
		gap: 16px;
	}

	.nav-links.open {
		display: flex;
	}

	.nav-toggle {
		display: flex;
	}

	.hero-title {
		font-size: 2rem;
	}

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

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

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

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

	.footer-inner {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.section-title br {
		display: none;
	}

	.hero-title br {
		display: none;
	}
}

/* ===== 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 #3d4a2e;
	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: #3d4a2e;
	color: #fff;
	border: 1px solid #3d4a2e;
}

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

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