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

:root {
	--indigo: #4338CA;
	--indigo-light: #6366F1;
	--indigo-dark: #3730A3;
	--indigo-faint: #EEF2FF;
	--indigo-glow: rgba(67, 56, 202, 0.10);
	--text: #0F172A;
	--text-secondary: #64748B;
	--bg: #FFFFFF;
	--bg-section: #F8FAFC;
	--border: #E2E8F0;
	--border-light: #F1F5F9;
	--radius: 12px;
	--radius-lg: 20px;
	--shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
	--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.03);
	--shadow-lg: 0 10px 40px rgba(67, 56, 202, 0.07), 0 4px 12px rgba(0, 0, 0, 0.03);
	--font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	--mono: 'JetBrains Mono', 'Fira Code', monospace;
	--transition: 0.2s ease;
}

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

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

a {
	color: var(--indigo);
	text-decoration: none;
	transition: opacity var(--transition);
}

a:hover {
	opacity: 0.8;
}

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

.section {
	padding: 120px 0;
}

.section:nth-child(even) {
	background: var(--bg-section);
}

.section-label {
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--indigo);
	margin-bottom: 12px;
}

.section-title {
	font-size: clamp(2rem, 4vw, 2.8rem);
	font-weight: 800;
	line-height: 1.15;
	color: var(--text);
	margin-bottom: 16px;
}

.section-subtitle {
	font-size: 1.08rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto 60px auto;
}

.section-label,
.section-title,
.section-subtitle {
	text-align: center;
}

/* ===== Nav ===== */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 16px 0;
	transition: all 0.3s ease;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.nav.scrolled {
	padding: 10px 0;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.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: var(--text);
}

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

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

.nav-links a {
	color: var(--text-secondary);
	font-size: 0.88rem;
	font-weight: 500;
	transition: color var(--transition);
}

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

.nav-cta {
	background: var(--indigo);
	color: #fff !important;
	padding: 8px 20px;
	border-radius: 8px;
	font-weight: 600;
}

.nav-cta:hover {
	background: var(--indigo-dark);
	opacity: 1 !important;
}

.nav-mobile-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--text);
}

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

.hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.hero-bars {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: flex-end;
	gap: 24px;
	height: 100%;
	padding-bottom: 60px;
	opacity: 0.06;
}

.hero-bar {
	width: 48px;
	height: var(--h);
	background: var(--indigo);
	border-radius: 8px 8px 0 0;
	animation: barGrow 3s ease-in-out infinite alternate;
	animation-delay: var(--delay);
}

@keyframes barGrow {
	0% {
		transform: scaleY(0.4);
		opacity: 0.5;
	}
	50% {
		transform: scaleY(1);
		opacity: 1;
	}
	100% {
		transform: scaleY(0.6);
		opacity: 0.7;
	}
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 720px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	border-radius: 100px;
	background: var(--indigo-faint);
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--indigo);
	margin-bottom: 28px;
}

.hero-badge .dot {
	width: 7px;
	height: 7px;
	background: var(--indigo);
	border-radius: 50%;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.3; }
}

.hero h1 {
	font-size: clamp(2.8rem, 6vw, 4.2rem);
	font-weight: 800;
	line-height: 1.08;
	color: var(--text);
	margin-bottom: 24px;
	letter-spacing: -0.03em;
}

.hero .highlight {
	color: var(--indigo);
}

.hero-desc {
	font-size: 1.15rem;
	color: var(--text-secondary);
	line-height: 1.7;
	max-width: 580px;
	margin: 0 auto 36px;
}

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

.btn-primary {
	display: inline-flex;
	align-items: center;
	padding: 14px 28px;
	background: var(--indigo);
	color: #fff;
	border: none;
	border-radius: 10px;
	font-size: 0.95rem;
	font-weight: 600;
	font-family: var(--font);
	cursor: pointer;
	transition: all var(--transition);
}

.btn-primary:hover {
	background: var(--indigo-dark);
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(67, 56, 202, 0.3);
}

