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

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

body {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	color: #e0e6ed;
	background: #0a0b10;
	line-height: 1.7;
	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(0, 136, 255, 0.1);
	padding: 0.15em 0.4em;
	border-radius: 4px;
	font-size: 0.88em;
	color: #5cc8ff;
}

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

.section {
	padding: 100px 0;
}

.section-label {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: #0099ff;
	display: block;
	margin-bottom: 12px;
}

.section-title {
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 16px;
	color: #f0f4f8;
}

.section-desc {
	font-size: 1.1rem;
	color: #8892a4;
	max-width: 620px;
	margin-bottom: 48px;
}

/* ===== Buttons ===== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.25s ease;
	cursor: pointer;
	border: none;
	font-family: inherit;
}

.btn-primary {
	background: linear-gradient(135deg, #0088ff 0%, #0055cc 100%);
	color: #fff;
	box-shadow: 0 0 24px rgba(0, 136, 255, 0.3);
}

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

.btn-ghost {
	background: transparent;
	color: #5cc8ff;
	border: 1.5px solid rgba(0, 136, 255, 0.3);
}

.btn-ghost:hover {
	background: rgba(0, 136, 255, 0.08);
	border-color: rgba(0, 136, 255, 0.6);
}

.btn-full {
	width: 100%;
}

/* ===== Nav ===== */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 16px 0;
	background: rgba(10, 11, 16, 0.8);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
	transition: background 0.3s ease;
}

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

.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	font-size: 1.2rem;
	color: #f0f4f8;
}

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

.nav-links a {
	font-size: 0.9rem;
	font-weight: 500;
	color: #8892a4;
	transition: color 0.2s ease;
}

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

.nav-cta {
	padding: 8px 20px !important;
	background: linear-gradient(135deg, #0088ff 0%, #0055cc 100%);
	color: #fff !important;
	border-radius: 6px;
	font-weight: 600 !important;
}

.nav-cta:hover {
	box-shadow: 0 0 20px rgba(0, 136, 255, 0.4);
}

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

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

.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(0, 136, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 136, 255, 0.04) 1px, transparent 1px);
	background-size: 60px 60px;
}

.hero-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.4;
}

.hero-glow-1 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, #0066cc, transparent);
	top: -100px;
	right: -100px;
}

.hero-glow-2 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, #0044aa, transparent);
	bottom: -50px;
	left: -100px;
}

.hero-inner {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 860px;
	margin: 0 auto;
}

.hero-badge {
	display: inline-block;
	padding: 6px 16px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	color: #5cc8ff;
	border: 1px solid rgba(0, 136, 255, 0.25);
	border-radius: 40px;
	margin-bottom: 28px;
	background: rgba(0, 136, 255, 0.06);
}

.hero-title {
	font-size: clamp(2.4rem, 6vw, 4rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 24px;
	color: #f0f4f8;
}

.hero-gradient {
	background: linear-gradient(135deg, #0099ff, #0044cc, #5cc8ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-sub {
	font-size: 1.15rem;
	color: #8892a4;
	max-width: 640px;
	margin: 0 auto 36px;
	line-height: 1.7;
}

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

/* ===== Terminal ===== */
.hero-terminal,
.demo-terminal {
	text-align: left;
	background: #12131a;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 0 60px rgba(0, 100, 255, 0.08), 0 24px 48px rgba(0, 0, 0, 0.4);
}

.terminal-bar {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	background: #0d0e14;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.terminal-title {
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.75rem;
	color: #555;
	margin-left: auto;
}

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

.terminal-body code {
	display: block;
	background: none;
	padding: 0;
	color: #c8d0dc;
	border-radius: 0;
	font-size: inherit;
}

.t-prompt {
	color: #0099ff;
	font-weight: 700;
}

.t-dim {
	color: #4a5568 !important;
}

.t-success {
	color: #27c93f !important;
}

.terminal-output {
	margin-top: 8px;
}

.terminal-typing {
	display: inline;
}

/* ===== Integrations Strip ===== */
.integrations {
	padding: 60px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.integrations-label {
	text-align: center;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	color: #4a5568;
	margin-bottom: 28px;
}

.integrations-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.integration-item {
	padding: 10px 20px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.02);
	transition: all 0.2s ease;
}

.integration-item:hover {
	border-color: rgba(0, 136, 255, 0.3);
	background: rgba(0, 136, 255, 0.04);
	box-shadow: 0 0 20px rgba(0, 136, 255, 0.06);
}

.integration-item code {
	background: none;
	color: #8892a4;
	padding: 0;
	font-size: 0.9rem;
}

/* ===== Features ===== */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}

.feature-card {
	background: #12131a;
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 32px 28px;
	transition: all 0.3s ease;
}

.feature-card:hover {
	border-color: rgba(0, 136, 255, 0.2);
	box-shadow: 0 0 30px rgba(0, 100, 255, 0.06);
	transform: translateY(-2px);
}

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

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

.feature-card p {
	font-size: 0.92rem;
	color: #8892a4;
	line-height: 1.6;
}

/* ===== How It Works ===== */
.steps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 24px;
}

