:root {
	--bg: #07080c;
	--bg-card: #0d0f16;
	--bg-surface: #111320;
	--blue: #00b4ff;
	--blue-glow: rgba(0, 180, 255, 0.15);
	--blue-dim: #0077aa;
	--text: #e8ecf4;
	--text-dim: #7a8299;
	--text-muted: #4a5068;
	--border: rgba(255, 255, 255, 0.06);
	--border-blue: rgba(0, 180, 255, 0.2);
	--green: #00ff88;
	--red: #ff4444;
	--yellow: #ffaa00;
	--font-display: 'Syne', sans-serif;
	--font-body: 'Inter', sans-serif;
	--radius: 12px;
	--radius-sm: 8px;
}

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

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
}

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

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

a {
	color: var(--blue);
	text-decoration: none;
	transition: opacity 0.2s;
}

a:hover {
	opacity: 0.8;
}

code {
	font-family: 'SF Mono', 'Consolas', monospace;
	background: rgba(0, 180, 255, 0.1);
	border: 1px solid var(--border-blue);
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 0.85em;
	color: var(--blue);
}

.text-blue {
	color: var(--blue);
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--font-body);
	font-weight: 600;
	border: none;
	cursor: pointer;
	border-radius: var(--radius-sm);
	transition: all 0.25s ease;
	text-decoration: none;
	font-size: 0.95rem;
	padding: 12px 24px;
}

.btn-primary {
	background: var(--blue);
	color: #000;
	box-shadow: 0 0 24px var(--blue-glow);
}

.btn-primary:hover {
	opacity: 1;
	box-shadow: 0 0 40px rgba(0, 180, 255, 0.3);
	transform: translateY(-1px);
}

.btn-outline {
	background: transparent;
	color: var(--text);
	border: 1px solid var(--border);
}

.btn-outline:hover {
	border-color: var(--blue);
	opacity: 1;
}

.btn-large {
	padding: 16px 36px;
	font-size: 1.05rem;
	border-radius: var(--radius);
}

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

.btn-full {
	width: 100%;
}

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

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

.modal-card {
	background: var(--bg-surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 48px;
	text-align: center;
	max-width: 400px;
	width: 90%;
	transform: scale(0.9);
	transition: transform 0.3s;
}

.modal-overlay.active .modal-card {
	transform: scale(1);
}

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

.modal-icon {
	font-size: 3rem;
	margin-bottom: 16px;
}

.modal-card h3 {
	font-family: var(--font-display);
	font-size: 1.5rem;
	margin-bottom: 8px;
}

.modal-card p {
	color: var(--text-dim);
	margin-bottom: 24px;
}

.modal-card {
	position: relative;
}

/* Navbar */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 16px 0;
	transition: all 0.3s;
	background: transparent;
}

.navbar.scrolled {
	background: rgba(7, 8, 12, 0.9);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--border);
	padding: 12px 0;
}

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

.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.3rem;
	color: var(--text);
	letter-spacing: 0.02em;
}

.nav-logo:hover {
	opacity: 1;
}

.logo-icon {
	flex-shrink: 0;
}

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

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

.nav-links a:hover {
	color: var(--text);
	opacity: 1;
}

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

.mobile-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--text);
	border-radius: 1px;
	transition: all 0.3s;
}

/* Hero */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 120px 24px 80px;
	overflow: hidden;
}

#network-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0.4;
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 800px;
}

.hero-badge {
	display: inline-block;
	padding: 6px 16px;
	border-radius: 100px;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--blue);
	border: 1px solid var(--border-blue);
	background: var(--blue-glow);
	margin-bottom: 24px;
}

.hero h1 {
	font-family: var(--font-display);
	font-size: clamp(3.5rem, 8vw, 6rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.02em;
	margin-bottom: 24px;
}

.hero-sub {
	font-size: 1.15rem;
	color: var(--text-dim);
	max-width: 600px;
	margin: 0 auto 40px;
	line-height: 1.7;
}

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

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

.hero-stat {
	text-align: center;
}

.hero-stat-num {
	display: block;
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 800;
	color: var(--blue);
}

.hero-stat-label {
	font-size: 0.8rem;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

/* Section Headers */
.section-header {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 64px;
}

.section-tag {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 16px;
}

.section-header h2 {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 16px;
}

.section-header p {
	color: var(--text-dim);
	font-size: 1.05rem;
	line-height: 1.7;
}

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

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

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

.feature-card:hover {
	border-color: var(--border-blue);
	box-shadow: 0 0 32px var(--blue-glow);
	transform: translateY(-4px);
}

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

.feature-card h3 {
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 8px;
}

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

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

.steps {
	max-width: 700px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.step {
	display: flex;
	gap: 32px;
	align-items: flex-start;
}

.step-number {
	font-family: var(--font-display);
	font-size: 3rem;
	font-weight: 800;
	color: var(--blue);
	opacity: 0.3;
	flex-shrink: 0;
	line-height: 1;
}

.step-content h3 {
	font-family: var(--font-display);
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 8px;
}

.step-content p {
	color: var(--text-dim);
	font-size: 0.95rem;
	line-height: 1.7;
}

/* Live Graph */
.live-graph {
	padding: 120px 0;
}

.graph-container {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px;
	position: relative;
}

#connection-graph {
	width: 100%;
	height: 400px;
	display: block;
	border-radius: var(--radius-sm);
}

.graph-legend {
	display: flex;
	gap: 24px;
	justify-content: center;
	margin-top: 20px;
	flex-wrap: wrap;
}

.legend-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.8rem;
	color: var(--text-dim);
}

.legend-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

/* Connection Table */
.connection-table-section {
	padding: 120px 0;
	background: var(--bg-card);
}

.table-wrapper {
	overflow-x: auto;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--bg);
}

