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

:root {
	--bg: #06060e;
	--bg-subtle: #0c0c1a;
	--bg-card: #0f0f20;
	--bg-card-hover: #141430;
	--surface: #1a1a35;
	--border: rgba(168, 85, 247, 0.15);
	--border-cyan: rgba(34, 211, 238, 0.15);
	--text: #e8e8f0;
	--text-muted: #8888aa;
	--text-dim: #555570;
	--purple: #a855f7;
	--cyan: #22d3ee;
	--green: #4ade80;
	--purple-glow: rgba(168, 85, 247, 0.3);
	--cyan-glow: rgba(34, 211, 238, 0.3);
	--green-glow: rgba(74, 222, 128, 0.3);
	--font-display: 'Playfair Display', Georgia, serif;
	--font-mono: 'JetBrains Mono', 'Fira Code', monospace;
	--container: 1200px;
	--radius: 12px;
	--radius-lg: 20px;
}

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

body {
	font-family: var(--font-mono);
	background: var(--bg);
	color: var(--text);
	line-height: 1.7;
	font-weight: 400;
	font-size: 15px;
	overflow-x: hidden;
}

.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

a { color: var(--cyan); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--green); }
code { font-family: var(--font-mono); font-size: 0.9em; color: var(--cyan); background: rgba(34, 211, 238, 0.08); padding: 2px 6px; border-radius: 4px; }

/* ===== Syscall Rain Canvas ===== */
#syscall-rain {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
	opacity: 0.12;
}

/* ===== Nav ===== */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 16px 0;
	background: rgba(6, 6, 14, 0.85);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border);
	transition: background 0.3s;
}

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

.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-mono);
	font-weight: 700;
	font-size: 18px;
	color: var(--text);
	letter-spacing: 3px;
}
.nav-logo:hover { color: var(--purple); }

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

.nav-links a {
	color: var(--text-muted);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.5px;
	transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
	background: linear-gradient(135deg, var(--purple), var(--cyan));
	color: var(--bg) !important;
	padding: 8px 20px;
	border-radius: 8px;
	font-weight: 600;
}
.nav-cta:hover { opacity: 0.9; color: var(--bg) !important; }

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

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

.hero-glow {
	position: absolute;
	top: -200px;
	left: 50%;
	transform: translateX(-50%);
	width: 1000px;
	height: 1000px;
	border-radius: 50%;
	background: radial-gradient(ellipse, var(--purple-glow) 0%, var(--cyan-glow) 30%, transparent 70%);
	animation: heroGlow 8s ease-in-out infinite;
	pointer-events: none;
	z-index: 1;
}

@keyframes heroGlow {
	0%, 100% { opacity: 0.4; transform: translateX(-50%) scale(1); filter: hue-rotate(0deg); }
	33% { opacity: 0.6; transform: translateX(-50%) scale(1.1); filter: hue-rotate(60deg); }
	66% { opacity: 0.5; transform: translateX(-50%) scale(0.95); filter: hue-rotate(-40deg); }
}

.hero .container { position: relative; z-index: 2; }

.hero-content {
	max-width: 750px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	background: rgba(168, 85, 247, 0.1);
	border: 1px solid var(--border);
	border-radius: 100px;
	font-size: 12px;
	color: var(--text-muted);
	margin-bottom: 32px;
	letter-spacing: 0.5px;
}

.badge-orb {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--purple);
	animation: orbPulse 2s ease-in-out infinite;
}

@keyframes orbPulse {
	0%, 100% { box-shadow: 0 0 4px var(--purple), 0 0 12px var(--purple-glow); }
	50% { box-shadow: 0 0 8px var(--cyan), 0 0 24px var(--cyan-glow); }
}

.hero-title {
	font-family: var(--font-display);
	font-weight: 900;
	line-height: 1.05;
	margin-bottom: 28px;
}

