:root {
	--slate-950: #0f172a;
	--slate-900: #1e293b;
	--slate-800: #334155;
	--slate-700: #475569;
	--slate-600: #64748b;
	--slate-500: #94a3b8;
	--slate-400: #cbd5e1;
	--slate-300: #e2e8f0;
	--slate-200: #f1f5f9;
	--slate-100: #f8fafc;
	--zinc-800: #27272a;
	--mist: #f0f4f8;
	--teal: #0d9488;
	--teal-light: #14b8a6;
	--teal-dark: #0f766e;
	--teal-subtle: rgba(13, 148, 136, 0.08);
	--teal-glow: rgba(13, 148, 136, 0.15);
	--bg: var(--slate-100);
	--bg-card: #ffffff;
	--text: var(--slate-900);
	--text-secondary: var(--slate-600);
	--text-muted: var(--slate-500);
	--border: var(--slate-300);
	--border-light: var(--slate-200);
	--radius: 8px;
	--radius-lg: 12px;
	--radius-xl: 16px;
	--shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
	--shadow-md: 0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.03);
	--shadow-lg: 0 10px 25px rgba(0,0,0,0.07), 0 4px 10px rgba(0,0,0,0.04);
	--font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	--transition: 0.2s ease;
}

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

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

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

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

img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
code { font-family: 'SF Mono', 'Fira Code', monospace; font-size: 0.875em; background: var(--teal-subtle); color: var(--teal-dark); padding: 2px 6px; border-radius: 4px; }

/* --- Buttons --- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	font-size: 0.9375rem;
	font-weight: 600;
	border-radius: var(--radius);
	transition: all var(--transition);
	white-space: nowrap;
}
.btn-primary {
	background: var(--teal);
	color: #fff;
}
.btn-primary:hover {
	background: var(--teal-dark);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}
.btn-secondary {
	background: var(--bg-card);
	color: var(--text);
	border: 1px solid var(--border);
}
.btn-secondary:hover {
	border-color: var(--teal);
	color: var(--teal);
}
.btn-outline {
	background: transparent;
	color: var(--text);
	border: 1px solid var(--border);
}
.btn-outline:hover {
	border-color: var(--teal);
	color: var(--teal);
}

/* --- Section Header --- */
.section-header {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 56px;
}
.section-tag {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--teal);
	background: var(--teal-subtle);
	padding: 4px 14px;
	border-radius: 100px;
	margin-bottom: 16px;
}
.section-header h2 {
	font-size: 2.25rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 16px;
	color: var(--slate-950);
}
.section-header p {
	font-size: 1.1rem;
	color: var(--text-secondary);
	line-height: 1.7;
}

/* --- Nav --- */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(248, 250, 252, 0.85);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border-light);
	transition: box-shadow var(--transition);
}
.nav.scrolled {
	box-shadow: var(--shadow);
}
.nav-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--slate-950);
}
.nav-links {
	display: flex;
	align-items: center;
	gap: 32px;
}
.nav-links a {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--text-secondary);
	transition: color var(--transition);
}
.nav-links a:hover {
	color: var(--teal);
}
.nav-cta {
	background: var(--teal) !important;
	color: #fff !important;
	padding: 8px 20px;
	border-radius: var(--radius);
}
.nav-cta:hover {
	background: var(--teal-dark) !important;
}
.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 4px;
}
.nav-toggle span {
	display: block;
	width: 22px;
	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: linear-gradient(180deg, var(--mist) 0%, var(--bg) 100%);
}
.hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.pipeline-line {
	position: absolute;
	background: var(--teal-glow);
	border-radius: 2px;
}
.line-1 {
	width: 2px;
	height: 60%;
	left: 15%;
	top: 20%;
	animation: pulseLine 4s ease-in-out infinite;
}
.line-2 {
	width: 60%;
	height: 2px;
	left: 15%;
	top: 50%;
	animation: pulseLine 4s ease-in-out infinite 1s;
}
.line-3 {
	width: 2px;
	height: 40%;
	right: 20%;
	top: 30%;
	animation: pulseLine 4s ease-in-out infinite 2s;
}
.pipeline-node {
	position: absolute;
	width: 12px;
	height: 12px;
	background: var(--teal);
	border-radius: 50%;
	opacity: 0.3;
	animation: pulseNode 3s ease-in-out infinite;
}
.node-1 { left: 15%; top: 20%; animation-delay: 0s; }
.node-2 { left: 15%; top: 50%; animation-delay: 0.5s; }
.node-3 { right: 20%; top: 50%; animation-delay: 1s; }
.node-4 { right: 20%; top: 30%; animation-delay: 1.5s; }
.node-5 { left: 50%; top: 75%; animation-delay: 2s; }

