:root {
	--bg: #0a0a0a;
	--bg-raised: #111111;
	--bg-card: #161616;
	--neon: #ff1a1a;
	--neon-dim: #cc0000;
	--neon-glow: rgba(255, 26, 26, 0.35);
	--neon-subtle: rgba(255, 26, 26, 0.08);
	--text: #f0f0f0;
	--text-dim: #888888;
	--text-muted: #555555;
	--border: #222222;
	--radius: 6px;
}

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

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

body {
	font-family: 'DM Sans', system-ui, sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
	overflow-x: hidden;
}

/* ---------- NAV ---------- */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(10, 10, 10, 0.85);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border);
	transition: background 0.3s;
}

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

.nav-logo {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1.8rem;
	letter-spacing: 0.08em;
	color: var(--neon);
	text-decoration: none;
	text-shadow: 0 0 20px var(--neon-glow);
}

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

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

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

.nav-cta {
	background: var(--neon);
	color: #000 !important;
	padding: 0.45rem 1.2rem;
	border-radius: var(--radius);
	font-weight: 700;
	font-size: 0.85rem !important;
	letter-spacing: 0.04em;
	transition: box-shadow 0.3s, transform 0.2s;
}

.nav-cta:hover {
	box-shadow: 0 0 24px var(--neon-glow);
	transform: translateY(-1px);
}

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

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

/* ---------- HERO ---------- */
.hero {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 6rem 1.5rem 4rem;
	position: relative;
	overflow: hidden;
}

.hero-glow {
	position: absolute;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--neon-glow) 0%, transparent 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
	animation: pulse-glow 4s ease-in-out infinite;
}

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

.hero-headline {
	font-family: 'Bebas Neue', sans-serif;
	font-size: clamp(3.5rem, 10vw, 8rem);
	line-height: 0.95;
	letter-spacing: 0.04em;
	position: relative;
	z-index: 1;
}

.hero-accent {
	color: var(--neon);
	text-shadow: 0 0 40px var(--neon-glow);
}

.hero-sub {
	max-width: 560px;
	margin: 1.5rem auto 2.5rem;
	font-size: 1.15rem;
	color: var(--text-dim);
	position: relative;
	z-index: 1;
}

.btn-primary {
	display: inline-block;
	background: var(--neon);
	color: #000;
	font-weight: 700;
	font-size: 1rem;
	padding: 0.85rem 2.2rem;
	border-radius: var(--radius);
	text-decoration: none;
	border: none;
	cursor: pointer;
	letter-spacing: 0.04em;
	transition: box-shadow 0.3s, transform 0.2s;
	position: relative;
	z-index: 1;
}

.btn-primary:hover {
	box-shadow: 0 0 32px var(--neon-glow);
	transform: translateY(-2px);
}

.btn-secondary {
	display: inline-block;
	background: transparent;
	color: var(--text);
	font-weight: 600;
	font-size: 0.95rem;
	padding: 0.75rem 2rem;
	border-radius: var(--radius);
	text-decoration: none;
	border: 1px solid var(--border);
	cursor: pointer;
	transition: border-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
	border-color: var(--neon);
	color: var(--neon);
}

/* ---------- SECTION HELPERS ---------- */
.section-title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: clamp(2rem, 5vw, 3.2rem);
	letter-spacing: 0.06em;
	text-align: center;
	margin-bottom: 0.5rem;
}

.section-sub {
	text-align: center;
	color: var(--text-dim);
	font-size: 1.05rem;
	margin-bottom: 3rem;
	max-width: 540px;
	margin-left: auto;
	margin-right: auto;
}

section {
	padding: 5rem 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
}

/* ---------- STATS ---------- */
.stats {
	border-bottom: 1px solid var(--border);
	padding-top: 0;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	text-align: center;
}

.stat-number {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 3rem;
	color: var(--neon);
	display: block;
	text-shadow: 0 0 20px var(--neon-glow);
}

.stat-label {
	font-size: 0.85rem;
	color: var(--text-dim);
}

/* ---------- FEATURES ---------- */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
}

.feature-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 2rem;
	transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
	border-color: var(--neon-dim);
	transform: translateY(-4px);
}

.feature-icon {
	font-size: 2rem;
	display: block;
	margin-bottom: 1rem;
}

.feature-card h3 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1.3rem;
	letter-spacing: 0.04em;
	margin-bottom: 0.5rem;
}

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

.feature-card code {
	color: var(--neon);
	background: var(--neon-subtle);
	padding: 0.1em 0.35em;
	border-radius: 3px;
	font-size: 0.85em;
}

/* ---------- HOW IT WORKS ---------- */
.steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2rem;
}

