/* ===== Voidal — style.css ===== */

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

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

body {
	font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
	color: #e8e6e3;
	background: #0d0d0f;
	line-height: 1.75;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

a {
	color: inherit;
	text-decoration: none;
}

ul {
	list-style: none;
}

img {
	max-width: 100%;
}

code {
	font-family: 'JetBrains Mono', monospace;
	background: rgba(231, 76, 60, 0.1);
	padding: 0.15em 0.4em;
	border-radius: 4px;
	font-size: 0.86em;
	color: #e74c3c;
}

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

.section {
	padding: 100px 0;
}

.section-sm {
	padding: 60px 0;
}

.section-label {
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: #e74c3c;
	margin-bottom: 14px;
}

.section-title {
	font-size: clamp(1.8rem, 3.5vw, 2.6rem);
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 18px;
	color: #f5f3f0;
}

.section-subtitle {
	font-size: 1.05rem;
	color: #8a8a8e;
	max-width: 640px;
	margin: 0 auto 52px;
	line-height: 1.8;
}

.accent {
	color: #e74c3c;
}

/* ===== Buttons ===== */
.btn-primary {
	display: inline-block;
	padding: 14px 32px;
	background: #e74c3c;
	color: #fff;
	font-weight: 600;
	font-size: 0.92rem;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	transition: background 0.2s, transform 0.15s;
	font-family: inherit;
	text-align: center;
}

.btn-primary:hover {
	background: #c0392b;
	transform: translateY(-1px);
}

.btn-secondary {
	display: inline-block;
	padding: 14px 32px;
	background: transparent;
	color: #e8e6e3;
	font-weight: 600;
	font-size: 0.92rem;
	border-radius: 8px;
	border: 1px solid rgba(232, 230, 227, 0.2);
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s;
	font-family: inherit;
	text-align: center;
}

.btn-secondary:hover {
	border-color: rgba(232, 230, 227, 0.5);
	background: rgba(255, 255, 255, 0.04);
}

/* ===== Scroll Fade ===== */
.fade-in {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ===== Nav ===== */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(13, 13, 15, 0.85);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	padding: 16px 0;
}

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

.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.15rem;
	font-weight: 700;
	color: #f5f3f0;
	letter-spacing: 0.02em;
}

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

.nav-links a {
	font-size: 0.85rem;
	font-weight: 500;
	color: #8a8a8e;
	transition: color 0.2s;
}

.nav-links a:hover {
	color: #f5f3f0;
}

.nav-cta {
	padding: 8px 20px !important;
	background: #e74c3c;
	color: #fff !important;
	border-radius: 6px;
	font-weight: 600 !important;
	transition: background 0.2s !important;
}

.nav-cta:hover {
	background: #c0392b !important;
}

.nav-mobile-toggle {
	display: none;
	background: none;
	border: none;
	color: #f5f3f0;
	font-size: 1.4rem;
	cursor: pointer;
}

/* ===== Hero ===== */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 140px 0 100px;
	overflow: hidden;
}

#hero-canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.hero-container {
	position: relative;
	z-index: 1;
}

.hero-content {
	max-width: 720px;
	margin: 0 auto;
}

.hero-eyebrow {
	font-size: 0.78rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	color: #e74c3c;
	margin-bottom: 24px;
}

.hero h1 {
	font-size: clamp(2.2rem, 5vw, 3.4rem);
	font-weight: 800;
	line-height: 1.15;
	margin-bottom: 28px;
	color: #f5f3f0;
}

