:root {
	--bg: #f8fafc;
	--bg-alt: #f1f5f9;
	--surface: #ffffff;
	--surface-hover: #f8fafc;
	--text: #0f172a;
	--text-secondary: #475569;
	--text-muted: #94a3b8;
	--border: #e2e8f0;
	--border-light: #f1f5f9;
	--cyan: #06b6d4;
	--cyan-light: #67e8f9;
	--cyan-dark: #0891b2;
	--sky: #0ea5e9;
	--sky-light: #7dd3fc;
	--sky-dark: #0284c7;
	--slate-900: #0f172a;
	--slate-800: #1e293b;
	--slate-700: #334155;
	--slate-600: #475569;
	--slate-500: #64748b;
	--slate-400: #94a3b8;
	--slate-300: #cbd5e1;
	--slate-200: #e2e8f0;
	--slate-100: #f1f5f9;
	--slate-50: #f8fafc;
	--radius: 12px;
	--radius-sm: 8px;
	--radius-lg: 20px;
	--shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
	--shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
	--shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.1);
	--font: 'Plus Jakarta Sans', system-ui, sans-serif;
	--mono: 'Space Mono', 'Courier New', monospace;
	--transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

a {
	color: inherit;
	text-decoration: none;
}

code {
	font-family: var(--mono);
	font-size: 0.85em;
	background: var(--slate-100);
	padding: 2px 6px;
	border-radius: 4px;
	color: var(--cyan-dark);
}

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

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

.modal {
	background: var(--surface);
	border-radius: var(--radius-lg);
	padding: 48px;
	max-width: 420px;
	width: 90%;
	text-align: center;
	box-shadow: var(--shadow-lg);
	transform: translateY(20px) scale(0.95);
	transition: transform var(--transition);
}

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

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

.modal-icon {
	font-size: 48px;
	margin-bottom: 16px;
}

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

.modal p {
	color: var(--text-secondary);
}

/* Navigation */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(248, 250, 252, 0.8);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid transparent;
	transition: border-color var(--transition), background var(--transition);
}

.nav.scrolled {
	border-color: var(--border);
	background: rgba(248, 250, 252, 0.95);
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
}

.nav-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 1.15rem;
	letter-spacing: -0.02em;
}

.nav-logo {
	flex-shrink: 0;
}

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

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

.nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--text);
	border-radius: 2px;
	transition: transform var(--transition), opacity var(--transition);
}

.mobile-nav {
	display: none;
	position: fixed;
	top: 64px;
	left: 0;
	right: 0;
	background: var(--surface);
	border-bottom: 1px solid var(--border);
	padding: 16px 24px;
	flex-direction: column;
	gap: 12px;
	z-index: 99;
}

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

.mobile-nav a {
	font-size: 1rem;
	font-weight: 500;
	color: var(--text-secondary);
	padding: 8px 0;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	border-radius: var(--radius-sm);
	font-family: var(--font);
	font-weight: 600;
	font-size: 0.9rem;
	cursor: pointer;
	transition: all var(--transition);
	border: none;
	text-decoration: none;
}

.btn-primary {
	background: linear-gradient(135deg, var(--cyan), var(--sky));
	color: #fff;
	box-shadow: 0 2px 8px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
	box-shadow: 0 4px 16px rgba(6, 182, 212, 0.4);
	transform: translateY(-1px);
}

.btn-ghost {
	background: transparent;
	color: var(--text);
	border: 1px solid var(--border);
}

.btn-ghost:hover {
	background: var(--bg-alt);
	border-color: var(--slate-300);
}

.btn-outline {
	background: transparent;
	color: var(--cyan-dark);
	border: 2px solid var(--cyan);
}

.btn-outline:hover {
	background: var(--cyan);
	color: #fff;
}

.btn-sm {
	padding: 8px 20px;
	font-size: 0.85rem;
	background: var(--slate-900);
	color: #fff;
	border-radius: var(--radius-sm);
}

.btn-sm:hover {
	background: var(--slate-700);
	color: #fff;
}

/* Section Headers */
.section-header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 56px;
}

.section-tag {
	display: inline-block;
	font-family: var(--mono);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--cyan-dark);
	background: rgba(6, 182, 212, 0.08);
	padding: 4px 14px;
	border-radius: 20px;
	margin-bottom: 16px;
}

