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

:root {
	--white: #ffffff;
	--black: #0a0a0a;
	--coral: #ff6b5a;
	--coral-dark: #e85545;
	--coral-light: #ff8a7d;
	--gray-100: #f5f5f5;
	--gray-200: #e8e8e8;
	--gray-400: #999999;
	--gray-600: #666666;
	--gray-800: #333333;
	--font: 'Syne', sans-serif;
	--max-width: 1200px;
	--radius: 12px;
	--radius-sm: 8px;
}

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

body {
	font-family: var(--font);
	background: var(--white);
	color: var(--black);
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

.container {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 2rem;
}

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

ul {
	list-style: none;
}

/* === Nav === */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--gray-200);
	transition: box-shadow 0.3s;
}

.nav.scrolled {
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
}

.nav-logo {
	font-weight: 800;
	font-size: 1.5rem;
	letter-spacing: 0.1em;
	color: var(--black);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.nav-links a {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--gray-600);
	transition: color 0.2s;
}

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

.nav-cta {
	background: var(--coral);
	color: var(--white) !important;
	padding: 0.5rem 1.25rem;
	border-radius: 6px;
	font-weight: 600;
	transition: background 0.2s !important;
}

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

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

.nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--black);
	transition: transform 0.3s, opacity 0.3s;
}

/* === Hero === */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 120px 2rem 80px;
	overflow: hidden;
	background: var(--white);
}

.hero-bg-anim {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.circle {
	position: absolute;
	border-radius: 50%;
	border: 2px solid var(--coral);
	opacity: 0.12;
}

.c1 {
	width: 600px;
	height: 600px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: pulse 6s ease-in-out infinite;
}

.c2 {
	width: 400px;
	height: 400px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: pulse 6s ease-in-out infinite 1s;
}

.c3 {
	width: 200px;
	height: 200px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: pulse 6s ease-in-out infinite 2s;
}

@keyframes pulse {
	0%, 100% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0.12;
	}
	50% {
		transform: translate(-50%, -50%) scale(1.15);
		opacity: 0.06;
	}
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
}

.hero-eyebrow {
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--coral);
	margin-bottom: 1.5rem;
}

.hero-title {
	font-size: clamp(3.5rem, 10vw, 8rem);
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: -0.03em;
	margin-bottom: 1.5rem;
	color: var(--black);
}

.hero-sub {
	font-size: 1.25rem;
	line-height: 1.6;
	color: var(--gray-600);
	max-width: 600px;
	margin: 0 auto 2.5rem;
}

.hero-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* === Buttons === */
.btn {
	display: inline-block;
	padding: 0.85rem 2rem;
	border-radius: var(--radius-sm);
	font-family: var(--font);
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	border: 2px solid transparent;
	text-align: center;
}

.btn-primary {
	background: var(--coral);
	color: var(--white);
	border-color: var(--coral);
}

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

.btn-outline {
	background: transparent;
	color: var(--black);
	border-color: var(--gray-200);
}

.btn-outline:hover {
	border-color: var(--black);
}

.btn-block {
	display: block;
	width: 100%;
}

/* === Sections === */
section {
	padding: 100px 0;
}

.section-title {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 800;
	text-align: center;
	letter-spacing: -0.02em;
	margin-bottom: 0.75rem;
}

.section-subtitle {
	text-align: center;
	color: var(--gray-600);
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto 3.5rem;
}

.section-label {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--coral);
	margin-bottom: 2rem;
}

/* === Manifesto === */
.manifesto {
	background: var(--gray-100);
	border-top: 1px solid var(--gray-200);
	border-bottom: 1px solid var(--gray-200);
}

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

.manifesto-body p {
	font-size: 1.2rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	color: var(--gray-800);
}

.manifesto-body strong {
	color: var(--black);
}

/* === Features === */
.features {
	background: var(--white);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
	gap: 2rem;
}

.feature-card {
	padding: 2.5rem 2rem;
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.feature-icon {
	font-size: 2rem;
	color: var(--coral);
	margin-bottom: 1rem;
}

.feature-card h3 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.feature-card p {
	color: var(--gray-600);
	font-size: 0.95rem;
	line-height: 1.7;
}

.feature-card code {
	background: var(--gray-100);
	padding: 0.15em 0.4em;
	border-radius: 4px;
	font-size: 0.85em;
}

/* === How It Works === */
.how-it-works {
	background: var(--gray-100);
}

.steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 3rem;
	max-width: 960px;
	margin: 0 auto;
}

.step {
	text-align: center;
}