.hero-desc {
	font-size: 1.05rem;
	color: #8a8a8e;
	line-height: 1.85;
	margin-bottom: 40px;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.hero-actions {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

/* ===== Trust Bar ===== */
.trust-bar {
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	background: rgba(255, 255, 255, 0.015);
}

.trust-label {
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: #5a5a5e;
	margin-bottom: 28px;
}

.trust-badges {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
	margin-bottom: 28px;
}

.trust-badge {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #8a8a8e;
	font-size: 0.88rem;
	font-weight: 500;
}

.badge-icon {
	font-size: 1.3rem;
}

.trust-note {
	font-size: 0.88rem;
	color: #5a5a5e;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.7;
}

/* ===== Manifesto ===== */
.manifesto {
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.manifesto-inner {
	max-width: 680px;
	margin: 0 auto;
	text-align: center;
}

.manifesto-title {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 36px;
	color: #f5f3f0;
}

.manifesto-body p {
	font-size: 1rem;
	color: #8a8a8e;
	line-height: 1.9;
	margin-bottom: 20px;
	text-align: left;
}

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

/* ===== Features ===== */
.features {
	text-align: center;
}

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

.feature-card {
	background: rgba(255, 255, 255, 0.025);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 12px;
	padding: 32px 28px;
	text-align: left;
	transition: border-color 0.3s, background 0.3s;
}

.feature-card:hover {
	border-color: rgba(231, 76, 60, 0.25);
	background: rgba(255, 255, 255, 0.035);
}

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

.feature-card h3 {
	font-size: 1.1rem;
	font-weight: 700;
	color: #f5f3f0;
	margin-bottom: 10px;
}

.feature-flag {
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.72rem;
	font-weight: 500;
	background: rgba(231, 76, 60, 0.12);
	color: #e74c3c;
	padding: 3px 8px;
	border-radius: 4px;
	vertical-align: middle;
	margin-left: 6px;
}

.feature-card p {
	font-size: 0.9rem;
	color: #7a7a7e;
	line-height: 1.75;
}

/* ===== How It Works ===== */
.how-it-works {
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.step-card {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 12px;
	padding: 32px 28px;
	text-align: left;
}

.step-number {
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.78rem;
	font-weight: 500;
	color: #e74c3c;
	margin-bottom: 14px;
	letter-spacing: 0.05em;
}

.step-card h3 {
	font-size: 1.05rem;
	font-weight: 700;
	color: #f5f3f0;
	margin-bottom: 10px;
}

.step-card p {
	font-size: 0.9rem;
	color: #7a7a7e;
	line-height: 1.75;
}

/* ===== Stats ===== */
.stats {
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.stat-card {
	padding: 32px 16px;
}

.stat-number {
	font-size: clamp(2rem, 4vw, 2.8rem);
	font-weight: 800;
	color: #f5f3f0;
	margin-bottom: 6px;
}

.stat-label {
	font-size: 0.82rem;
	color: #5a5a5e;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/* ===== Case Study ===== */
.case-study {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.case-study-inner {
	max-width: 680px;
	margin: 0 auto;
	text-align: center;
}

.case-study-body {
	text-align: left;
	margin-top: 36px;
}

.case-study-body p {
	font-size: 1rem;
	color: #8a8a8e;
	line-height: 1.9;
	margin-bottom: 20px;
}

.case-study-body p:last-child {
	font-style: italic;
	color: #a0a0a4;
	margin-bottom: 0;
}

/* ===== Pricing ===== */
.pricing {
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 16px;
}

.pricing-card {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 12px;
	padding: 36px 24px;
	text-align: left;
	position: relative;
	display: flex;
	flex-direction: column;
}

.pricing-card.featured {
	border-color: rgba(231, 76, 60, 0.4);
	background: rgba(231, 76, 60, 0.04);
}

.pricing-badge {
	position: absolute;
	top: -11px;
	left: 50%;
	transform: translateX(-50%);
	background: #e74c3c;
	color: #fff;
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 4px 14px;
	border-radius: 20px;
}

.pricing-tier {
	font-size: 0.82rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #8a8a8e;
	margin-bottom: 12px;
}

.pricing-price {
	font-size: 2rem;
	font-weight: 800;
	color: #f5f3f0;
	margin-bottom: 12px;
}

.pricing-price span {
	font-size: 0.85rem;
	font-weight: 400;
	color: #5a5a5e;
}

.pricing-desc {
	font-size: 0.85rem;
	color: #6a6a6e;
	line-height: 1.65;
	margin-bottom: 24px;
}

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

.pricing-features li {
	font-size: 0.85rem;
	color: #8a8a8e;
	padding: 6px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-features li:last-child {
	border-bottom: none;
}

.pricing-features li::before {
	content: "→ ";
	color: #e74c3c;
	font-weight: 600;
}

.pricing-btn {
	width: 100%;
}

/* ===== Testimonials ===== */
.testimonials {
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.testimonial-card {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 12px;
	padding: 28px 24px;
	text-align: left;
}

.testimonial-quote {
	font-size: 0.9rem;
	color: #8a8a8e;
	line-height: 1.75;
	margin-bottom: 20px;
	font-style: italic;
}

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

.testimonial-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(231, 76, 60, 0.12);
	color: #e74c3c;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.78rem;
	font-weight: 700;
}

.testimonial-name {
	font-size: 0.88rem;
	font-weight: 600;
	color: #f5f3f0;
}

.testimonial-role {
	font-size: 0.78rem;
	color: #5a5a5e;
}

/* ===== Demo ===== */
.demo {
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.demo-terminal {
	max-width: 640px;
	margin: 0 auto;
}

.terminal {
	background: #1a1a1e;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	overflow: hidden;
	text-align: left;
}

.terminal-header {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 14px 18px;
	background: rgba(255, 255, 255, 0.03);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.terminal-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
}

.terminal-dot.red { background: #e74c3c; }
.terminal-dot.yellow { background: #f39c12; }
.terminal-dot.green { background: #2ecc71; }

.terminal-title {
	margin-left: 8px;
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.75rem;
	color: #5a5a5e;
}

.terminal-body {
	padding: 20px;
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.82rem;
	line-height: 1.7;
}

.term-line {
	white-space: pre-wrap;
	word-break: break-all;
}

.prompt {
	color: #e74c3c;
	user-select: none;
}

.command {
	color: #f5f3f0;
}

.output {
	color: #6a6a6e;
}

.cursor {
	animation: blink 1s step-end infinite;
	color: #e74c3c;
}

@keyframes blink {
	50% { opacity: 0; }
}

.delayed {
	opacity: 0;
	transition: opacity 0.4s ease;
}

.delayed.show {
	opacity: 1;
}

/* ===== FAQ ===== */
.faq {
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-list {
	max-width: 680px;
	margin: 0 auto;
	text-align: left;
}

.faq-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-question {
	width: 100%;
	padding: 22px 0;
	background: none;
	border: none;
	color: #f5f3f0;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

.faq-chevron {
	font-size: 1.3rem;
	color: #e74c3c;
	transition: transform 0.3s;
	flex-shrink: 0;
}

.faq-item.open .faq-chevron {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
	max-height: 600px;
	padding-bottom: 22px;
}

.faq-answer p {
	font-size: 0.92rem;
	color: #7a7a7e;
	line-height: 1.8;
}

/* ===== Waitlist ===== */
.waitlist {
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.waitlist-inner {
	max-width: 560px;
	margin: 0 auto;
}

.waitlist-form {
	display: flex;
	gap: 12px;
	margin-top: 32px;
	justify-content: center;
}

.waitlist-form input {
	padding: 14px 20px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	color: #f5f3f0;
	font-family: inherit;
	font-size: 0.92rem;
	flex: 1;
	max-width: 320px;
	outline: none;
	transition: border-color 0.2s;
}

.waitlist-form input:focus {
	border-color: #e74c3c;
}

.waitlist-form input::placeholder {
	color: #5a5a5e;
}

/* ===== Footer ===== */
.footer {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding: 60px 0 40px;
}

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

.footer-brand .nav-logo {
	margin-bottom: 10px;
}

.footer-tagline {
	font-size: 0.85rem;
	color: #5a5a5e;
}

.footer-col h4 {
	font-size: 0.78rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #8a8a8e;
	margin-bottom: 16px;
}

.footer-col a {
	display: block;
	font-size: 0.88rem;
	color: #5a5a5e;
	padding: 4px 0;
	transition: color 0.2s;
}

.footer-col a:hover {
	color: #f5f3f0;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding-top: 28px;
	text-align: center;
}

.footer-bottom > p {
	font-size: 0.82rem;
	color: #5a5a5e;
	margin-bottom: 24px;
}

.mando-link {
	color: #e74c3c;
	font-weight: 600;
	transition: color 0.2s;
}

.mando-link:hover {
	color: #c0392b;
}

/* ===== Portfolio Banner ===== */
.portfolio-banner {
	margin-top: 16px;
}

.portfolio-label {
	font-size: 0.68rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: #3a3a3e;
	margin-bottom: 12px;
}

.portfolio-scroll {
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.portfolio-track {
	display: flex;
	gap: 8px;
	animation: scroll-portfolio 60s linear infinite;
	width: max-content;
}

.portfolio-track a {
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.7rem;
	color: #3a3a3e;
	padding: 4px 10px;
	border: 1px solid rgba(255, 255, 255, 0.04);
	border-radius: 4px;
	white-space: nowrap;
	transition: color 0.2s, border-color 0.2s;
	flex-shrink: 0;
}

.portfolio-track a:hover {
	color: #e74c3c;
	border-color: rgba(231, 76, 60, 0.3);
}

@keyframes scroll-portfolio {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* ===== Modals ===== */
.modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(8px);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
}

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

.modal {
	background: #1a1a1e;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 40px;
	max-width: 420px;
	width: 90%;
	text-align: center;
	position: relative;
}

.modal h3 {
	font-size: 1.3rem;
	font-weight: 700;
	color: #f5f3f0;
	margin-bottom: 12px;
}

.modal p {
	font-size: 0.92rem;
	color: #7a7a7e;
	line-height: 1.7;
	margin-bottom: 24px;
}

.modal-close {
	position: absolute;
	top: 16px;
	right: 20px;
	background: none;
	border: none;
	color: #5a5a5e;
	font-size: 1.5rem;
	cursor: pointer;
	transition: color 0.2s;
}

.modal-close:hover {
	color: #f5f3f0;
}

.modal-close-btn {
	background: none;
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #8a8a8e;
	padding: 10px 28px;
	border-radius: 8px;
	font-family: inherit;
	font-size: 0.88rem;
	cursor: pointer;
	transition: border-color 0.2s;
}

.modal-close-btn:hover {
	border-color: rgba(255, 255, 255, 0.35);
}

.modal-cta {
	margin-top: 0;
}

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

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

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

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

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

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

@media (max-width: 640px) {
	.nav-links {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(13, 13, 15, 0.95);
		backdrop-filter: blur(16px);
		flex-direction: column;
		padding: 20px 24px;
		gap: 12px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	}

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

	.nav-mobile-toggle {
		display: block;
	}

	.hero {
		padding: 120px 0 80px;
		min-height: auto;
	}

	.hero h1 {
		font-size: 1.8rem;
	}

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

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

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

	.waitlist-form {
		flex-direction: column;
		align-items: center;
	}

	.waitlist-form input {
		max-width: 100%;
	}

	.trust-badges {
		gap: 20px;
	}
}

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

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

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