.step-card {
	background: #12131a;
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 32px 28px;
	position: relative;
}

.step-num {
	font-family: 'JetBrains Mono', monospace;
	font-size: 2.5rem;
	font-weight: 700;
	background: linear-gradient(135deg, #0088ff, #0044cc);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 16px;
}

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

.step-card p {
	font-size: 0.92rem;
	color: #8892a4;
	line-height: 1.6;
	margin-bottom: 16px;
}

.step-code {
	padding: 10px 14px;
	background: rgba(0, 136, 255, 0.06);
	border: 1px solid rgba(0, 136, 255, 0.1);
	border-radius: 6px;
}

.step-code code {
	font-size: 0.8rem;
	background: none;
	padding: 0;
	color: #5cc8ff;
}

/* ===== Stats ===== */
.stats {
	padding: 80px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.04);
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.stat-number {
	font-family: 'JetBrains Mono', monospace;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	color: #0099ff;
	line-height: 1;
	margin-bottom: 8px;
	text-shadow: 0 0 30px rgba(0, 136, 255, 0.3);
}

.stat-label {
	font-size: 0.85rem;
	color: #5a6478;
	font-weight: 500;
}

/* ===== Comparison Table ===== */
.comparison-table-wrap {
	overflow-x: auto;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.06);
}

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

.comparison-table th,
.comparison-table td {
	padding: 14px 20px;
	text-align: left;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.comparison-table th {
	background: #12131a;
	font-weight: 700;
	color: #8892a4;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.comparison-table th.highlight {
	color: #0099ff;
}

.comparison-table td {
	color: #8892a4;
}

.comparison-table td.highlight {
	color: #5cc8ff;
	background: rgba(0, 136, 255, 0.03);
}

.comparison-table tbody tr:hover {
	background: rgba(0, 136, 255, 0.02);
}

/* ===== Case Study ===== */
.case-study-card {
	background: #12131a;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 16px;
	padding: 56px 48px;
}

.case-study-card h2 {
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 800;
	color: #f0f4f8;
	margin: 16px 0 28px;
	line-height: 1.3;
}

.case-study-body p {
	font-size: 1rem;
	color: #8892a4;
	line-height: 1.7;
	margin-bottom: 20px;
}

.case-study-stats {
	display: flex;
	gap: 48px;
	margin-top: 36px;
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.case-stat-num {
	display: block;
	font-family: 'JetBrains Mono', monospace;
	font-size: 2rem;
	font-weight: 700;
	color: #0099ff;
	text-shadow: 0 0 20px rgba(0, 136, 255, 0.3);
}

.case-stat-label {
	font-size: 0.85rem;
	color: #5a6478;
}

/* ===== Pricing ===== */
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
}

.pricing-card {
	background: #12131a;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 14px;
	padding: 36px 28px;
	display: flex;
	flex-direction: column;
	position: relative;
}

.pricing-card.featured {
	border-color: rgba(0, 136, 255, 0.4);
	box-shadow: 0 0 40px rgba(0, 100, 255, 0.1);
}

.pricing-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	padding: 4px 14px;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: #fff;
	background: linear-gradient(135deg, #0088ff, #0055cc);
	border-radius: 20px;
}

.pricing-name {
	font-size: 1.05rem;
	font-weight: 700;
	color: #f0f4f8;
	margin-bottom: 8px;
}

.pricing-price {
	font-family: 'JetBrains Mono', monospace;
	font-size: 2.2rem;
	font-weight: 700;
	color: #f0f4f8;
	margin-bottom: 4px;
}

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

.pricing-desc {
	font-size: 0.88rem;
	color: #5a6478;
	margin-bottom: 24px;
}

.pricing-features {
	flex: 1;
	margin-bottom: 24px;
}

.pricing-features li {
	font-size: 0.88rem;
	color: #8892a4;
	padding: 6px 0;
}

.pricing-features li.disabled {
	color: #3a4050;
}

/* ===== Testimonials ===== */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
	gap: 20px;
}

.testimonial-card {
	background: #12131a;
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 32px 28px;
}

.testimonial-text {
	font-size: 0.95rem;
	line-height: 1.7;
	color: #c0c8d4;
	margin-bottom: 20px;
}

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

.testimonial-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, #0088ff, #0044cc);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.8rem;
	color: #fff;
	flex-shrink: 0;
}

.testimonial-name {
	font-weight: 600;
	font-size: 0.9rem;
	color: #f0f4f8;
}

.testimonial-role {
	font-size: 0.8rem;
	color: #5a6478;
}

/* ===== Demo ===== */
.demo-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
	gap: 24px;
}