.btn-primary.btn-outline {
	background: transparent;
	color: var(--indigo);
	border: 1.5px solid var(--border);
}

.btn-primary.btn-outline:hover {
	border-color: var(--indigo);
	background: var(--indigo-faint);
	box-shadow: none;
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	padding: 14px 28px;
	color: var(--text-secondary);
	font-size: 0.95rem;
	font-weight: 600;
	border-radius: 10px;
	transition: color var(--transition);
}

.btn-secondary:hover {
	color: var(--text);
	opacity: 1;
}

.hero-social-proof {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-size: 0.85rem;
	color: var(--text-secondary);
}

.avatar-stack {
	display: flex;
}

.avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	border: 2px solid #fff;
	margin-right: -8px;
}

/* ===== Integrations ===== */
.integrations {
	padding: 48px 0;
	border-bottom: 1px solid var(--border-light);
}

.integrations-label {
	text-align: center;
	font-size: 0.78rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--text-secondary);
	margin-bottom: 24px;
	opacity: 0.7;
}

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

.integration-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--text-secondary);
	opacity: 0.6;
}

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

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

.feature-card:hover {
	border-color: var(--indigo-light);
	box-shadow: var(--shadow-lg);
	transform: translateY(-2px);
}

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

.feature-card h3 {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--text);
}

.feature-flag {
	display: inline-block;
	background: var(--indigo-faint);
	color: var(--indigo);
	font-size: 0.72rem;
	font-weight: 700;
	font-family: var(--mono);
	padding: 2px 8px;
	border-radius: 4px;
	vertical-align: middle;
}

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

/* ===== Comparison ===== */
.comparison-table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

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

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

.comparison-table th {
	font-weight: 700;
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--text-secondary);
	background: var(--bg-section);
}

.comparison-table td {
	color: var(--text-secondary);
}

.comparison-table .highlight-col {
	color: var(--indigo);
	font-weight: 700;
	background: var(--indigo-faint);
}

.comparison-table th.highlight-col {
	color: var(--indigo);
}

/* ===== How It Works ===== */
.steps-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	margin-top: 48px;
}

.step {
	text-align: center;
}

.step-number {
	font-size: 2.4rem;
	font-weight: 800;
	color: var(--indigo);
	opacity: 0.2;
	margin-bottom: 16px;
	font-family: var(--mono);
}

.step h3 {
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.step p {
	font-size: 0.88rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* ===== Stats ===== */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	text-align: center;
}

.stat-value {
	font-size: clamp(2rem, 4vw, 2.8rem);
	font-weight: 800;
	color: var(--indigo);
	margin-bottom: 4px;
	font-variant-numeric: tabular-nums;
}

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

/* ===== Pricing ===== */
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 48px;
}

.pricing-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	position: relative;
	transition: all 0.3s ease;
}

.pricing-card:hover {
	border-color: var(--indigo-light);
	box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
	border-color: var(--indigo);
	box-shadow: var(--shadow-lg);
}

.pricing-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--indigo);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 700;
	padding: 4px 16px;
	border-radius: 100px;
	white-space: nowrap;
}

.pricing-tier {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--text-secondary);
	margin-bottom: 8px;
}

.pricing-price {
	font-size: 2.4rem;
	font-weight: 800;
	color: var(--text);
	margin-bottom: 8px;
}

.pricing-price span {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-secondary);
}

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

.pricing-features {
	list-style: none;
	margin-bottom: 28px;
	flex: 1;
}

.pricing-features li {
	font-size: 0.85rem;
	color: var(--text-secondary);
	padding: 6px 0;
	border-bottom: 1px solid var(--border-light);
}

.pricing-features li::before {
	content: "✓ ";
	color: var(--indigo);
	font-weight: 700;
}

.pricing-card .btn-primary {
	width: 100%;
	justify-content: center;
}

/* ===== Testimonials ===== */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 48px;
}

.testimonial-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px 24px;
	transition: all 0.3s ease;
}

