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

: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-50: #fafafa;
	--mist: #f0f4f8;
	--amber-500: #f59e0b;
	--amber-400: #fbbf24;
	--amber-600: #d97706;
	--amber-100: #fef3c7;
	--bg: var(--slate-100);
	--text: var(--slate-900);
	--text-muted: var(--slate-600);
	--surface: #ffffff;
	--border: var(--slate-300);
	--accent: var(--amber-500);
	--accent-hover: var(--amber-600);
	--accent-light: var(--amber-100);
	--radius: 12px;
	--radius-sm: 8px;
}

html { scroll-behavior: smooth; }

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

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

a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
code {
	font-family: 'Space Grotesk', monospace;
	background: var(--slate-200);
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 0.875em;
	color: var(--slate-800);
}

/* ===== Nav ===== */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(248, 250, 252, 0.85);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border);
}
.nav .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
}
.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 1.125rem;
	letter-spacing: 0.05em;
	color: var(--slate-900);
}
.nav-links {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
}
.nav-links a {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--text-muted);
	transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
	background: var(--accent);
	color: var(--slate-950) !important;
	padding: 8px 20px;
	border-radius: var(--radius-sm);
	font-weight: 600;
	transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-hover); }
.nav-mobile-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--text);
}

/* ===== Hero ===== */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	padding: 120px 0 80px;
}
.hero-bg {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}
.clock-viz {
	position: relative;
	width: 500px;
	height: 500px;
}
.clock-ring {
	position: absolute;
	border-radius: 50%;
	border: 1px solid var(--slate-300);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.clock-ring-1 {
	width: 500px;
	height: 500px;
	opacity: 0.3;
	animation: clockPulse 8s ease-in-out infinite;
}
.clock-ring-2 {
	width: 360px;
	height: 360px;
	opacity: 0.2;
	animation: clockPulse 8s ease-in-out infinite 2s;
}
.clock-ring-3 {
	width: 220px;
	height: 220px;
	opacity: 0.15;
	animation: clockPulse 8s ease-in-out infinite 4s;
}
.clock-hand {
	position: absolute;
	bottom: 50%;
	left: 50%;
	transform-origin: bottom center;
	border-radius: 2px;
}
.clock-hand-hour {
	width: 3px;
	height: 80px;
	background: var(--slate-400);
	margin-left: -1.5px;
	animation: rotateHour 43200s linear infinite;
}
.clock-hand-minute {
	width: 2px;
	height: 110px;
	background: var(--slate-400);
	margin-left: -1px;
	opacity: 0.7;
	animation: rotateMinute 3600s linear infinite;
}
.clock-hand-second {
	width: 1px;
	height: 130px;
	background: var(--amber-500);
	margin-left: -0.5px;
	opacity: 0.6;
	animation: rotateSecond 60s linear infinite;
}
.clock-center {
	position: absolute;
	width: 8px;
	height: 8px;
	background: var(--amber-500);
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

@keyframes clockPulse {
	0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
	50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.15; }
}
@keyframes rotateHour { to { transform: rotate(360deg); } }
@keyframes rotateMinute { to { transform: rotate(360deg); } }
@keyframes rotateSecond { to { transform: rotate(360deg); } }

.hero-content { position: relative; z-index: 1; }
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--surface);
	border: 1px solid var(--border);
	padding: 6px 16px;
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--text-muted);
	margin-bottom: 24px;
}
.hero-badge a {
	color: var(--accent);
	font-weight: 600;
}
.dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent);
	animation: pulse 2s ease infinite;
}
@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.4; }
}
.hero h1 {
	font-size: clamp(3rem, 8vw, 6rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.03em;
	margin-bottom: 20px;
}
.gradient {
	background: linear-gradient(135deg, var(--slate-700), var(--amber-500));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.hero-desc {
	font-size: 1.125rem;
	color: var(--text-muted);
	max-width: 640px;
	margin: 0 auto 32px;
	line-height: 1.7;
}
.hero-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	margin-bottom: 48px;
}
.btn-primary {
	display: inline-flex;
	align-items: center;
	padding: 14px 32px;
	background: var(--accent);
	color: var(--slate-950);
	font-weight: 600;
	border-radius: var(--radius-sm);
	font-size: 0.95rem;
	transition: background 0.2s, transform 0.15s;
	border: none;
}
.btn-primary:hover {
	background: var(--accent-hover);
	transform: translateY(-1px);
}
.btn-secondary {
	display: inline-flex;
	align-items: center;
	padding: 14px 32px;
	background: var(--surface);
	color: var(--text);
	font-weight: 600;
	border-radius: var(--radius-sm);
	font-size: 0.95rem;
	border: 1px solid var(--border);
	transition: border-color 0.2s, transform 0.15s;
}
.btn-secondary:hover {
	border-color: var(--slate-500);
	transform: translateY(-1px);
}
.hero-proof {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
}
.proof-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.proof-item strong {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text);
}
.proof-item span {
	font-size: 0.8rem;
	color: var(--text-muted);
}
.proof-divider {
	width: 1px;
	height: 32px;
	background: var(--border);
}