@keyframes pulseLine {
	0%, 100% { opacity: 0.15; }
	50% { opacity: 0.35; }
}
@keyframes pulseNode {
	0%, 100% { opacity: 0.2; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
}
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--text-secondary);
	background: var(--bg-card);
	border: 1px solid var(--border-light);
	padding: 6px 16px;
	border-radius: 100px;
	margin-bottom: 32px;
	box-shadow: var(--shadow);
}
.hero h1 {
	font-size: 4rem;
	font-weight: 800;
	line-height: 1.1;
	color: var(--slate-950);
	margin-bottom: 24px;
	letter-spacing: -0.02em;
}
.hero-sub {
	font-size: 1.2rem;
	color: var(--text-secondary);
	line-height: 1.7;
	max-width: 640px;
	margin: 0 auto 40px;
}
.hero-actions {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-bottom: 56px;
}
.hero-stat-row {
	display: flex;
	justify-content: center;
	gap: 48px;
}
.hero-stat {
	display: flex;
	flex-direction: column;
}
.hero-stat-num {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--teal);
}
.hero-stat-label {
	font-size: 0.8125rem;
	color: var(--text-muted);
}

/* --- Integrations --- */
.integrations {
	padding: 40px 0;
	border-bottom: 1px solid var(--border-light);
}
.integrations-label {
	text-align: center;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 24px;
}
.integrations-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 32px;
}
.integration-logo {
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--slate-400);
	letter-spacing: 0.02em;
}

/* --- Features --- */
.features {
	padding: 100px 0;
}
.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.feature-card {
	background: var(--bg-card);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-lg);
	padding: 32px;
	transition: all var(--transition);
}
.feature-card:hover {
	border-color: var(--teal);
	box-shadow: var(--shadow-md), 0 0 0 1px var(--teal-glow);
	transform: translateY(-2px);
}
.feature-icon {
	font-size: 1.5rem;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--teal-subtle);
	border-radius: var(--radius);
	margin-bottom: 16px;
}
.feature-card h3 {
	font-size: 1.0625rem;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--slate-950);
}
.feature-card p {
	font-size: 0.9rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* --- How It Works --- */
.how-it-works {
	padding: 100px 0;
	background: var(--mist);
}
.steps {
	max-width: 720px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 0;
}
.step {
	display: flex;
	gap: 32px;
	padding: 40px 0;
	border-bottom: 1px solid var(--border);
	align-items: flex-start;
}
.step:last-child {
	border-bottom: none;
}
.step-num {
	font-size: 3rem;
	font-weight: 800;
	color: var(--teal);
	opacity: 0.3;
	line-height: 1;
	flex-shrink: 0;
	width: 80px;
}
.step-content h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--slate-950);
}
.step-content p {
	font-size: 0.95rem;
	color: var(--text-secondary);
	line-height: 1.7;
}

/* --- Stats --- */
.stats {
	padding: 80px 0;
	background: var(--slate-950);
}
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}
.stat-card {
	text-align: center;
	padding: 32px 16px;
}
.stat-value {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--teal-light);
	display: inline;
}
.stat-suffix {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--teal-light);
	display: inline;
}
.stat-label {
	font-size: 0.875rem;
	color: var(--slate-500);
	margin-top: 8px;
}

/* --- Case Study --- */
.case-study {
	padding: 100px 0;
}
.case-study-body {
	max-width: 780px;
	margin: 0 auto;
}
.case-study-body p {
	font-size: 1.05rem;
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 24px;
}
.case-study-body blockquote {
	border-left: 4px solid var(--teal);
	padding: 16px 24px;
	margin: 32px 0;
	background: var(--teal-subtle);
	border-radius: 0 var(--radius) var(--radius) 0;
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--slate-950);
	font-style: italic;
	line-height: 1.7;
}