.connection-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.85rem;
	font-family: 'SF Mono', 'Consolas', monospace;
}

.connection-table th {
	background: var(--bg-surface);
	padding: 14px 16px;
	text-align: left;
	font-weight: 600;
	color: var(--text-dim);
	border-bottom: 1px solid var(--border);
	cursor: pointer;
	white-space: nowrap;
	user-select: none;
	transition: color 0.2s;
}

.connection-table th:hover {
	color: var(--blue);
}

.connection-table th.sorted-asc .sort-arrow,
.connection-table th.sorted-desc .sort-arrow {
	color: var(--blue);
}

.sort-arrow {
	font-size: 0.7rem;
	margin-left: 4px;
	color: var(--text-muted);
}

.connection-table td {
	padding: 10px 16px;
	border-bottom: 1px solid var(--border);
	white-space: nowrap;
	color: var(--text-dim);
}

.connection-table tr:hover td {
	background: rgba(0, 180, 255, 0.03);
}

.connection-table .state-established {
	color: var(--green);
}

.connection-table .state-listen {
	color: var(--blue);
}

.connection-table .state-timewait {
	color: var(--red);
}

.connection-table .state-synsent {
	color: var(--yellow);
}

/* Protocol Stats */
.protocol-stats {
	padding: 120px 0;
}

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

.stat-panel {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px;
}

.stat-panel h4 {
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--blue);
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.stat-row {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	border-bottom: 1px solid var(--border);
	font-size: 0.85rem;
}

.stat-row:last-child {
	border-bottom: none;
}

.stat-row span:first-child {
	color: var(--text-dim);
}

.stat-val {
	font-family: 'SF Mono', 'Consolas', monospace;
	font-weight: 600;
	color: var(--text);
}

/* Social Proof */
.social-proof {
	padding: 120px 0;
	background: var(--bg-card);
}

.proof-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 32px;
}

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

.proof-number {
	font-family: var(--font-display);
	font-size: 3.5rem;
	font-weight: 800;
	color: var(--blue);
	line-height: 1;
	margin-bottom: 12px;
}

.proof-card p {
	color: var(--text-dim);
	font-size: 0.9rem;
	line-height: 1.5;
}

/* Demo */
.demo {
	padding: 120px 0;
}

.demo-tabs {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-bottom: 32px;
	flex-wrap: wrap;
}

.demo-tab {
	padding: 10px 20px;
	border-radius: 100px;
	border: 1px solid var(--border);
	background: transparent;
	color: var(--text-dim);
	font-family: var(--font-body);
	font-size: 0.85rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.25s;
}

.demo-tab.active {
	background: var(--blue);
	color: #000;
	border-color: var(--blue);
	font-weight: 600;
}

.demo-tab:hover:not(.active) {
	border-color: var(--blue);
	color: var(--text);
}

.terminal {
	background: #0c0e14;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	max-width: 900px;
	margin: 0 auto;
}

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

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

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

.terminal-title {
	margin-left: 12px;
	font-size: 0.75rem;
	color: var(--text-muted);
}

.terminal-body {
	padding: 24px;
	font-family: 'SF Mono', 'Consolas', 'Courier New', monospace;
	font-size: 0.8rem;
	line-height: 1.7;
	color: var(--text-dim);
	overflow-x: auto;
	white-space: pre;
	tab-size: 8;
}

.terminal-body .prompt {
	color: var(--green);
	font-weight: 700;
}

.terminal-body .dim {
	color: var(--text-muted);
}

.terminal-body .header {
	color: var(--blue);
	font-weight: 600;
}

/* Pricing */
.pricing {
	padding: 120px 0;
	background: var(--bg-card);
}

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