.section-header h2 {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.15;
	margin-bottom: 12px;
}

.section-header p {
	color: var(--text-secondary);
	font-size: 1.05rem;
	line-height: 1.6;
}

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

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

.hero-bg canvas {
	width: 100%;
	height: 100%;
	opacity: 0.35;
}

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

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--text-muted);
	background: var(--surface);
	padding: 6px 16px;
	border-radius: 20px;
	border: 1px solid var(--border);
	margin-bottom: 28px;
}

.hero-badge a {
	color: var(--cyan-dark);
	font-weight: 700;
}

.hero h1 {
	font-size: clamp(2.25rem, 6vw, 3.75rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.1;
	margin-bottom: 20px;
	background: linear-gradient(135deg, var(--text) 40%, var(--cyan-dark));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-sub {
	font-size: 1.15rem;
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 36px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

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

.hero-stats {
	display: flex;
	justify-content: center;
	gap: 48px;
	flex-wrap: wrap;
}

.hero-stat {
	text-align: center;
}

.hero-stat-num {
	display: block;
	font-family: var(--mono);
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--cyan-dark);
}

.hero-stat-label {
	font-size: 0.8rem;
	color: var(--text-muted);
	font-weight: 500;
}

/* Stats Bar */
.stats-bar {
	background: var(--slate-900);
	padding: 48px 0;
}

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

.stat-value {
	display: block;
	font-family: var(--mono);
	font-size: 2rem;
	font-weight: 700;
	color: var(--cyan-light);
	margin-bottom: 4px;
}

.stat-desc {
	font-size: 0.85rem;
	color: var(--slate-400);
	font-weight: 500;
}

/* Features */
.features {
	padding: 120px 0;
}

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

.feature-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px;
	transition: all var(--transition);
	position: relative;
	opacity: 0;
	transform: translateY(20px);
}

.feature-card.visible {
	opacity: 1;
	transform: translateY(0);
}

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

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

.feature-card h3 {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 8px;
	letter-spacing: -0.01em;
}

.feature-card h3 code {
	font-size: 0.75em;
	font-weight: 400;
}

.feature-card p {
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 16px;
}

.feature-flag {
	font-family: var(--mono);
	font-size: 0.7rem;
	color: var(--text-muted);
	background: var(--bg-alt);
	padding: 2px 8px;
	border-radius: 4px;
}

/* Route Map */
.route-map {
	padding: 120px 0;
	background: var(--bg-alt);
}

.route-visual {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 48px 32px;
	overflow-x: auto;
}

.route-nodes {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	min-width: 800px;
}

.route-node {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	position: relative;
	flex-shrink: 0;
}

.node-dot {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--cyan);
	box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.15);
	transition: all 0.3s;
	position: relative;
}

.route-node.origin .node-dot {
	background: var(--sky);
	width: 28px;
	height: 28px;
	box-shadow: 0 0 0 6px rgba(14, 165, 233, 0.15);
}

.route-node.destination .node-dot {
	background: linear-gradient(135deg, var(--cyan), var(--sky));
	width: 28px;
	height: 28px;
	box-shadow: 0 0 0 6px rgba(6, 182, 212, 0.2);
}

.route-node.timeout .node-dot {
	background: var(--slate-400);
	box-shadow: 0 0 0 4px rgba(148, 163, 184, 0.15);
}

.route-node span {
	font-family: var(--mono);
	font-size: 0.7rem;
	color: var(--text-secondary);
	white-space: nowrap;
}