/* ===== Integrations ===== */
.integrations {
	padding: 40px 0;
	border-bottom: 1px solid var(--border);
}
.integrations-label {
	text-align: center;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	color: var(--slate-500);
	margin-bottom: 20px;
}
.integrations-strip {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 32px;
}
.integrations-strip span {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--slate-500);
	letter-spacing: 0.02em;
}

/* ===== Section Header ===== */
.section-header {
	text-align: center;
	margin-bottom: 56px;
}
.section-tag {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	color: var(--accent);
	margin-bottom: 12px;
}
.section-header h2 {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin-bottom: 16px;
}
.section-header p {
	font-size: 1.05rem;
	color: var(--text-muted);
	max-width: 560px;
	margin: 0 auto;
}

/* ===== Features ===== */
.features {
	padding: 100px 0;
}
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}
.feature-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 32px;
	transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}
.feature-icon {
	font-size: 2rem;
	margin-bottom: 16px;
}
.feature-card h3 {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 8px;
}
.feature-card p {
	font-size: 0.9rem;
	color: var(--text-muted);
	margin-bottom: 16px;
	line-height: 1.6;
}
.feature-card > code {
	display: block;
	background: var(--slate-200);
	padding: 10px 14px;
	border-radius: var(--radius-sm);
	font-size: 0.8rem;
	color: var(--slate-700);
}

/* ===== How It Works ===== */
.how-it-works {
	padding: 100px 0;
	background: var(--surface);
}
.steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 32px;
}
.step {
	padding: 32px;
	border-left: 3px solid var(--accent);
}
.step-num {
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--accent);
	margin-bottom: 12px;
}
.step h3 {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 8px;
}
.step p {
	font-size: 0.9rem;
	color: var(--text-muted);
	line-height: 1.6;
}

/* ===== Comparison ===== */
.comparison {
	padding: 100px 0;
}
.comparison-table-wrap {
	overflow-x: auto;
}
.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 var(--border);
}
.comparison-table th {
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--text-muted);
	background: var(--mist);
}
.comparison-table th.highlight {
	color: var(--accent);
}
.comparison-table td.highlight {
	font-weight: 600;
	color: var(--accent);
}

/* ===== Stats ===== */
.stats {
	padding: 100px 0;
	background: var(--surface);
}
.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 32px;
	text-align: center;
}
.stat-card {
	padding: 32px;
}
.stat-value {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--accent);
	margin-bottom: 4px;
}
.stat-label {
	font-size: 0.85rem;
	color: var(--text-muted);
	font-weight: 500;
}

/* ===== Activity Feed ===== */
.activity {
	padding: 100px 0;
}
.activity-feed {
	max-width: 700px;
	margin: 0 auto;
	height: 360px;
	overflow: hidden;
	position: relative;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
}
.activity-feed::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 80px;
	background: linear-gradient(transparent, var(--surface));
	pointer-events: none;
}
.activity-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 14px 24px;
	border-bottom: 1px solid var(--border);
	font-size: 0.85rem;
	animation: feedSlideIn 0.4s ease;
}
.activity-item .activity-user {
	font-weight: 600;
	color: var(--text);
	min-width: 100px;
}
.activity-item .activity-format {
	font-family: 'Space Grotesk', monospace;
	color: var(--amber-600);
	background: var(--amber-100);
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 0.8rem;
}
.activity-item .activity-result {
	color: var(--text-muted);
	font-family: 'Space Grotesk', monospace;
	font-size: 0.8rem;
}
.activity-item .activity-time {
	margin-left: auto;
	color: var(--slate-500);
	font-size: 0.75rem;
	white-space: nowrap;
}
@keyframes feedSlideIn {
	from { opacity: 0; transform: translateY(-10px); }
	to { opacity: 1; transform: translateY(0); }
}

