/* ===== Tokens ===== */
:root {
	--teal: #0d9488;
	--lime: #84cc16;
	--teal-light: #ccfbf1;
	--lime-light: #ecfccb;
	--gradient: linear-gradient(135deg, var(--teal), var(--lime));
	--gradient-soft: linear-gradient(135deg, #f0fdfa, #f7fee7);
	--bg: #ffffff;
	--bg-alt: #f8fafb;
	--text: #1e293b;
	--text-muted: #64748b;
	--border: #e2e8f0;
	--radius: 12px;
	--radius-lg: 20px;
	--shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
	--shadow-lg: 0 10px 25px rgba(0,0,0,.08);
	--font: 'Nunito', system-ui, sans-serif;
	--transition: .3s cubic-bezier(.4,0,.2,1);
}

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

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

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

img, svg {
	display: block;
	max-width: 100%;
}

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

a:hover {
	color: var(--lime);
}

code {
	font-family: 'SF Mono', 'Fira Code', monospace;
	font-size: .875em;
	background: var(--teal-light);
	padding: .15em .4em;
	border-radius: 4px;
	color: var(--teal);
}

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

/* ===== Gradient Text ===== */
.gradient-text {
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ===== Section Utilities ===== */
.section-badge {
	display: inline-block;
	font-size: .8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--teal);
	background: var(--teal-light);
	padding: 4px 14px;
	border-radius: 100px;
	margin-bottom: 16px;
}

.section-sub {
	font-size: 1.15rem;
	color: var(--text-muted);
	max-width: 640px;
	margin: 0 auto 48px;
}

section {
	padding: 96px 0;
}

section h2 {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	margin-bottom: 12px;
}

section:not(.hero):not(.stats):not(.portfolio-banner) .container {
	text-align: center;
}

/* ===== Buttons ===== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	border-radius: 100px;
	font-family: var(--font);
	font-weight: 700;
	font-size: .95rem;
	cursor: pointer;
	border: 2px solid transparent;
	transition: all var(--transition);
	text-decoration: none;
}

.btn-primary {
	background: var(--gradient);
	color: #fff;
	border-color: transparent;
}

.btn-primary:hover {
	opacity: .9;
	transform: translateY(-1px);
	color: #fff;
}

.btn-secondary {
	background: transparent;
	color: var(--teal);
	border-color: var(--teal);
}

.btn-secondary:hover {
	background: var(--teal-light);
	color: var(--teal);
}

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

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

/* ===== Nav ===== */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255,255,255,.85);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid transparent;
	transition: border-color var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
	border-bottom-color: var(--border);
	box-shadow: var(--shadow);
}

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

.nav-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 800;
	font-size: 1.15rem;
	color: var(--text);
}

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

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

.nav-links a {
	color: var(--text-muted);
	font-weight: 600;
	font-size: .9rem;
}

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

.nav-cta {
	background: var(--gradient);
	color: #fff !important;
	padding: 8px 20px;
	border-radius: 100px;
	font-size: .85rem !important;
}

.nav-cta:hover {
	opacity: .9;
	color: #fff !important;
}

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

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

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

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

.hero-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: .35;
}

.hero-orb-1 {
	width: 500px;
	height: 500px;
	background: var(--teal);
	top: -120px;
	right: -100px;
	animation: orb-drift 18s ease-in-out infinite alternate;
}

.hero-orb-2 {
	width: 400px;
	height: 400px;
	background: var(--lime);
	bottom: -80px;
	left: -60px;
	animation: orb-drift 22s ease-in-out infinite alternate-reverse;
}

.hero-orb-3 {
	width: 300px;
	height: 300px;
	background: #5eead4;
	top: 40%;
	left: 50%;
	animation: orb-drift 15s ease-in-out infinite alternate;
}

@keyframes orb-drift {
	0% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(40px, -30px) scale(1.1); }
	100% { transform: translate(-20px, 20px) scale(.95); }
}

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

.hero-badge {
	display: inline-block;
	font-size: .8rem;
	font-weight: 700;
	color: var(--text-muted);
	background: rgba(255,255,255,.7);
	padding: 6px 16px;
	border-radius: 100px;
	margin-bottom: 24px;
	backdrop-filter: blur(8px);
}

.hero-badge a {
	color: var(--teal);
	font-weight: 800;
}

.hero h1 {
	font-size: clamp(2.5rem, 7vw, 4.5rem);
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 20px;
}

.hero-sub {
	font-size: 1.2rem;
	color: var(--text-muted);
	max-width: 560px;
	margin: 0 auto 32px;
	line-height: 1.7;
}

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

.hero-metrics {
	display: flex;
	justify-content: center;
	gap: 48px;
	flex-wrap: wrap;
}

.hero-metric strong {
	display: block;
	font-size: 1.6rem;
	font-weight: 900;
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-metric span {
	font-size: .85rem;
	color: var(--text-muted);
	font-weight: 600;
}

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

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
	text-align: left;
}

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