.price-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 36px 28px;
	position: relative;
	transition: all 0.3s;
}

.price-card:hover {
	border-color: var(--border-blue);
}

.price-card.featured {
	border-color: var(--blue);
	box-shadow: 0 0 48px var(--blue-glow);
}

.price-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--blue);
	color: #000;
	font-size: 0.7rem;
	font-weight: 700;
	padding: 4px 14px;
	border-radius: 100px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.price-tier {
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 8px;
}

.price-amount {
	font-family: var(--font-display);
	font-size: 3rem;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 8px;
}

.price-amount span {
	font-size: 1rem;
	font-weight: 500;
	color: var(--text-dim);
}

.price-desc {
	color: var(--text-dim);
	font-size: 0.85rem;
	margin-bottom: 24px;
}

.price-card ul {
	list-style: none;
	margin-bottom: 28px;
}

.price-card li {
	padding: 6px 0;
	font-size: 0.85rem;
	color: var(--text-dim);
	position: relative;
	padding-left: 20px;
}

.price-card li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--blue);
	font-weight: 700;
	font-size: 0.75rem;
}

.price-card.enterprise {
	background: linear-gradient(135deg, var(--bg), rgba(0, 180, 255, 0.05));
}

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

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

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

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

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

.testimonial-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--blue-glow);
	border: 1px solid var(--border-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--blue);
	flex-shrink: 0;
}

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

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

/* FAQ */
.faq {
	padding: 120px 0;
	background: var(--bg-card);
}

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

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

.faq-trigger {
	width: 100%;
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: none;
	border: none;
	color: var(--text);
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	text-align: left;
}

.faq-icon {
	font-size: 1.3rem;
	color: var(--blue);
	transition: transform 0.3s;
	flex-shrink: 0;
	margin-left: 16px;
}

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

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

.faq-item.active .faq-answer {
	max-height: 300px;
}

.faq-answer p {
	color: var(--text-dim);
	font-size: 0.9rem;
	line-height: 1.7;
	padding-bottom: 20px;
}

/* Portfolio */
.portfolio-banner {
	padding: 60px 0;
	background: var(--bg-surface);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	text-align: center;
}

.portfolio-label {
	font-size: 0.8rem;
	color: var(--text-muted);
	margin-bottom: 8px;
}

.portfolio-banner h3 {
	font-family: var(--font-display);
	font-size: 1.3rem;
	margin-bottom: 24px;
}

.portfolio-banner h3 a {
	color: var(--blue);
}

.portfolio-scroll {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
	justify-content: center;
	max-width: 1000px;
	margin: 0 auto;
}

.portfolio-scroll a {
	font-size: 0.8rem;
	color: var(--text-muted);
	transition: color 0.2s;
}

.portfolio-scroll a:hover {
	color: var(--blue);
	opacity: 1;
}

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

.mando-link {
	color: var(--blue);
	font-weight: 600;
}

/* Footer */
.footer {
	padding: 80px 0 40px;
	background: var(--bg);
}

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

.footer-brand p {
	color: var(--text-dim);
	font-size: 0.85rem;
	margin-top: 12px;
	line-height: 1.6;
}

.footer-backed {
	margin-top: 8px !important;
}

.footer-col h4 {
	font-family: var(--font-display);
	font-size: 0.85rem;
	font-weight: 700;
	margin-bottom: 16px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.footer-col a {
	display: block;
	color: var(--text-dim);
	font-size: 0.85rem;
	padding: 4px 0;
}

.footer-col a:hover {
	color: var(--text);
	opacity: 1;
}

.footer-social {
	display: flex;
	gap: 12px;
	margin-top: 12px;
}

.footer-social a {
	display: inline-flex;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid var(--border);
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: 700;
}

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

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

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-in {
	opacity: 0;
	transform: translateY(24px);
}

.animate-in.visible {
	animation: fadeInUp 0.6s ease forwards;
}

/* Responsive */
@media (max-width: 768px) {
	.nav-links {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: var(--bg);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 24px;
		z-index: 999;
	}

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

	.nav-links a {
		font-size: 1.2rem;
	}

	.mobile-toggle {
		display: flex;
		z-index: 1000;
	}

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

	.hero-stats-row {
		gap: 24px;
	}

	.step {
		flex-direction: column;
		gap: 12px;
	}

	.step-number {
		font-size: 2rem;
	}

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

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

	#connection-graph {
		height: 280px;
	}

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

@media (max-width: 480px) {
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.demo-tabs {
		gap: 4px;
	}

	.demo-tab {
		padding: 8px 14px;
		font-size: 0.75rem;
	}
}

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

/* 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: #00b4ff !important;
	color: #fff !important;
	border: 1px solid #00b4ff !important;
	opacity: 1 !important;
}

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