/* --- Pricing --- */
.pricing {
	padding: 100px 0;
	background: var(--mist);
}
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	align-items: start;
}
.pricing-card {
	background: var(--bg-card);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-xl);
	padding: 32px 28px;
	position: relative;
	transition: all var(--transition);
}
.pricing-card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-2px);
}
.pricing-card.featured {
	border: 2px solid var(--teal);
	box-shadow: var(--shadow-lg), 0 0 0 4px var(--teal-glow);
}
.pricing-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--teal);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 4px 16px;
	border-radius: 100px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.pricing-tier {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--slate-950);
	margin-bottom: 12px;
}
.pricing-price {
	margin-bottom: 12px;
}
.price-amount {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--slate-950);
}
.price-period {
	font-size: 0.875rem;
	color: var(--text-muted);
}
.pricing-desc {
	font-size: 0.875rem;
	color: var(--text-secondary);
	margin-bottom: 20px;
	line-height: 1.5;
}
.pricing-features {
	list-style: none;
	margin-bottom: 24px;
}
.pricing-features li {
	padding: 6px 0;
	font-size: 0.875rem;
	color: var(--text);
	position: relative;
	padding-left: 24px;
}
.pricing-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--teal);
	font-weight: 700;
}
.pricing-features li.disabled {
	color: var(--text-muted);
	text-decoration: line-through;
	opacity: 0.5;
}
.pricing-features li.disabled::before {
	content: '—';
	color: var(--text-muted);
}
.pricing-card .btn {
	width: 100%;
}

/* --- Testimonials --- */
.testimonials {
	padding: 100px 0;
}
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.testimonial-card {
	background: var(--bg-card);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-lg);
	padding: 28px;
	transition: all var(--transition);
}
.testimonial-card:hover {
	box-shadow: var(--shadow-md);
}
.testimonial-stars {
	color: var(--teal);
	font-size: 0.875rem;
	margin-bottom: 12px;
	letter-spacing: 2px;
}
.testimonial-card > p {
	font-size: 0.9375rem;
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 20px;
}
.testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
}
.testimonial-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--teal-subtle);
	color: var(--teal);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8125rem;
	font-weight: 700;
	flex-shrink: 0;
}
.testimonial-author strong {
	display: block;
	font-size: 0.875rem;
	color: var(--text);
}
.testimonial-author span {
	font-size: 0.75rem;
	color: var(--text-muted);
}

/* --- Demo --- */
.demo {
	padding: 100px 0;
	background: var(--mist);
}
.demo-terminals {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
	gap: 24px;
}
.terminal {
	background: var(--slate-950);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}
.terminal-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	background: var(--slate-900);
	border-bottom: 1px solid var(--slate-800);
}
.terminal-dots {
	display: flex;
	gap: 6px;
}
.terminal-dots span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}
.terminal-dots span:nth-child(1) { background: #ff5f57; }
.terminal-dots span:nth-child(2) { background: #ffbd2e; }
.terminal-dots span:nth-child(3) { background: #28c840; }
.terminal-title {
	font-size: 0.75rem;
	color: var(--slate-500);
	font-weight: 500;
}
.terminal-body {
	padding: 20px;
	font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
	font-size: 0.8125rem;
	line-height: 1.8;
	color: var(--slate-300);
	overflow-x: auto;
}
.t-prompt { color: var(--teal-light); }
.t-cmd { color: #e2e8f0; }
.t-output { color: var(--slate-500); }

/* --- Trust --- */
.trust {
	padding: 60px 0;
	border-top: 1px solid var(--border-light);
	border-bottom: 1px solid var(--border-light);
}
.trust-inner {
	text-align: center;
}
.trust-inner h3 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-muted);
	margin-bottom: 24px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.trust-badges {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 32px;
}
.trust-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}
.trust-badge-icon {
	font-size: 1.75rem;
}
.trust-badge span {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--text-secondary);
}

/* --- FAQ --- */
.faq {
	padding: 100px 0;
}
.faq-list {
	max-width: 720px;
	margin: 0 auto;
}
.faq-item {
	border-bottom: 1px solid var(--border-light);
}
.faq-question {
	width: 100%;
	text-align: left;
	padding: 20px 0;
	font-size: 1.0625rem;
	font-weight: 600;
	color: var(--text);
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: color var(--transition);
}
.faq-question::after {
	content: '+';
	font-size: 1.25rem;
	color: var(--teal);
	flex-shrink: 0;
	margin-left: 16px;
	transition: transform var(--transition);
}
.faq-item.open .faq-question::after {
	transform: rotate(45deg);
}
.faq-question:hover {
	color: var(--teal);
}
.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer {
	max-height: 300px;
}
.faq-answer p {
	padding-bottom: 20px;
	font-size: 0.95rem;
	color: var(--text-secondary);
	line-height: 1.7;
}

/* --- Portfolio Banner --- */
.portfolio-banner {
	padding: 60px 0;
	background: var(--slate-950);
	text-align: center;
}
.portfolio-banner h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--slate-300);
	margin-bottom: 24px;
}
.portfolio-companies {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 16px;
	max-width: 1000px;
	margin: 0 auto;
}
.portfolio-companies a {
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--slate-500);
	transition: color var(--transition);
	padding: 4px 8px;
}
.portfolio-companies a:hover {
	color: var(--teal-light);
}
.current-company {
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--teal-light);
	padding: 4px 8px;
	background: rgba(13, 148, 136, 0.15);
	border-radius: 4px;
}