.route-node::before {
	content: attr(data-label);
	position: absolute;
	top: -28px;
	font-size: 0.7rem;
	font-weight: 600;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.route-node.hop::after {
	content: attr(data-ms);
	position: absolute;
	bottom: -24px;
	font-family: var(--mono);
	font-size: 0.65rem;
	color: var(--cyan-dark);
	font-weight: 700;
}

.route-node.timeout::after {
	color: var(--slate-400);
}

.route-line {
	width: 60px;
	height: 2px;
	background: var(--slate-200);
	position: relative;
	flex-shrink: 0;
	overflow: hidden;
}

.route-pulse {
	position: absolute;
	top: -3px;
	left: -10px;
	width: 10px;
	height: 8px;
	background: var(--cyan);
	border-radius: 50%;
	animation: pulse-travel 2s ease-in-out infinite;
	opacity: 0;
}

@keyframes pulse-travel {
	0% {
		left: -10px;
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	90% {
		opacity: 1;
	}
	100% {
		left: 60px;
		opacity: 0;
	}
}

.route-line:nth-child(2) .route-pulse { animation-delay: 0s; }
.route-line:nth-child(4) .route-pulse { animation-delay: 0.3s; }
.route-line:nth-child(6) .route-pulse { animation-delay: 0.6s; }
.route-line:nth-child(8) .route-pulse { animation-delay: 0.9s; }
.route-line:nth-child(10) .route-pulse { animation-delay: 1.2s; }
.route-line:nth-child(12) .route-pulse { animation-delay: 1.5s; }

/* How It Works */
.how-it-works {
	padding: 120px 0;
}

.steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}

.step {
	position: relative;
	padding: 32px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	opacity: 0;
	transform: translateY(20px);
	transition: all var(--transition);
}

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

.step:hover {
	border-color: var(--sky);
	box-shadow: var(--shadow-md);
}

.step-num {
	font-family: var(--mono);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--cyan-light);
	opacity: 0.4;
	line-height: 1;
	margin-bottom: 16px;
}

.step h3 {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 10px;
	letter-spacing: -0.01em;
}

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

/* Protocol Comparison */
.protocols {
	padding: 120px 0;
	background: var(--bg-alt);
}

.protocol-table-wrap {
	overflow-x: auto;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--surface);
}

.protocol-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.875rem;
}

.protocol-table th {
	background: var(--slate-900);
	color: #fff;
	padding: 16px 20px;
	text-align: left;
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 0.02em;
}

.protocol-table th code {
	background: rgba(255, 255, 255, 0.15);
	color: var(--cyan-light);
	font-size: 0.8em;
}

.protocol-table td {
	padding: 14px 20px;
	border-bottom: 1px solid var(--border-light);
	color: var(--text-secondary);
}

.protocol-table tr:last-child td {
	border-bottom: none;
}

.protocol-table tr:hover td {
	background: var(--slate-50);
}

.protocol-table td:first-child {
	font-weight: 600;
	color: var(--text);
}

.protocol-table td.highlight {
	color: var(--cyan-dark);
	font-weight: 700;
}

/* Demo / Terminal */
.demo {
	padding: 120px 0;
}

.terminal {
	background: var(--slate-900);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	margin-bottom: 48px;
}

.terminal-bar {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 12px 20px;
	background: 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: #ef4444; }
.terminal-dots span:nth-child(2) { background: #eab308; }
.terminal-dots span:nth-child(3) { background: #22c55e; }

.terminal-title {
	font-family: var(--mono);
	font-size: 0.75rem;
	color: var(--slate-400);
}

.terminal-body {
	padding: 24px;
	font-family: var(--mono);
	font-size: 0.8rem;
	line-height: 1.8;
}

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

.terminal-line.cmd {
	color: var(--cyan-light);
}

.terminal-line.output {
	color: var(--slate-300);
}

.terminal-line.hop-line {
	opacity: 0;
	transform: translateX(-10px);
	transition: all 0.4s ease;
}

.terminal-line.hop-line.visible {
	opacity: 1;
	transform: translateX(0);
}

/* Hop Analysis Table */
.hop-table-wrap {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
}

.hop-table-wrap h3 {
	padding: 20px 24px 0;
	font-size: 1.1rem;
	font-weight: 700;
}

.hop-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 16px;
	font-size: 0.85rem;
}

.hop-table th {
	padding: 12px 16px;
	text-align: left;
	background: var(--bg-alt);
	font-weight: 600;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--text-muted);
	border-bottom: 1px solid var(--border);
}

.hop-table td {
	padding: 12px 16px;
	border-bottom: 1px solid var(--border-light);
	color: var(--text-secondary);
}

.hop-table tr:last-child td {
	border-bottom: none;
}

.hop-table td code {
	font-size: 0.8rem;
}

.hop-timeout td {
	color: var(--slate-400);
	font-style: italic;
}

.status-ok { color: #22c55e; }
.status-timeout { color: var(--slate-400); }
.status-dest { color: var(--cyan); }

/* Testimonials */
.testimonials {
	padding: 120px 0;
	background: var(--bg-alt);
}

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

.testimonial-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 32px;
	opacity: 0;
	transform: translateY(20px);
	transition: all var(--transition);
}

.testimonial-card.visible {
	opacity: 1;
	transform: translateY(0);
}

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

.testimonial-quote {
	font-size: 0.95rem;
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 24px;
	font-style: italic;
}

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

.testimonial-avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--cyan), var(--sky));
	color: #fff;
	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);
}