.feature-card:hover {
	border-color: var(--teal);
	box-shadow: var(--shadow-lg);
	transform: translateY(-2px);
}

.feature-icon {
	font-size: 1.8rem;
	margin-bottom: 16px;
}

.feature-card h3 {
	font-size: 1.1rem;
	font-weight: 800;
	margin-bottom: 8px;
}

.feature-card p {
	font-size: .9rem;
	color: var(--text-muted);
	line-height: 1.6;
}

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

.steps {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
	text-align: left;
}

.step {
	flex: 1;
	min-width: 220px;
	max-width: 300px;
	background: #fff;
	border-radius: var(--radius);
	padding: 32px 28px;
	box-shadow: var(--shadow);
}

.step-num {
	font-size: 2rem;
	font-weight: 900;
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 12px;
}

.step h3 {
	font-size: 1.15rem;
	font-weight: 800;
	margin-bottom: 8px;
}

.step p {
	font-size: .9rem;
	color: var(--text-muted);
}

.step-arrow {
	font-size: 2rem;
	color: var(--teal);
	font-weight: 700;
	padding-top: 40px;
}

/* ===== Demo ===== */
.demo {
	background: var(--bg);
}

.demo-terminal {
	max-width: 720px;
	margin: 0 auto;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--border);
	text-align: left;
}

.term-bar {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	background: #f1f5f9;
	border-bottom: 1px solid var(--border);
}

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

.term-dot.red { background: #f87171; }
.term-dot.yellow { background: #fbbf24; }
.term-dot.green { background: #34d399; }

.term-title {
	margin-left: auto;
	font-size: .75rem;
	color: var(--text-muted);
	font-weight: 600;
}

.term-body {
	background: #1e293b;
	padding: 20px 24px;
	font-family: 'SF Mono', 'Fira Code', monospace;
	font-size: .85rem;
	line-height: 1.7;
	color: #e2e8f0;
	min-height: 280px;
}

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

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

.cmd {
	color: #f8fafc;
}

.term-line.output {
	color: #94a3b8;
}

.cursor {
	display: inline;
	animation: blink 1s step-end infinite;
}

@keyframes blink {
	0%, 50% { opacity: 1; }
	51%, 100% { opacity: 0; }
}

/* ===== Stats ===== */
.stats {
	background: var(--gradient);
	color: #fff;
	padding: 72px 0;
}

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

.stat-value {
	font-size: 3.5rem;
	font-weight: 900;
	display: inline;
}

.stat-unit {
	font-size: 1.5rem;
	font-weight: 700;
	display: inline;
	opacity: .8;
}

.stat-label {
	font-size: .9rem;
	opacity: .8;
	margin-top: 4px;
}

/* ===== Comparison ===== */
.comparison {
	background: var(--bg-alt);
}

.comparison-table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.comparison-table {
	width: 100%;
	min-width: 600px;
	border-collapse: collapse;
	text-align: left;
	background: #fff;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
	padding: 14px 20px;
	font-size: .9rem;
	border-bottom: 1px solid var(--border);
}

.comparison-table th {
	background: #f8fafb;
	font-weight: 700;
	color: var(--text-muted);
	font-size: .8rem;
	text-transform: uppercase;
	letter-spacing: .05em;
}

.highlight-col {
	background: rgba(13, 148, 136, .05);
	font-weight: 700;
	color: var(--teal);
}

.comparison-table thead .highlight-col {
	background: var(--teal);
	color: #fff;
}

/* ===== Activity Feed ===== */
.activity {
	background: var(--bg);
}

.activity-feed {
	max-width: 640px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
	text-align: left;
}

.activity-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 20px;
	background: var(--bg-alt);
	border-radius: var(--radius);
	border: 1px solid var(--border);
	font-size: .9rem;
	animation: fade-in-up .4s ease-out;
}

.activity-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--lime);
	flex-shrink: 0;
}

.activity-time {
	margin-left: auto;
	color: var(--text-muted);
	font-size: .8rem;
	white-space: nowrap;
}

@keyframes fade-in-up {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ===== Pricing ===== */
.pricing {
	background: var(--gradient-soft);
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 24px;
	text-align: left;
}

.pricing-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 36px 28px;
	position: relative;
	transition: all var(--transition);
}

.pricing-card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-2px);
}

.pricing-card.popular {
	border-color: var(--teal);
	box-shadow: 0 0 0 1px var(--teal), var(--shadow-lg);
}

.pricing-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--gradient);
	color: #fff;
	font-size: .75rem;
	font-weight: 700;
	padding: 4px 16px;
	border-radius: 100px;
	white-space: nowrap;
}

.pricing-name {
	font-size: 1rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: var(--text-muted);
	margin-bottom: 8px;
}

.pricing-price {
	font-size: 2.5rem;
	font-weight: 900;
	margin-bottom: 8px;
}

.pricing-price span {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-muted);
}

.pricing-desc {
	font-size: .9rem;
	color: var(--text-muted);
	margin-bottom: 24px;
}

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