.hero-line-1 {
	display: block;
	font-size: clamp(48px, 7vw, 88px);
	color: var(--text);
	opacity: 0;
	animation: heroFadeUp 0.8s ease forwards 0.2s;
}

.hero-line-2 {
	display: block;
	font-size: clamp(48px, 7vw, 88px);
	background: linear-gradient(135deg, var(--purple), var(--cyan), var(--green));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: heroFadeUp 0.8s ease forwards 0.4s, gradientShift 6s ease-in-out infinite;
	background-size: 200% 200%;
	opacity: 0;
}

@keyframes heroFadeUp {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes gradientShift {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

.hero-desc {
	font-size: 16px;
	color: var(--text-muted);
	line-height: 1.8;
	margin-bottom: 36px;
	max-width: 640px;
	opacity: 0;
	animation: heroFadeUp 0.8s ease forwards 0.6s;
}

.hero-actions {
	display: flex;
	gap: 16px;
	margin-bottom: 56px;
	opacity: 0;
	animation: heroFadeUp 0.8s ease forwards 0.8s;
}

.btn-primary {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 14px 32px;
	background: linear-gradient(135deg, var(--purple), var(--cyan));
	color: var(--bg);
	font-family: var(--font-mono);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.5px;
	border-radius: 10px;
	border: none;
	cursor: pointer;
	overflow: hidden;
	transition: transform 0.2s, box-shadow 0.3s;
}
.btn-primary:hover {
	color: var(--bg);
	transform: translateY(-2px);
	box-shadow: 0 8px 30px var(--purple-glow), 0 4px 15px var(--cyan-glow);
}
.btn-primary .btn-glow {
	position: absolute;
	inset: -2px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--purple), var(--cyan), var(--green), var(--purple));
	background-size: 300% 300%;
	animation: glowShift 4s linear infinite;
	z-index: -1;
	filter: blur(8px);
	opacity: 0.5;
}

@keyframes glowShift {
	0% { background-position: 0% 50%; }
	100% { background-position: 300% 50%; }
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	padding: 14px 32px;
	background: transparent;
	color: var(--text);
	font-family: var(--font-mono);
	font-weight: 600;
	font-size: 14px;
	border: 1px solid var(--border);
	border-radius: 10px;
	transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover {
	color: var(--text);
	border-color: var(--cyan);
	background: rgba(34, 211, 238, 0.05);
}

.btn-sm { padding: 10px 24px; font-size: 13px; }

.hero-proof {
	display: flex;
	align-items: center;
	gap: 32px;
	opacity: 0;
	animation: heroFadeUp 0.8s ease forwards 1s;
}

.proof-item strong {
	display: block;
	font-family: var(--font-display);
	font-size: 28px;
	font-weight: 800;
	background: linear-gradient(135deg, var(--purple), var(--cyan));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.proof-item span {
	font-size: 12px;
	color: var(--text-dim);
	letter-spacing: 0.5px;
}
.proof-divider {
	width: 1px;
	height: 36px;
	background: var(--border);
}

/* Hero Live Stream */
.hero-stream {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 40%;
	display: flex;
	gap: 12px;
	padding: 100px 24px 0 0;
	overflow: hidden;
	pointer-events: none;
	mask-image: linear-gradient(to bottom, transparent 5%, rgba(0,0,0,0.3) 20%, rgba(0,0,0,0.3) 80%, transparent 95%);
	-webkit-mask-image: linear-gradient(to bottom, transparent 5%, rgba(0,0,0,0.3) 20%, rgba(0,0,0,0.3) 80%, transparent 95%);
	z-index: 1;
}

.stream-column {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
	animation: streamDown 20s linear infinite;
	font-size: 11px;
	color: var(--text-dim);
	font-family: var(--font-mono);
	white-space: nowrap;
	opacity: 0.6;
}

.stream-column:nth-child(2) { animation-duration: 25s; animation-delay: -5s; }
.stream-column:nth-child(3) { animation-duration: 30s; animation-delay: -10s; }

@keyframes streamDown {
	from { transform: translateY(-50%); }
	to { transform: translateY(0%); }
}

.stream-line {
	padding: 2px 0;
	line-height: 1.4;
}
.stream-line .syscall { color: var(--purple); }
.stream-line .retval { color: var(--green); }
.stream-line .err { color: #ef4444; }

/* ===== Logos ===== */
.logos {
	position: relative;
	z-index: 2;
	padding: 60px 0;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.logos-label {
	text-align: center;
	font-size: 12px;
	color: var(--text-dim);
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 28px;
}

.logos-grid {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 48px;
	flex-wrap: wrap;
}

.logos-grid span {
	font-family: var(--font-mono);
	font-size: 14px;
	font-weight: 600;
	color: var(--text-dim);
	letter-spacing: 1px;
	opacity: 0.5;
	transition: opacity 0.3s;
}
.logos-grid span:hover { opacity: 1; }

/* ===== Section Headers ===== */
.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--cyan);
	margin-bottom: 16px;
	padding: 4px 14px;
	background: rgba(34, 211, 238, 0.08);
	border: 1px solid var(--border-cyan);
	border-radius: 100px;
}

.section-header h2 {
	font-family: var(--font-display);
	font-size: clamp(36px, 5vw, 56px);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 16px;
}

.section-header p {
	color: var(--text-muted);
	max-width: 560px;
	margin: 0 auto;
	font-size: 15px;
}

/* ===== Features ===== */
.features {
	position: relative;
	z-index: 2;
	padding: 120px 0;
}

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

.feature-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 36px;
	transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
	transform: translateY(-4px);
	border-color: var(--purple);
	box-shadow: 0 8px 40px rgba(168, 85, 247, 0.1);
}

.feature-card--hero {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(34, 211, 238, 0.05));
	border-color: rgba(168, 85, 247, 0.25);
}