/* Pricing */
.pricing {
	padding: 120px 0;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	align-items: start;
}

.pricing-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 32px;
	text-align: center;
	position: relative;
	opacity: 0;
	transform: translateY(20px);
	transition: all var(--transition);
}

.pricing-card.visible {
	opacity: 1;
	transform: translateY(0);
}

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

.pricing-card.popular {
	border-color: var(--cyan);
	box-shadow: 0 0 0 1px var(--cyan), var(--shadow-md);
	transform: translateY(-8px) scale(1.02);
}

.pricing-card.popular.visible {
	transform: translateY(-8px) scale(1.02);
}

.pricing-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, var(--cyan), var(--sky));
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	padding: 4px 16px;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	white-space: nowrap;
}

.pricing-tier {
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: -0.01em;
	margin-bottom: 12px;
}

.pricing-price {
	font-size: 2.5rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	margin-bottom: 8px;
}

.pricing-price span {
	font-size: 0.9rem;
	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;
	text-align: left;
	margin-bottom: 28px;
}

.pricing-features li {
	font-size: 0.85rem;
	color: var(--text-secondary);
	padding: 6px 0;
	position: relative;
	padding-left: 22px;
}

.pricing-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--cyan);
	font-weight: 700;
}

.pricing-card .btn {
	width: 100%;
}

/* FAQ */
.faq {
	padding: 120px 0;
	background: var(--bg-alt);
}

.faq-list {
	max-width: 720px;
	margin: 0 auto;
}

.faq-item {
	border-bottom: 1px solid var(--border);
	opacity: 0;
	transform: translateY(10px);
	transition: all var(--transition);
}

.faq-item.visible {
	opacity: 1;
	transform: translateY(0);
}

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

.faq-chevron {
	flex-shrink: 0;
	transition: transform var(--transition);
}

.faq-item.open .faq-chevron {
	transform: rotate(180deg);
}

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

.faq-answer p {
	padding-bottom: 20px;
	font-size: 0.9rem;
	color: var(--text-secondary);
	line-height: 1.7;
}

/* Portfolio Banner */
.portfolio-banner {
	padding: 56px 0;
	background: var(--slate-900);
	text-align: center;
}

.portfolio-banner h2 {
	font-size: 1.25rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 24px;
}

.portfolio-banner h2 a {
	color: var(--cyan-light);
	text-decoration: underline;
	text-decoration-color: rgba(103, 232, 249, 0.3);
	text-underline-offset: 3px;
}

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

.portfolio-scroll a {
	font-size: 0.8rem;
	color: var(--slate-400);
	font-weight: 500;
	transition: color var(--transition);
}

.portfolio-scroll a:hover {
	color: var(--cyan-light);
}

.portfolio-current {
	font-size: 0.8rem;
	color: var(--cyan);
	font-weight: 700;
}

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

.footer-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 48px;
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 1.1rem;
	min-width: 200px;
}

.footer-links {
	display: flex;
	gap: 64px;
	flex: 1;
}

.footer-col {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer-col h4 {
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--text-muted);
	margin-bottom: 4px;
}

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

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

.footer-bottom {
	width: 100%;
	padding-top: 32px;
	margin-top: 16px;
	border-top: 1px solid var(--border-light);
}

.footer-bottom p {
	font-size: 0.8rem;
	color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}

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

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

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

@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

	.nav-toggle {
		display: flex;
	}

	.hero {
		padding: 120px 0 80px;
		min-height: auto;
	}

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

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

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

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

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

	.pricing-card.popular {
		transform: none;
	}

	.pricing-card.popular.visible {
		transform: none;
	}

	.hero-stats {
		gap: 24px;
	}

	.footer-links {
		flex-direction: column;
		gap: 32px;
	}

	.footer-inner {
		flex-direction: column;
		gap: 32px;
	}
}

/* Animation base */
[data-anim] {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-anim].visible {
	opacity: 1;
	transform: translateY(0);
}

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

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

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