.pricing-features li {
	padding: 6px 0;
	font-size: .9rem;
	position: relative;
	padding-left: 22px;
}

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

.pricing-card .btn {
	width: 100%;
}

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

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
	text-align: left;
}

.testimonial-card {
	background: var(--bg-alt);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px 24px;
}

.testimonial-stars {
	color: #fbbf24;
	font-size: 1rem;
	margin-bottom: 12px;
}

.testimonial-card > p {
	font-size: .95rem;
	color: var(--text);
	line-height: 1.7;
	margin-bottom: 20px;
	font-style: italic;
}

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

.testimonial-avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--gradient);
	color: #fff;
	font-weight: 800;
	font-size: .8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

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

.testimonial-author span {
	font-size: .8rem;
	color: var(--text-muted);
}

/* ===== Changelog ===== */
.changelog {
	background: var(--bg-alt);
}

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

.changelog-entry {
	display: flex;
	gap: 20px;
	padding: 24px 0;
	border-bottom: 1px solid var(--border);
}

.changelog-entry:last-child {
	border-bottom: none;
}

.changelog-version {
	flex-shrink: 0;
	font-weight: 900;
	font-size: .9rem;
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	padding-top: 2px;
}

.changelog-content h3 {
	font-size: 1rem;
	font-weight: 800;
	margin-bottom: 6px;
}

.changelog-content p {
	font-size: .9rem;
	color: var(--text-muted);
	margin-bottom: 10px;
}

.changelog-tags {
	display: flex;
	gap: 8px;
}

.tag {
	font-size: .7rem;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 100px;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.tag-feature {
	background: var(--teal-light);
	color: var(--teal);
}

.tag-perf {
	background: var(--lime-light);
	color: #65a30d;
}

.tag-improvement {
	background: #e0e7ff;
	color: #4338ca;
}

.tag-ga {
	background: #fde68a;
	color: #92400e;
}

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

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

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

.faq-item summary {
	padding: 20px 0;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.faq-item summary::after {
	content: '+';
	font-size: 1.4rem;
	color: var(--teal);
	flex-shrink: 0;
	transition: transform var(--transition);
}

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

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item p {
	padding: 0 0 20px;
	font-size: .95rem;
	color: var(--text-muted);
	line-height: 1.7;
}

/* ===== Portfolio Banner ===== */
.portfolio-banner {
	background: #f1f5f9;
	padding: 56px 0;
	text-align: center;
}

.portfolio-banner h2 {
	font-size: 1.4rem;
	font-weight: 800;
	margin-bottom: 24px;
}

.portfolio-banner h2 a {
	color: var(--teal);
}

.portfolio-scroll {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 18px;
	font-size: .85rem;
	font-weight: 600;
}

.portfolio-scroll a {
	color: var(--text-muted);
	transition: color var(--transition);
}

.portfolio-scroll a:hover {
	color: var(--teal);
}

.portfolio-current {
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 800;
}

/* ===== Footer ===== */
.footer {
	background: #fff;
	border-top: 1px solid var(--border);
	padding: 56px 0 32px;
}

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

.footer-brand p {
	font-size: .9rem;
	color: var(--text-muted);
	margin-top: 12px;
}

.footer-col {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-col h4 {
	font-size: .8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--text-muted);
	margin-bottom: 4px;
}

.footer-col a {
	font-size: .9rem;
	color: var(--text-muted);
}

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

.footer-bottom {
	display: flex;
	justify-content: space-between;
	border-top: 1px solid var(--border);
	padding-top: 24px;
	font-size: .8rem;
	color: var(--text-muted);
}

/* ===== Modal ===== */
.modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0,0,0,.4);
	backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all var(--transition);
}

.modal-overlay.active {
	opacity: 1;
	visibility: visible;
}

.modal-card {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 40px 36px;
	text-align: center;
	max-width: 380px;
	width: 90%;
	box-shadow: var(--shadow-lg);
	transform: translateY(20px);
	transition: transform var(--transition);
	position: relative;
}

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

.modal-close {
	position: absolute;
	top: 12px;
	right: 16px;
	background: none;
	border: none;
	font-size: 1.6rem;
	cursor: pointer;
	color: var(--text-muted);
}

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

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

.modal-card p {
	color: var(--text-muted);
	font-size: .95rem;
	margin-bottom: 20px;
}

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

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

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

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

	.nav-toggle {
		display: flex;
	}

	.step-arrow {
		display: none;
	}

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

	.step {
		max-width: 100%;
	}

	.hero-metrics {
		gap: 24px;
	}

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

	.footer-bottom {
		flex-direction: column;
		gap: 8px;
		text-align: center;
	}

	.pricing-grid {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin: 0 auto;
	}

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

@media (max-width: 480px) {
	section {
		padding: 64px 0;
	}

	.hero {
		padding: 100px 16px 60px;
	}

	.footer-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 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: #0d9488;
	color: #fff;
	border: 1px solid #0d9488;
}

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

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