/* --- Footer --- */
.footer {
	padding: 64px 0 32px;
	background: var(--slate-900);
	color: var(--slate-400);
}
.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 48px;
}
.footer-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1.125rem;
	font-weight: 800;
	color: #fff;
	margin-bottom: 12px;
}
.footer-brand p {
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--slate-500);
}
.footer-backed {
	margin-top: 12px;
}
.footer-col h4 {
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--slate-400);
	margin-bottom: 16px;
}
.footer-col a {
	display: block;
	font-size: 0.875rem;
	color: var(--slate-500);
	padding: 4px 0;
	transition: color var(--transition);
}
.footer-col a:hover {
	color: var(--teal-light);
}
.footer-bottom {
	border-top: 1px solid var(--slate-800);
	padding-top: 24px;
	text-align: center;
}
.footer-bottom p {
	font-size: 0.8125rem;
	color: var(--slate-600);
}
.mando-link {
	color: var(--teal);
	font-weight: 600;
}
.mando-link:hover {
	text-decoration: underline;
}

/* --- Modal --- */
.modal-overlay {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 1000;
	background: rgba(15, 23, 42, 0.6);
	backdrop-filter: blur(4px);
	align-items: center;
	justify-content: center;
}
.modal-overlay.active {
	display: flex;
}
.modal-box {
	background: var(--bg-card);
	border-radius: var(--radius-xl);
	padding: 40px;
	max-width: 440px;
	width: 90%;
	position: relative;
	box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}
.modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	font-size: 1.5rem;
	color: var(--text-muted);
	line-height: 1;
}
.modal-close:hover {
	color: var(--text);
}
.modal-box h3 {
	font-size: 1.5rem;
	font-weight: 800;
	margin-bottom: 8px;
	color: var(--slate-950);
}
.modal-box p {
	font-size: 0.95rem;
	color: var(--text-secondary);
	margin-bottom: 24px;
}
.modal-form {
	display: flex;
	gap: 8px;
}
.modal-form input {
	flex: 1;
	padding: 10px 16px;
	font-size: 0.9375rem;
	font-family: var(--font);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	outline: none;
	transition: border-color var(--transition);
}
.modal-form input:focus {
	border-color: var(--teal);
}
.modal-success {
	color: var(--teal);
	font-weight: 600;
	padding: 8px 0;
}

/* --- Animations --- */
[data-animate] {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-animate].visible {
	opacity: 1;
	transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
	.features-grid { grid-template-columns: repeat(2, 1fr); }
	.pricing-grid { grid-template-columns: repeat(2, 1fr); }
	.stats-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
	.nav-links { display: none; }
	.nav-links.open {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 64px;
		left: 0;
		right: 0;
		background: var(--bg-card);
		border-bottom: 1px solid var(--border);
		padding: 24px;
		gap: 16px;
		box-shadow: var(--shadow-lg);
	}
	.nav-toggle { display: flex; }
	.hero h1 { font-size: 2.5rem; }
	.hero-sub { font-size: 1rem; }
	.hero-stat-row { flex-direction: column; gap: 16px; }
	.hero-actions { flex-direction: column; align-items: center; }
	.features-grid { grid-template-columns: 1fr; }
	.pricing-grid { grid-template-columns: 1fr; }
	.stats-grid { grid-template-columns: 1fr 1fr; }
	.testimonials-grid { grid-template-columns: 1fr; }
	.demo-terminals { grid-template-columns: 1fr; }
	.step { flex-direction: column; gap: 16px; }
	.section-header h2 { font-size: 1.75rem; }
	.footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== 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;
}

/* 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: #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%}