.feature-icon {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	margin-bottom: 20px;
	background: rgba(168, 85, 247, 0.1);
	color: var(--purple);
}
.feature-icon--attach { background: rgba(34, 211, 238, 0.1); color: var(--cyan); }
.feature-icon--filter { background: rgba(74, 222, 128, 0.1); color: var(--green); }
.feature-icon--fork { background: rgba(168, 85, 247, 0.1); color: var(--purple); }
.feature-icon--time { background: rgba(34, 211, 238, 0.1); color: var(--cyan); }
.feature-icon--stack { background: rgba(74, 222, 128, 0.1); color: var(--green); }
.feature-icon--decode { background: rgba(168, 85, 247, 0.1); color: var(--purple); }
.feature-icon--inject { background: rgba(239, 68, 68, 0.1); color: #ef4444; }

.feature-card h3 {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 10px;
}

.feature-card p {
	color: var(--text-muted);
	font-size: 14px;
	line-height: 1.7;
}

.feature-code {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 20px;
	font-size: 13px;
	line-height: 1.8;
	align-self: center;
}
.feature-code code { background: none; padding: 0; }
.feature-code .dim { color: var(--text-dim); }

/* ===== How It Works ===== */
.how-it-works {
	position: relative;
	z-index: 2;
	padding: 120px 0;
	background: var(--bg-subtle);
}

.steps {
	display: flex;
	flex-direction: column;
	gap: 0;
	max-width: 800px;
	margin: 0 auto;
}

.step {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 24px;
	padding: 40px 0;
	border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }

.step-number {
	font-family: var(--font-display);
	font-size: 48px;
	font-weight: 900;
	background: linear-gradient(135deg, var(--purple), var(--cyan));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
}

.step-content h3 {
	font-family: var(--font-display);
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 10px;
}

.step-content p {
	color: var(--text-muted);
	font-size: 14px;
	margin-bottom: 16px;
}

.step-code {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 14px 18px;
	font-size: 12px;
	line-height: 1.8;
	color: var(--text-dim);
}
.step-code code { background: none; padding: 0; color: var(--cyan); font-size: 12px; }

/* ===== Syscall Explorer ===== */
.syscall-explorer {
	position: relative;
	z-index: 2;
	padding: 120px 0;
}

.explorer-controls {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 32px;
	flex-wrap: wrap;
}

.explorer-btn {
	font-family: var(--font-mono);
	font-size: 13px;
	font-weight: 600;
	padding: 10px 20px;
	background: var(--bg-card);
	color: var(--text-muted);
	border: 1px solid var(--border);
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s;
	letter-spacing: 0.5px;
}
.explorer-btn:hover { border-color: var(--purple); color: var(--text); }
.explorer-btn.active {
	background: linear-gradient(135deg, var(--purple), var(--cyan));
	color: var(--bg);
	border-color: transparent;
	box-shadow: 0 4px 20px var(--purple-glow);
}

.explorer-display {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 36px;
	max-width: 900px;
	margin: 0 auto;
}

.explorer-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}