.demo-card {
	background: #12131a;
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 28px;
}

.demo-card h3 {
	font-size: 1rem;
	font-weight: 700;
	color: #f0f4f8;
	margin-bottom: 16px;
}

.demo-terminal {
	margin-bottom: 16px;
}

.demo-desc {
	font-size: 0.88rem;
	color: #5a6478;
	line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-list {
	max-width: 720px;
}

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

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

.faq-question:hover {
	color: #5cc8ff;
}

.faq-chevron {
	font-size: 1.2rem;
	transition: transform 0.3s ease;
	color: #4a5568;
	flex-shrink: 0;
}

.faq-item.open .faq-chevron {
	transform: rotate(90deg);
	color: #0099ff;
}

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

.faq-item.open .faq-answer {
	max-height: 400px;
	padding-bottom: 20px;
}

.faq-answer p {
	font-size: 0.95rem;
	color: #8892a4;
	line-height: 1.7;
}

/* ===== Waitlist ===== */
.waitlist-card {
	text-align: center;
	background: linear-gradient(135deg, rgba(0, 100, 200, 0.12) 0%, rgba(0, 50, 120, 0.12) 100%);
	border: 1px solid rgba(0, 136, 255, 0.15);
	border-radius: 20px;
	padding: 64px 48px;
}

.waitlist-card h2 {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 800;
	color: #f0f4f8;
	margin-bottom: 12px;
}

.waitlist-card p {
	color: #8892a4;
	margin-bottom: 32px;
	font-size: 1.05rem;
}

.waitlist-form {
	display: flex;
	gap: 12px;
	max-width: 460px;
	margin: 0 auto;
}

.waitlist-form input {
	flex: 1;
	padding: 14px 18px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.3);
	color: #e0e6ed;
	font-size: 0.95rem;
	font-family: inherit;
}

.waitlist-form input::placeholder {
	color: #4a5568;
}

.waitlist-form input:focus {
	outline: none;
	border-color: rgba(0, 136, 255, 0.4);
	box-shadow: 0 0 16px rgba(0, 136, 255, 0.1);
}

/* ===== Footer ===== */
.footer {
	padding: 64px 0 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.04);
}

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

.footer-logo {
	font-size: 1.15rem;
	font-weight: 800;
	color: #f0f4f8;
	display: block;
	margin-bottom: 12px;
}

.footer-brand p {
	font-size: 0.9rem;
	color: #5a6478;
	line-height: 1.6;
	max-width: 280px;
}

.footer-col h4 {
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #8892a4;
	margin-bottom: 16px;
}

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

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

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.04);
	font-size: 0.82rem;
	color: #3a4050;
}

.footer-mando a {
	color: #0099ff;
	font-weight: 600;
}

.footer-mando a:hover {
	text-decoration: underline;
}

/* ===== Portfolio Banner ===== */
.portfolio-banner {
	background: #060710;
	border-top: 1px solid rgba(255, 255, 255, 0.04);
	padding: 16px 0;
	overflow: hidden;
}

.portfolio-banner-inner {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 24px;
}

.portfolio-label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: #3a4050;
	margin-bottom: 10px;
}

.portfolio-commands {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.portfolio-commands a,
.portfolio-current {
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.7rem;
	padding: 3px 8px;
	border-radius: 4px;
	transition: all 0.2s ease;
}

.portfolio-commands a {
	color: #4a5568;
	background: rgba(255, 255, 255, 0.02);
}

.portfolio-commands a:hover {
	color: #5cc8ff;
	background: rgba(0, 136, 255, 0.08);
}

.portfolio-current {
	color: #0099ff;
	background: rgba(0, 136, 255, 0.12);
	font-weight: 700;
}

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

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

.modal {
	background: #16171f;
	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: #f0f4f8;
	margin-bottom: 10px;
}

.modal p {
	font-size: 0.95rem;
	color: #8892a4;
	margin-bottom: 24px;
}

.modal-close {
	position: absolute;
	top: 16px;
	right: 20px;
	background: none;
	border: none;
	font-size: 1.4rem;
	color: #5a6478;
	cursor: pointer;
}

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

.modal-close-btn {
	cursor: pointer;
}

/* ===== Fade-In Animation ===== */
.fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== Responsive ===== */
@media (max-width: 768px) {
	.nav-links {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(10, 11, 16, 0.96);
		flex-direction: column;
		padding: 24px;
		gap: 16px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	}

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

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

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

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

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

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

	.case-study-card {
		padding: 32px 24px;
	}

	.case-study-stats {
		flex-direction: column;
		gap: 24px;
	}

	.waitlist-form {
		flex-direction: column;
	}

	.waitlist-card {
		padding: 40px 24px;
	}

	.comparison-table {
		font-size: 0.8rem;
	}

	.comparison-table th,
	.comparison-table td {
		padding: 10px 12px;
	}
}

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

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

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