.step-num {
	font-size: 4rem;
	font-weight: 800;
	color: var(--coral);
	opacity: 0.25;
	line-height: 1;
	margin-bottom: 1rem;
}

.step h3 {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.step p {
	color: var(--gray-600);
	font-size: 0.95rem;
	line-height: 1.7;
}

.step code {
	background: var(--gray-200);
	padding: 0.15em 0.4em;
	border-radius: 4px;
	font-size: 0.85em;
}

/* === Stats === */
.stats {
	background: var(--black);
	color: var(--white);
	padding: 80px 0;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	text-align: center;
}

.stat-value {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 800;
	color: var(--coral);
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 0.9rem;
	opacity: 0.7;
	letter-spacing: 0.05em;
}

/* === Case Study === */
.case-study {
	background: var(--white);
	border-bottom: 1px solid var(--gray-200);
}

.case-study-content {
	max-width: 720px;
}

.case-study-title {
	font-size: 1.8rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	line-height: 1.3;
}

.case-study-content p {
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--gray-600);
	margin-bottom: 1.25rem;
}

.case-study-quote {
	margin-top: 2rem;
	padding: 2rem;
	border-left: 4px solid var(--coral);
	background: var(--gray-100);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	font-size: 1.1rem;
	font-style: italic;
	line-height: 1.7;
	color: var(--gray-800);
}

.case-study-quote cite {
	display: block;
	margin-top: 1rem;
	font-style: normal;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--gray-600);
}

/* === Pricing === */
.pricing {
	background: var(--gray-100);
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	max-width: 960px;
	margin: 0 auto;
}

.pricing-card {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	padding: 2.5rem 2rem;
	position: relative;
	transition: transform 0.3s;
}

.pricing-card:hover {
	transform: translateY(-4px);
}

.pricing-card.featured {
	border-color: var(--coral);
	box-shadow: 0 8px 40px rgba(255, 107, 90, 0.15);
}

.pricing-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--coral);
	color: var(--white);
	padding: 0.3rem 1rem;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.pricing-card h3 {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.price {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 0.25rem;
}

.price span {
	font-size: 1rem;
	font-weight: 500;
	color: var(--gray-400);
}

.price-desc {
	color: var(--gray-600);
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
}

.pricing-card ul {
	margin-bottom: 2rem;
}

.pricing-card li {
	padding: 0.5rem 0;
	font-size: 0.95rem;
	color: var(--gray-600);
	border-bottom: 1px solid var(--gray-100);
}

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

.pricing-card code {
	background: var(--gray-100);
	padding: 0.1em 0.35em;
	border-radius: 4px;
	font-size: 0.85em;
}

/* === Testimonials === */
.testimonials {
	background: var(--white);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.testimonial {
	background: var(--gray-100);
	border-radius: var(--radius);
	padding: 2rem;
}

.testimonial-text {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--gray-800);
	margin-bottom: 1.5rem;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

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

.testimonial-author strong {
	display: block;
	font-size: 0.95rem;
}

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

/* === Demo === */
.demo {
	background: var(--black);
	color: var(--white);
}

.demo .section-title {
	color: var(--white);
}

.demo .section-subtitle {
	color: var(--gray-400);
}

.terminal {
	max-width: 680px;
	margin: 0 auto 2rem;
	border-radius: var(--radius);
	overflow: hidden;
	background: #1a1a1a;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.terminal-bar {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	background: #2a2a2a;
}

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

.terminal-dot.red { background: #ff5f57; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #28c840; }

.terminal-title {
	margin-left: auto;
	font-size: 0.75rem;
	color: var(--gray-400);
	font-family: monospace;
}

.terminal-body {
	padding: 1.5rem;
	font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
	font-size: 0.95rem;
	line-height: 1.8;
}

.terminal-line {
	display: flex;
	gap: 0.75rem;
	align-items: center;
}

.prompt {
	color: var(--coral);
	font-weight: 700;
}

.cmd {
	color: var(--white);
}

.cursor {
	animation: blink 1s step-end infinite;
	color: var(--coral);
}

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

.terminal-output {
	color: var(--gray-400);
	padding-left: 1.5rem;
	min-height: 0;
}

.demo-note {
	text-align: center;
	color: var(--gray-400);
	font-size: 0.9rem;
}

/* === Team === */
.team {
	background: var(--gray-100);
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2rem;
	max-width: 900px;
	margin: 0 auto;
}

.team-member {
	text-align: center;
	padding: 2.5rem 2rem;
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
}

.team-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: var(--black);
	color: var(--coral);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 1.5rem;
	margin: 0 auto 1.25rem;
}

.team-member h3 {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
}

.team-role {
	font-size: 0.85rem;
	color: var(--coral);
	font-weight: 600;
	margin-bottom: 1rem;
}

.team-quote {
	font-size: 0.9rem;
	color: var(--gray-600);
	font-style: italic;
	line-height: 1.6;
}

/* === FAQ === */
.faq {
	background: var(--white);
}

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

.faq-item {
	border-bottom: 1px solid var(--gray-200);
}

.faq-question {
	width: 100%;
	text-align: left;
	padding: 1.25rem 0;
	background: none;
	border: none;
	font-family: var(--font);
	font-size: 1.1rem;
	font-weight: 700;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--black);
	transition: color 0.2s;
}

.faq-question::after {
	content: '+';
	font-size: 1.5rem;
	font-weight: 300;
	color: var(--coral);
	transition: transform 0.3s;
	flex-shrink: 0;
	margin-left: 1rem;
}

.faq-item.active .faq-question::after {
	transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
	max-height: 500px;
	padding-bottom: 1.25rem;
}

.faq-answer p {
	color: var(--gray-600);
	line-height: 1.7;
	font-size: 0.95rem;
}

/* === Portfolio Banner === */
.portfolio-banner {
	background: var(--black);
	color: var(--white);
	padding: 60px 0;
	text-align: center;
}

.portfolio-banner h2 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.portfolio-banner p {
	color: var(--gray-400);
	margin-bottom: 2rem;
	font-size: 0.95rem;
}

.portfolio-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem 1.25rem;
	margin-bottom: 2rem;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.portfolio-list a {
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--gray-400);
	transition: color 0.2s;
}