.explorer-label {
	font-family: var(--font-display);
	font-size: 28px;
	font-weight: 800;
	background: linear-gradient(135deg, var(--purple), var(--cyan));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.explorer-flag {
	font-size: 12px;
	color: var(--cyan);
	background: rgba(34, 211, 238, 0.08);
	padding: 4px 12px;
	border-radius: 6px;
	border: 1px solid var(--border-cyan);
}

.explorer-desc {
	color: var(--text-muted);
	font-size: 14px;
	margin-bottom: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--border);
}

.explorer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 8px;
}

.explorer-item {
	font-size: 12px;
	padding: 8px 12px;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: 6px;
	color: var(--text-dim);
	transition: all 0.2s;
	animation: explorerFadeIn 0.3s ease forwards;
	opacity: 0;
}
.explorer-item:hover {
	border-color: var(--purple);
	color: var(--purple);
	background: rgba(168, 85, 247, 0.05);
}

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

/* ===== Profiler ===== */
.profiler {
	position: relative;
	z-index: 2;
	padding: 120px 0;
	background: var(--bg-subtle);
}

.profiler-display {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	max-width: 900px;
	margin: 0 auto;
}

.profiler-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 24px;
	background: var(--bg-card);
	border-bottom: 1px solid var(--border);
	font-size: 13px;
}
.profiler-header code { background: none; padding: 0; }

.profiler-status {
	font-size: 12px;
	font-weight: 600;
	color: var(--green);
	animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.4; }
}

.profiler-table {
	padding: 20px 24px;
}

.profiler-row {
	display: grid;
	grid-template-columns: 80px 100px 80px 80px 1fr;
	gap: 12px;
	padding: 8px 0;
	font-size: 13px;
	border-bottom: 1px solid rgba(168, 85, 247, 0.06);
	align-items: center;
}

.profiler-row--header {
	color: var(--text-dim);
	font-weight: 600;
	font-size: 11px;
	letter-spacing: 1px;
	text-transform: uppercase;
	border-bottom: 1px solid var(--border);
	padding-bottom: 12px;
	margin-bottom: 4px;
}