.step {
	text-align: center;
	padding: 1.5rem;
}

.step-num {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 3rem;
	color: var(--neon);
	text-shadow: 0 0 16px var(--neon-glow);
	margin-bottom: 0.5rem;
}

.step h3 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1.2rem;
	letter-spacing: 0.04em;
	margin-bottom: 0.5rem;
}

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

.step code {
	color: var(--neon);
}

/* ---------- DEMO / TERMINAL ---------- */
.demo {
	max-width: 800px;
}

.terminal {
	background: #0d0d0d;
	border: 1px solid var(--border);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 0 60px rgba(255, 26, 26, 0.08);
}

.terminal-bar {
	background: #1a1a1a;
	padding: 0.65rem 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.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: auto;
	font-size: 0.75rem;
	color: var(--text-muted);
}

.terminal-body {
	padding: 1.25rem;
	font-family: 'DM Mono', 'SF Mono', 'Fira Code', monospace;
	font-size: 0.85rem;
	line-height: 1.7;
}

.terminal-line {
	white-space: pre-wrap;
}

.prompt {
	color: var(--neon);
	margin-right: 0.5rem;
}

.cmd {
	color: #ffffff;
}

.output {
	color: var(--text-dim);
}

.cursor {
	display: inline-block;
	width: 8px;
	height: 1.1em;
	background: var(--neon);
	animation: blink-cursor 1s step-end infinite;
	vertical-align: text-bottom;
}

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

/* ---------- COMPARISON TABLE ---------- */
.comparison {
	max-width: 900px;
}

.table-wrap {
	overflow-x: auto;
}

table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
}

thead {
	border-bottom: 2px solid var(--border);
}

th, td {
	padding: 0.85rem 1rem;
	text-align: left;
}

th {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1rem;
	letter-spacing: 0.04em;
	color: var(--text-dim);
}

th.highlight,
td.highlight {
	color: var(--neon);
	background: var(--neon-subtle);
}

tbody tr {
	border-bottom: 1px solid var(--border);
}

tbody td {
	color: var(--text-dim);
}

td code {
	color: var(--neon);
	background: var(--neon-subtle);
	padding: 0.1em 0.3em;
	border-radius: 3px;
	font-size: 0.85em;
}

/* ---------- ACTIVITY FEED ---------- */
.feed-container {
	max-height: 280px;
	overflow: hidden;
	position: relative;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--bg-card);
}

.feed-container::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 80px;
	background: linear-gradient(transparent, var(--bg-card));
	pointer-events: none;
}

.feed {
	padding: 1rem 1.25rem;
}

.feed-item {
	padding: 0.6rem 0;
	border-bottom: 1px solid var(--border);
	font-size: 0.85rem;
	color: var(--text-dim);
	display: flex;
	align-items: center;
	gap: 0.75rem;
	opacity: 0;
	animation: feed-in 0.4s forwards;
}

.feed-item .feed-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--neon);
	flex-shrink: 0;
	box-shadow: 0 0 8px var(--neon-glow);
}

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

@keyframes feed-in {
	from { opacity: 0; transform: translateY(-8px); }
	to { opacity: 1; transform: translateY(0); }
}

/* ---------- PRICING ---------- */
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.5rem;
}

.price-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 2.5rem 2rem;
	text-align: center;
	position: relative;
	transition: border-color 0.3s, transform 0.3s;
}

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

.price-card.featured {
	border-color: var(--neon);
	box-shadow: 0 0 40px rgba(255, 26, 26, 0.12);
}

.price-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--neon);
	color: #000;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	padding: 0.3rem 1rem;
	border-radius: 100px;
}

.price-card h3 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1.6rem;
	letter-spacing: 0.06em;
	margin-bottom: 0.5rem;
}

.price {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 3rem;
	color: var(--neon);
	margin-bottom: 1.5rem;
}

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

.price-card ul {
	list-style: none;
	margin-bottom: 2rem;
	text-align: left;
}

.price-card li {
	padding: 0.45rem 0;
	font-size: 0.9rem;
	color: var(--text-dim);
	border-bottom: 1px solid var(--border);
}

.price-card li.disabled {
	color: var(--text-muted);
	text-decoration: line-through;
}

.price-card li code {
	color: var(--neon);
	background: var(--neon-subtle);
	padding: 0.1em 0.3em;
	border-radius: 3px;
	font-size: 0.8em;
}

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

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