.testimonial-card:hover {
	box-shadow: var(--shadow-md);
}

.testimonial-card:nth-child(4) {
	grid-column: 1 / 2;
}

.testimonial-card:nth-child(5) {
	grid-column: 2 / 4;
}

.testimonial-stars {
	color: #F59E0B;
	font-size: 0.85rem;
	letter-spacing: 2px;
	margin-bottom: 12px;
}

.testimonial-card p {
	font-size: 0.9rem;
	color: var(--text-secondary);
	line-height: 1.65;
	margin-bottom: 20px;
}

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

.testimonial-author strong {
	display: block;
	font-size: 0.85rem;
	color: var(--text);
}

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

/* ===== Demo ===== */
.demo-controls {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
}

.demo-btn {
	padding: 8px 18px;
	border: 1px solid var(--border);
	border-radius: 8px;
	background: var(--bg);
	color: var(--text-secondary);
	font-size: 0.82rem;
	font-weight: 600;
	font-family: var(--font);
	cursor: pointer;
	transition: all var(--transition);
}

.demo-btn:hover {
	border-color: var(--indigo-light);
	color: var(--indigo);
}

.demo-btn.active {
	background: var(--indigo);
	color: #fff;
	border-color: var(--indigo);
}

.terminal {
	background: #0F172A;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	max-width: 720px;
	margin: 0 auto;
}

.terminal-header {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 14px 18px;
	background: #1E293B;
}

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

.terminal-dot.red { background: #EF4444; }
.terminal-dot.yellow { background: #F59E0B; }
.terminal-dot.green { background: #22C55E; }

.terminal-title {
	margin-left: 8px;
	font-size: 0.78rem;
	color: #64748B;
	font-family: var(--mono);
}

.terminal-body {
	padding: 20px;
	font-family: var(--mono);
	font-size: 0.82rem;
	line-height: 1.7;
	color: #CBD5E1;
	overflow-x: auto;
	min-height: 260px;
}

.terminal-body .prompt {
	color: #22C55E;
}

.terminal-body .command {
	color: #F8FAFC;
}

.terminal-body .output {
	color: #94A3B8;
}

.terminal-body .line-num {
	color: #475569;
}

.terminal-body .sorted-highlight {
	color: #818CF8;
}

.terminal-body .key-highlight {
	color: #F59E0B;
}

.terminal-body .removed-line {
	color: #475569;
	text-decoration: line-through;
	opacity: 0.5;
}

/* ===== Activity Feed ===== */
.activity-feed {
	max-width: 680px;
	margin: 40px auto 0;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	max-height: 320px;
	overflow-y: auto;
}

.activity-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 20px;
	border-bottom: 1px solid var(--border-light);
	font-size: 0.82rem;
	animation: fadeInSlide 0.4s ease;
}

.activity-item:nth-child(odd) {
	background: var(--bg-section);
}

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

.activity-icon {
	font-size: 1rem;
	flex-shrink: 0;
}

.activity-text {
	flex: 1;
	color: var(--text-secondary);
}

.activity-text strong {
	color: var(--text);
}

.activity-time {
	font-size: 0.72rem;
	color: var(--text-secondary);
	opacity: 0.6;
	white-space: nowrap;
	font-family: var(--mono);
}

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

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

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

.faq-question::after {
	content: "+";
	font-size: 1.3rem;
	color: var(--indigo);
	transition: transform 0.2s ease;
	flex-shrink: 0;
	margin-left: 16px;
}

.faq-item.open .faq-question::after {
	transform: rotate(45deg);
}

.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.9rem;
	color: var(--text-secondary);
	line-height: 1.65;
}

/* ===== Waitlist ===== */
.waitlist {
	background: var(--indigo-faint) !important;
}

.waitlist-content {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.waitlist-content h2 {
	font-size: clamp(2rem, 4vw, 2.6rem);
	font-weight: 800;
	line-height: 1.15;
	margin-bottom: 16px;
}

.waitlist-content p {
	color: var(--text-secondary);
	margin-bottom: 32px;
}

.waitlist-form {
	display: flex;
	gap: 10px;
	max-width: 440px;
	margin: 0 auto 16px;
}

.waitlist-input {
	flex: 1;
	padding: 14px 18px;
	border: 1px solid var(--border);
	border-radius: 10px;
	font-size: 0.9rem;
	font-family: var(--font);
	background: var(--bg);
	outline: none;
	transition: border-color var(--transition);
}

.waitlist-input:focus {
	border-color: var(--indigo);
}

.waitlist-note {
	font-size: 0.78rem;
	color: var(--text-secondary);
	opacity: 0.7;
}

/* ===== Portfolio Banner ===== */
.portfolio-banner {
	padding: 64px 0;
	background: var(--bg-section);
	border-top: 1px solid var(--border);
	text-align: center;
}

.portfolio-banner h2 {
	font-size: 1.4rem;
	font-weight: 800;
	margin-bottom: 8px;
}

.portfolio-banner > .container > p {
	font-size: 0.88rem;
	color: var(--text-secondary);
	margin-bottom: 28px;
}

.portfolio-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	max-width: 900px;
	margin: 0 auto;
}

.portfolio-grid a,
.portfolio-grid .current {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 6px;
	font-size: 0.78rem;
	font-family: var(--mono);
	font-weight: 500;
	border: 1px solid var(--border);
	color: var(--text-secondary);
	transition: all var(--transition);
}

.portfolio-grid a:hover {
	border-color: var(--indigo);
	color: var(--indigo);
	opacity: 1;
}

.portfolio-grid .current {
	background: var(--indigo);
	color: #fff;
	border-color: var(--indigo);
	font-weight: 700;
}

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

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

.footer-brand p {
	font-size: 0.85rem;
	color: var(--text-secondary);
	margin-top: 12px;
	max-width: 280px;
}

.footer-col h4 {
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text);
	margin-bottom: 16px;
}