/* ===== Pricing ===== */
.pricing {
	padding: 100px 0;
	background: var(--surface);
}
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
}
.pricing-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 36px 28px;
	position: relative;
	transition: transform 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
	border-color: var(--accent);
	box-shadow: 0 0 0 1px var(--accent);
}
.pricing-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent);
	color: var(--slate-950);
	padding: 4px 16px;
	border-radius: 999px;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
}
.pricing-tier {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-muted);
	margin-bottom: 8px;
}
.pricing-price {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 4px;
}
.pricing-price span {
	font-size: 1rem;
	font-weight: 500;
	color: var(--text-muted);
}
.pricing-desc {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin-bottom: 24px;
}
.pricing-features {
	list-style: none;
	margin-bottom: 28px;
}
.pricing-features li {
	padding: 6px 0;
	font-size: 0.85rem;
	color: var(--text-muted);
	border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }

/* ===== Testimonials ===== */
.testimonials {
	padding: 100px 0;
}
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
	gap: 24px;
}
.testimonial-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 32px;
}
.testimonial-text {
	font-size: 0.95rem;
	color: var(--text);
	line-height: 1.7;
	margin-bottom: 20px;
}
.testimonial-author strong {
	display: block;
	font-size: 0.9rem;
}
.testimonial-author span {
	font-size: 0.8rem;
	color: var(--text-muted);
}

/* ===== Demo ===== */
.demo {
	padding: 100px 0;
	background: var(--surface);
}
.demo-terminal {
	max-width: 720px;
	margin: 0 auto;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.terminal-bar {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	background: var(--slate-900);
}
.terminal-dots {
	display: flex;
	gap: 6px;
}
.terminal-dots span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}
.terminal-dots span:nth-child(1) { background: #ef4444; }
.terminal-dots span:nth-child(2) { background: #f59e0b; }
.terminal-dots span:nth-child(3) { background: #22c55e; }
.terminal-title {
	font-size: 0.75rem;
	color: var(--slate-500);
	font-weight: 500;
}
.terminal-body {
	background: var(--slate-950);
	padding: 24px;
	min-height: 200px;
}
.demo-controls {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
}
.demo-btn {
	padding: 6px 14px;
	background: var(--slate-800);
	color: var(--slate-400);
	border: 1px solid var(--slate-700);
	border-radius: var(--radius-sm);
	font-size: 0.8rem;
	font-weight: 500;
	font-family: 'Space Grotesk', sans-serif;
	transition: all 0.2s;
}
.demo-btn:hover {
	background: var(--slate-700);
	color: var(--slate-200);
}
.demo-btn.active {
	background: var(--accent);
	color: var(--slate-950);
	border-color: var(--accent);
}
.terminal-output {
	font-family: 'Space Grotesk', monospace;
	font-size: 0.9rem;
}
.terminal-line {
	display: flex;
	gap: 8px;
	margin-bottom: 8px;
}
.prompt { color: var(--amber-500); }
.cmd { color: var(--slate-300); }
.terminal-line.result {
	color: var(--slate-400);
	padding-left: 20px;
}

/* ===== FAQ ===== */
.faq {
	padding: 100px 0;
}
.faq-list {
	max-width: 720px;
	margin: 0 auto;
}
.faq-item {
	border-bottom: 1px solid var(--border);
}
.faq-item summary {
	padding: 20px 0;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.faq-item summary::after {
	content: '+';
	font-size: 1.25rem;
	color: var(--accent);
	transition: transform 0.2s;
}
.faq-item[open] summary::after {
	transform: rotate(45deg);
}
.faq-item p {
	padding: 0 0 20px;
	font-size: 0.9rem;
	color: var(--text-muted);
	line-height: 1.7;
}

/* ===== Waitlist ===== */
.waitlist {
	padding: 100px 0;
	background: var(--surface);
}
.waitlist-inner {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}
.waitlist-inner h2 {
	font-size: clamp(2rem, 5vw, 2.75rem);
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 16px;
}
.waitlist-inner > p {
	color: var(--text-muted);
	margin-bottom: 32px;
}
.waitlist-form {
	display: flex;
	gap: 12px;
	max-width: 480px;
	margin: 0 auto 16px;
}
.waitlist-form input {
	flex: 1;
	padding: 14px 18px;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	font-size: 0.95rem;
	font-family: 'Space Grotesk', sans-serif;
	outline: none;
	transition: border-color 0.2s;
}
.waitlist-form input:focus {
	border-color: var(--accent);
}
.waitlist-note {
	font-size: 0.8rem;
	color: var(--slate-500);
}

/* ===== Portfolio Banner ===== */
.portfolio-banner {
	padding: 48px 0;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}
.portfolio-label {
	text-align: center;
	font-size: 0.8rem;
	color: var(--text-muted);
	margin-bottom: 16px;
}
.portfolio-label a {
	color: var(--accent);
	font-weight: 600;
}
.portfolio-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px;
}
.portfolio-grid a,
.portfolio-grid .current {
	display: inline-block;
	padding: 4px 10px;
	font-size: 0.7rem;
	font-weight: 500;
	border-radius: 4px;
	background: var(--surface);
	border: 1px solid var(--border);
	color: var(--text-muted);
	transition: all 0.2s;
}
.portfolio-grid a:hover {
	border-color: var(--accent);
	color: var(--text);
}
.portfolio-grid .current {
	background: var(--accent);
	color: var(--slate-950);
	border-color: var(--accent);
	font-weight: 700;
}

/* ===== Footer ===== */
.footer {
	padding: 64px 0 32px;
	background: var(--slate-950);
	color: var(--slate-400);
}
.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 48px;
}
.footer-brand .nav-logo {
	color: var(--slate-200);
	margin-bottom: 12px;
}
.footer-brand p {
	font-size: 0.85rem;
	color: var(--slate-500);
	line-height: 1.6;
}
.footer-col h4 {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--slate-300);
	letter-spacing: 0.05em;
	margin-bottom: 16px;
}
.footer-col a {
	display: block;
	font-size: 0.85rem;
	color: var(--slate-500);
	padding: 4px 0;
	transition: color 0.2s;
}
.footer-col a:hover { color: var(--slate-300); }
.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 24px;
	border-top: 1px solid var(--slate-800);
	font-size: 0.8rem;
	color: var(--slate-600);
}
.footer-bottom a {
	color: var(--accent);
}