.profiler-row .syscall-name { color: var(--cyan); font-weight: 600; }
.profiler-row .time-pct { color: var(--purple); font-weight: 600; }
.profiler-row .error-count { color: #ef4444; }

.profiler-bars {
	padding: 20px 24px;
	border-top: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.profiler-bar-row {
	display: flex;
	align-items: center;
	gap: 12px;
}

.profiler-bar-label {
	font-size: 12px;
	color: var(--text-dim);
	min-width: 90px;
	text-align: right;
}

.profiler-bar-track {
	flex: 1;
	height: 20px;
	background: rgba(168, 85, 247, 0.06);
	border-radius: 4px;
	overflow: hidden;
}

.profiler-bar-fill {
	height: 100%;
	border-radius: 4px;
	transition: width 1.5s ease;
	background: linear-gradient(90deg, var(--purple), var(--cyan));
}

.profiler-bar-value {
	font-size: 12px;
	color: var(--text-muted);
	min-width: 50px;
	font-weight: 600;
}

/* ===== Demo ===== */
.demo {
	position: relative;
	z-index: 2;
	padding: 120px 0;
}

.demo-terminal {
	max-width: 900px;
	margin: 0 auto;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.terminal-header {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 14px 20px;
	background: var(--bg-card);
	border-bottom: 1px solid var(--border);
}

.terminal-dots {
	display: flex;
	gap: 8px;
}
.terminal-dots span {
	width: 12px;
	height: 12px;
	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-size: 12px;
	color: var(--text-dim);
	letter-spacing: 0.5px;
}

.terminal-body {
	background: var(--bg);
	padding: 24px;
	min-height: 350px;
	max-height: 450px;
	overflow-y: auto;
	font-size: 12px;
	line-height: 1.7;
}

.terminal-line {
	white-space: pre-wrap;
	word-break: break-all;
	opacity: 0;
	animation: termLine 0.3s ease forwards;
}

.terminal-prompt { color: var(--green); opacity: 1; animation: none; }

@keyframes termLine {
	from { opacity: 0; transform: translateX(-5px); }
	to { opacity: 1; transform: translateX(0); }
}

.term-pid { color: var(--text-dim); }
.term-time { color: var(--text-dim); }
.term-syscall { color: var(--purple); font-weight: 600; }
.term-args { color: var(--text-muted); }
.term-retval { color: var(--green); }
.term-err { color: #ef4444; }
.term-signal { color: #eab308; font-weight: 600; }
.term-fd { color: var(--cyan); }

/* ===== Pricing ===== */
.pricing {
	position: relative;
	z-index: 2;
	padding: 120px 0;
	background: var(--bg-subtle);
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 1000px;
	margin: 0 auto;
}

.pricing-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 40px 32px;
	text-align: center;
	position: relative;
	transition: transform 0.3s, border-color 0.3s;
}
.pricing-card:hover {
	transform: translateY(-4px);
	border-color: var(--purple);
}

.pricing-card--featured {
	border-color: var(--purple);
	background: linear-gradient(180deg, rgba(168, 85, 247, 0.08), var(--bg-card));
	box-shadow: 0 8px 40px rgba(168, 85, 247, 0.15);
}

.pricing-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	padding: 4px 16px;
	background: linear-gradient(135deg, var(--purple), var(--cyan));
	color: var(--bg);
	border-radius: 100px;
	text-transform: uppercase;
}

.pricing-tier {
	font-family: var(--font-display);
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 8px;
}

.pricing-price {
	font-family: var(--font-display);
	font-size: 48px;
	font-weight: 900;
	margin-bottom: 8px;
	background: linear-gradient(135deg, var(--purple), var(--cyan));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.pricing-price span {
	font-size: 18px;
	font-weight: 500;
	-webkit-text-fill-color: var(--text-dim);
}

.pricing-desc {
	color: var(--text-muted);
	font-size: 13px;
	margin-bottom: 28px;
}

.pricing-features {
	list-style: none;
	text-align: left;
	margin-bottom: 32px;
}

.pricing-features li {
	padding: 8px 0;
	font-size: 13px;
	color: var(--text-muted);
	border-bottom: 1px solid rgba(168, 85, 247, 0.06);
}
.pricing-features li::before {
	content: '→ ';
	color: var(--cyan);
	font-weight: 700;
}

/* ===== FAQ ===== */
.faq {
	position: relative;
	z-index: 2;
	padding: 120px 0;
}

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

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

.faq-item summary {
	padding: 20px 0;
	cursor: pointer;
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 600;
	color: var(--text);
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
	content: '+';
	font-family: var(--font-mono);
	font-size: 20px;
	color: var(--purple);
	transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
	padding: 0 0 20px;
	color: var(--text-muted);
	font-size: 14px;
	line-height: 1.8;
}

/* ===== Waitlist ===== */
.waitlist {
	position: relative;
	z-index: 2;
	padding: 120px 0;
}

.waitlist-inner {
	position: relative;
	text-align: center;
	padding: 80px 40px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.waitlist-glow {
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	width: 600px;
	height: 400px;
	border-radius: 50%;
	background: radial-gradient(ellipse, var(--purple-glow), var(--cyan-glow), transparent);
	animation: heroGlow 8s ease-in-out infinite;
	pointer-events: none;
	opacity: 0.3;
}

.waitlist h2 {
	font-family: var(--font-display);
	font-size: clamp(36px, 5vw, 52px);
	font-weight: 900;
	margin-bottom: 16px;
	position: relative;
}

.waitlist p {
	color: var(--text-muted);
	font-size: 15px;
	margin-bottom: 32px;
	position: relative;
}

.waitlist-form {
	display: flex;
	gap: 12px;
	max-width: 480px;
	margin: 0 auto 20px;
	position: relative;
}

.waitlist-form input {
	flex: 1;
	padding: 14px 20px;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: 10px;
	color: var(--text);
	font-family: var(--font-mono);
	font-size: 14px;
}
.waitlist-form input::placeholder { color: var(--text-dim); }
.waitlist-form input:focus { outline: none; border-color: var(--purple); }

.waitlist-note {
	font-size: 12px;
	color: var(--text-dim);
	position: relative;
}

/* ===== Footer ===== */
.footer {
	position: relative;
	z-index: 2;
	padding: 80px 0 40px;
	border-top: 1px solid var(--border);
}

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

.footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-mono);
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 3px;
	color: var(--text);
	margin-bottom: 12px;
}

.footer-brand p {
	color: var(--text-dim);
	font-size: 13px;
	line-height: 1.6;
}

.footer-col h4 {
	font-family: var(--font-display);
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 16px;
	color: var(--text);
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
	color: var(--text-dim);
	font-size: 13px;
	transition: color 0.2s;
}
.footer-col a:hover { color: var(--cyan); }

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

.footer-commands a {
	font-size: 11px;
	padding: 3px 8px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 4px;
	color: var(--text-dim);
	transition: all 0.2s;
}
.footer-commands a:hover,
.footer-commands a.active {
	border-color: var(--purple);
	color: var(--purple);
	background: rgba(168, 85, 247, 0.08);
}

.footer-bottom {
	padding-top: 32px;
	border-top: 1px solid var(--border);
	text-align: center;
	font-size: 12px;
	color: var(--text-dim);
}

/* ===== Scroll Animations ===== */
.feature-card,
.step,
.pricing-card,
.faq-item {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.feature-card.visible,
.step.visible,
.pricing-card.visible,
.faq-item.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
	.features-grid { grid-template-columns: repeat(2, 1fr); }
	.feature-card--hero { grid-column: 1 / -1; grid-template-columns: 1fr; }
	.hero-stream { display: none; }
	.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: 100%;
		left: 0;
		right: 0;
		background: rgba(6, 6, 14, 0.95);
		backdrop-filter: blur(20px);
		padding: 24px;
		gap: 16px;
		border-bottom: 1px solid var(--border);
	}
	.nav-mobile-toggle { display: block; }

	.hero { min-height: auto; padding: 120px 0 80px; }
	.hero-proof { flex-wrap: wrap; gap: 20px; }
	.proof-divider { display: none; }

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

	.step { grid-template-columns: 1fr; gap: 12px; }
	.step-number { font-size: 32px; }

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

	.explorer-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }

	.profiler-row { grid-template-columns: 60px 80px 60px 60px 1fr; gap: 8px; font-size: 11px; }

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

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

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

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

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