.footer-col ul {
	list-style: none;
}

.footer-col li {
	margin-bottom: 8px;
}

.footer-col a {
	font-size: 0.85rem;
	color: var(--text-secondary);
}

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

.footer-bottom {
	display: flex;
	justify-content: space-between;
	padding-top: 24px;
	border-top: 1px solid var(--border-light);
	font-size: 0.78rem;
	color: var(--text-secondary);
}

/* ===== Modal ===== */
.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.5);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

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

.modal {
	background: var(--bg);
	border-radius: var(--radius-lg);
	padding: 40px;
	max-width: 420px;
	width: 90%;
	position: relative;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	transform: translateY(20px);
	transition: transform 0.2s ease;
}

.modal-overlay.active .modal {
	transform: translateY(0);
}

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

.modal h3 {
	font-size: 1.3rem;
	font-weight: 800;
	margin-bottom: 8px;
}

.modal p {
	font-size: 0.9rem;
	color: var(--text-secondary);
	margin-bottom: 20px;
}

.modal .waitlist-input {
	width: 100%;
	margin-bottom: 12px;
}

.modal .btn-primary {
	width: 100%;
	justify-content: center;
}

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

.fade-in.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);
	}

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

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

@media (max-width: 768px) {
	.nav-links {
		display: none;
		position: fixed;
		top: 60px;
		left: 0;
		right: 0;
		background: var(--bg);
		flex-direction: column;
		padding: 24px;
		gap: 16px;
		box-shadow: var(--shadow-md);
		border-bottom: 1px solid var(--border);
	}

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

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

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

	.hero-actions {
		flex-direction: column;
	}

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

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

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

	.pricing-grid {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin: 48px auto 0;
	}

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

	.testimonial-card:nth-child(4),
	.testimonial-card:nth-child(5) {
		grid-column: auto;
	}

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

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

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

	.hero-bars {
		gap: 12px;
	}

	.hero-bar {
		width: 28px;
	}
}

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

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