.portfolio-list a:hover {
	color: var(--coral);
}

.current-brand {
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--coral);
}

.portfolio-cta {
	border-color: rgba(255, 255, 255, 0.2);
	color: var(--white);
}

.portfolio-cta:hover {
	border-color: var(--white);
}

.mando-link {
	color: var(--coral);
	font-weight: 700;
	transition: opacity 0.2s;
}

.mando-link:hover {
	opacity: 0.8;
}

/* === Footer === */
.footer {
	background: var(--gray-100);
	border-top: 1px solid var(--gray-200);
	padding: 60px 0 30px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-logo {
	font-weight: 800;
	font-size: 1.5rem;
	letter-spacing: 0.1em;
	margin-bottom: 0.75rem;
}

.footer-brand p {
	color: var(--gray-600);
	font-size: 0.9rem;
	line-height: 1.6;
}

.footer-col h4 {
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--gray-400);
	margin-bottom: 1rem;
}

.footer-col li {
	margin-bottom: 0.5rem;
}

.footer-col a {
	font-size: 0.9rem;
	color: var(--gray-600);
	transition: color 0.2s;
}

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

.footer-bottom {
	border-top: 1px solid var(--gray-200);
	padding-top: 1.5rem;
	text-align: center;
}

.footer-bottom p {
	font-size: 0.8rem;
	color: var(--gray-400);
}

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

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

.modal {
	background: var(--white);
	border-radius: var(--radius);
	padding: 2.5rem;
	max-width: 420px;
	width: 90%;
	position: relative;
	transform: translateY(20px);
	transition: transform 0.3s;
}

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

.modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--gray-400);
	transition: color 0.2s;
}

.modal-close:hover {
	color: var(--black);
}

.modal h3 {
	font-size: 1.3rem;
	font-weight: 800;
	margin-bottom: 0.75rem;
}

.modal p {
	color: var(--gray-600);
	line-height: 1.6;
}

.modal code {
	background: var(--gray-100);
	padding: 0.1em 0.35em;
	border-radius: 4px;
	font-size: 0.9em;
}

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

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

/* === Responsive === */
@media (max-width: 768px) {
	.nav-links {
		position: fixed;
		top: 64px;
		left: 0;
		right: 0;
		background: var(--white);
		flex-direction: column;
		padding: 2rem;
		gap: 1rem;
		border-bottom: 1px solid var(--gray-200);
		transform: translateY(-100%);
		opacity: 0;
		pointer-events: none;
		transition: transform 0.3s, opacity 0.3s;
	}

	.nav-links.open {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}

	.nav-toggle {
		display: flex;
	}

	.hero-title {
		font-size: clamp(2.5rem, 12vw, 4.5rem);
	}

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

	.steps {
		gap: 2rem;
	}

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

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

/* 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: #ff6600 !important;
	border-color: #ff6600 !important;
	opacity: 1 !important;
}

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

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