/* ===== Modal ===== */
.modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 2000;
	background: rgba(15, 23, 42, 0.6);
	backdrop-filter: blur(8px);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
}
.modal-overlay.active {
	opacity: 1;
	pointer-events: auto;
}
.modal {
	background: var(--surface);
	padding: 40px;
	border-radius: var(--radius);
	max-width: 440px;
	width: 90%;
	text-align: center;
	position: relative;
}
.modal h3 {
	margin-bottom: 12px;
	font-size: 1.25rem;
}
.modal h3 span { color: var(--accent); }
.modal p {
	font-size: 0.9rem;
	color: var(--text-muted);
	line-height: 1.6;
}
.modal-close {
	position: absolute;
	top: 12px;
	right: 16px;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--text-muted);
	transition: color 0.2s;
}
.modal-close:hover { color: var(--text); }

/* ===== Mobile ===== */
@media (max-width: 768px) {
	.nav-links { display: none; }
	.nav-mobile-toggle { display: block; }
	.nav-links.open {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 64px;
		left: 0;
		right: 0;
		background: var(--surface);
		border-bottom: 1px solid var(--border);
		padding: 24px;
		gap: 16px;
	}
	.hero h1 { font-size: 2.5rem; }
	.hero-proof { flex-direction: column; gap: 16px; }
	.proof-divider { width: 32px; height: 1px; }
	.features-grid { grid-template-columns: 1fr; }
	.steps { grid-template-columns: 1fr; }
	.pricing-grid { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
	.footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
	.waitlist-form { flex-direction: column; }
	.hero-actions { flex-direction: column; align-items: center; }
	.clock-viz { width: 300px; height: 300px; }
	.clock-ring-1 { width: 300px; height: 300px; }
	.clock-ring-2 { width: 220px; height: 220px; }
	.clock-ring-3 { width: 140px; height: 140px; }
	.clock-hand-hour { height: 50px; }
	.clock-hand-minute { height: 70px; }
	.clock-hand-second { height: 80px; }
	.testimonials-grid { grid-template-columns: 1fr; }
	.comparison-table { font-size: 0.8rem; }
}

/* ===== 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: var(--amber-500);
	color: #fff;
	border: 1px solid var(--amber-500);
}

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