.testimonial p {
	font-size: 0.95rem;
	color: var(--text-dim);
	font-style: italic;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.testimonial code {
	color: var(--neon);
	font-style: normal;
}

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

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

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

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

/* ---------- CHANGELOG ---------- */
.changelog-entries {
	max-width: 700px;
	margin: 0 auto;
}

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

.changelog-version {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1.1rem;
	color: var(--neon);
	white-space: nowrap;
	min-width: 70px;
}

.changelog-content h3 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.35rem;
}

.changelog-content p {
	font-size: 0.9rem;
	color: var(--text-dim);
}

.changelog-content code {
	color: var(--neon);
	background: var(--neon-subtle);
	padding: 0.1em 0.3em;
	border-radius: 3px;
	font-size: 0.85em;
}

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

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

.faq-q {
	width: 100%;
	text-align: left;
	background: none;
	border: none;
	color: var(--text);
	font-size: 1rem;
	font-weight: 600;
	padding: 1.25rem 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-family: 'DM Sans', sans-serif;
}

.faq-q::after {
	content: '+';
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1.5rem;
	color: var(--neon);
	transition: transform 0.3s;
}

.faq-q[aria-expanded="true"]::after {
	transform: rotate(45deg);
}

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

.faq-a.open {
	max-height: 200px;
	padding-bottom: 1.25rem;
}

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

.faq-a code {
	color: var(--neon);
	background: var(--neon-subtle);
	padding: 0.1em 0.3em;
	border-radius: 3px;
	font-size: 0.85em;
}

/* ---------- PORTFOLIO BANNER ---------- */
.portfolio-banner {
	background: var(--bg-raised);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding: 3rem 1.5rem;
	max-width: 100%;
	text-align: center;
}

.portfolio-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.portfolio-banner h2 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1.6rem;
	letter-spacing: 0.06em;
	margin-bottom: 1.5rem;
}

.portfolio-banner h2 a {
	color: var(--neon);
	text-decoration: none;
}

.portfolio-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem 1.2rem;
}

.portfolio-links a {
	color: var(--text-dim);
	text-decoration: none;
	font-size: 0.85rem;
	transition: color 0.2s;
}

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

.current-brand {
	color: var(--neon);
	font-weight: 700;
	font-size: 0.85rem;
	text-shadow: 0 0 10px var(--neon-glow);
}

/* ---------- FOOTER ---------- */
.footer {
	border-top: 1px solid var(--border);
	padding: 3rem 1.5rem 1.5rem;
	max-width: 100%;
}

.footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 2rem;
}

.footer-logo {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1.6rem;
	color: var(--neon);
	text-shadow: 0 0 16px var(--neon-glow);
}

.footer-brand p {
	font-size: 0.85rem;
	color: var(--text-dim);
	margin-top: 0.5rem;
}

.footer-brand a {
	color: var(--neon);
	text-decoration: none;
}

.footer-col h4 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1rem;
	letter-spacing: 0.06em;
	margin-bottom: 0.75rem;
	color: var(--text);
}

.footer-col a {
	display: block;
	color: var(--text-dim);
	text-decoration: none;
	font-size: 0.85rem;
	padding: 0.25rem 0;
	transition: color 0.2s;
}

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

.footer-bottom {
	max-width: 1200px;
	margin: 2rem auto 0;
	padding-top: 1.5rem;
	border-top: 1px solid var(--border);
	text-align: center;
	font-size: 0.8rem;
	color: var(--text-muted);
}

/* ---------- MODAL ---------- */
.modal-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 9999;
	align-items: center;
	justify-content: center;
}

.modal-overlay.active {
	display: flex;
}

.modal {
	background: var(--bg-card);
	border: 1px solid var(--neon-dim);
	border-radius: 8px;
	padding: 2.5rem;
	text-align: center;
	max-width: 380px;
	width: 90%;
	box-shadow: 0 0 60px var(--neon-glow);
}

.modal h3 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1.8rem;
	color: var(--neon);
	margin-bottom: 0.75rem;
}

.modal p {
	font-size: 0.95rem;
	color: var(--text-dim);
	margin-bottom: 1.5rem;
}

.modal-close {
	font-family: 'DM Sans', sans-serif;
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
	.nav-links {
		display: none;
		position: absolute;
		top: 64px;
		left: 0;
		right: 0;
		background: var(--bg);
		flex-direction: column;
		padding: 1.5rem;
		gap: 1rem;
		border-bottom: 1px solid var(--border);
	}

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

	.nav-toggle {
		display: flex;
	}

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

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

	.pricing-grid {
		grid-template-columns: 1fr;
		max-width: 360px;
		margin-left: auto;
		margin-right: auto;
	}

	.changelog-entry {
		flex-direction: column;
		gap: 0.5rem;
	}
}

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

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

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

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

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

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

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