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

:root {
	--emerald: #059669;
	--teal: #06b6d4;
	--emerald-light: #34d399;
	--teal-light: #67e8f9;
	--gradient: linear-gradient(135deg, var(--emerald), var(--teal));
	--gradient-subtle: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(6, 182, 212, 0.1));
	--gradient-text: linear-gradient(135deg, var(--emerald-light), var(--teal-light));

	--bg: #fafbfc;
	--surface: #ffffff;
	--surface-elevated: #ffffff;
	--border: #e5e7eb;
	--border-light: #f0f1f3;

	--text-primary: #111827;
	--text-secondary: #6b7280;
	--text-tertiary: #9ca3af;

	--hero-bg: #0a0f1a;
	--hero-surface: rgba(255, 255, 255, 0.04);
	--hero-border: rgba(255, 255, 255, 0.08);
	--hero-text: #f9fafb;
	--hero-text-secondary: #9ca3af;

	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-xl: 24px;

	--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
	--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
	--shadow-glow: 0 0 40px rgba(5, 150, 105, 0.15);

	--font-sans: 'Syne', system-ui, -apple-system, sans-serif;
	--font-mono: 'JetBrains Mono', 'Fira Code', monospace;

	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

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

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

code {
	font-family: var(--font-mono);
	font-size: 0.875em;
	background: var(--gradient-subtle);
	padding: 2px 8px;
	border-radius: 6px;
	color: var(--emerald);
}

.gradient-text {
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ===== Buttons ===== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 28px;
	border-radius: var(--radius-md);
	font-family: var(--font-sans);
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	border: none;
	transition: all 0.2s var(--ease-out);
	white-space: nowrap;
}

.btn-primary {
	background: var(--gradient);
	color: #fff;
	box-shadow: 0 2px 12px rgba(5, 150, 105, 0.3);
}

.btn-primary:hover {
	box-shadow: 0 4px 20px rgba(5, 150, 105, 0.4);
	transform: translateY(-1px);
}

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

.btn-ghost:hover {
	background: var(--hero-surface);
	border-color: rgba(255, 255, 255, 0.15);
}

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

.btn-outline:hover {
	background: var(--gradient-subtle);
	transform: translateY(-1px);
}

.btn-lg {
	padding: 16px 36px;
	font-size: 1.05rem;
}

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

.section-badge {
	display: inline-block;
	padding: 6px 16px;
	border-radius: 100px;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	background: var(--gradient-subtle);
	color: var(--emerald);
	margin-bottom: 20px;
}

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

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

/* ===== Modal ===== */
.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s var(--ease-out);
}

.modal-overlay.active {
	opacity: 1;
	visibility: visible;
}

.modal {
	background: var(--surface);
	border-radius: var(--radius-xl);
	padding: 48px;
	max-width: 420px;
	width: 90%;
	text-align: center;
	transform: scale(0.9);
	transition: transform 0.3s var(--ease-spring);
	position: relative;
}

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

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

.modal p {
	color: var(--text-secondary);
	margin-bottom: 24px;
}

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

/* ===== Nav ===== */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 16px 0;
	transition: all 0.3s var(--ease-out);
}

.nav.scrolled {
	background: rgba(10, 15, 26, 0.85);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--hero-border);
	padding: 10px 0;
}

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

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

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

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

.nav-cta {
	padding: 10px 24px !important;
	background: var(--gradient);
	border-radius: var(--radius-md);
	color: #fff !important;
	font-weight: 600 !important;
}

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

/* ===== Hero ===== */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: var(--hero-bg);
	overflow: hidden;
	padding: 120px 0 80px;
}

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

.hero-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent);
}

.hero-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	opacity: 0.3;
}

.hero-glow-1 {
	width: 600px;
	height: 600px;
	background: var(--emerald);
	top: -200px;
	left: -100px;
}

.hero-glow-2 {
	width: 500px;
	height: 500px;
	background: var(--teal);
	bottom: -200px;
	right: -100px;
}

.hero-inner {
	position: relative;
	z-index: 2;
	text-align: center;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 20px;
	border-radius: 100px;
	font-size: 0.85rem;
	font-weight: 600;
	background: var(--hero-surface);
	border: 1px solid var(--hero-border);
	color: var(--emerald-light);
	margin-bottom: 32px;
	animation: fadeInUp 0.6s var(--ease-out);
}

.hero-title {
	font-size: clamp(3rem, 8vw, 6rem);
	font-weight: 800;
	line-height: 1.05;
	color: var(--hero-text);
	margin-bottom: 24px;
	animation: fadeInUp 0.6s 0.1s var(--ease-out) both;
}

.hero-subtitle {
	font-size: clamp(1rem, 2vw, 1.25rem);
	color: var(--hero-text-secondary);
	max-width: 640px;
	margin: 0 auto 40px;
	line-height: 1.7;
	animation: fadeInUp 0.6s 0.2s var(--ease-out) both;
}

.hero-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 72px;
	animation: fadeInUp 0.6s 0.3s var(--ease-out) both;
}

/* Floating Cards */
.hero-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 900px;
	margin: 0 auto;
	animation: fadeInUp 0.8s 0.5s var(--ease-out) both;
}

.hero-card {
	background: var(--hero-surface);
	border: 1px solid var(--hero-border);
	border-radius: var(--radius-lg);
	padding: 24px;
	text-align: left;
	transition: all 0.3s var(--ease-out);
	backdrop-filter: blur(8px);
}

.hero-card:hover {
	border-color: rgba(5, 150, 105, 0.3);
	transform: translateY(-4px);
	box-shadow: 0 8px 32px rgba(5, 150, 105, 0.1);
}

.hero-card-label {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--emerald-light);
	margin-bottom: 12px;
}

.hero-card code {
	display: block;
	background: rgba(0, 0, 0, 0.3);
	color: var(--teal-light);
	padding: 10px 14px;
	border-radius: var(--radius-sm);
	font-size: 0.8rem;
	margin-bottom: 12px;
}

.hero-card-status {
	font-size: 0.8rem;
	color: var(--emerald-light);
	font-weight: 600;
}

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

.integrations-label {
	text-align: center;
	font-size: 0.85rem;
	color: var(--text-tertiary);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 600;
	margin-bottom: 24px;
}

.integrations-strip {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 24px 48px;
}

.integrations-strip span {
	font-size: 1rem;
	font-weight: 700;
	color: var(--text-tertiary);
	opacity: 0.7;
	transition: opacity 0.2s;
}

.integrations-strip span:hover {
	opacity: 1;
}

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

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

.feature-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 36px;
	transition: all 0.3s var(--ease-out);
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gradient);
	opacity: 0;
	transition: opacity 0.3s;
}

.feature-card:hover {
	border-color: rgba(5, 150, 105, 0.2);
	box-shadow: var(--shadow-lg);
	transform: translateY(-4px);
}

.feature-card:hover::before {
	opacity: 1;
}

.feature-icon {
	font-size: 2rem;
	margin-bottom: 20px;
}

.feature-card h3 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 12px;
}

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

.feature-flag {
	font-size: 0.8rem !important;
	background: var(--gradient-subtle) !important;
	display: inline-block;
}

/* ===== How It Works ===== */
.how-it-works {
	padding: 120px 0;
	background: var(--surface);
}

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

.steps::before {
	content: '';
	position: absolute;
	top: 36px;
	left: 10%;
	right: 10%;
	height: 2px;
	background: var(--gradient);
	opacity: 0.2;
}

.step {
	text-align: center;
	position: relative;
}

.step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: var(--gradient);
	color: #fff;
	font-size: 1.2rem;
	font-weight: 800;
	margin-bottom: 24px;
	position: relative;
	z-index: 1;
}

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

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

/* ===== Stats ===== */
.stats {
	padding: 80px 0;
	background: var(--hero-bg);
}

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

.stat-value {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	background: var(--gradient-text);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 8px;
	font-variant-numeric: tabular-nums;
	min-height: 1.2em;
}

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

/* ===== Activity Feed ===== */
.activity-feed {
	padding: 120px 0;
}

.feed-container {
	max-width: 640px;
	margin: 0 auto;
	height: 360px;
	overflow: hidden;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
	background: var(--surface);
	position: relative;
}

.feed-container::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 80px;
	background: linear-gradient(transparent, var(--surface));
	pointer-events: none;
}

.feed-list {
	padding: 16px;
}

.feed-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	border-radius: var(--radius-sm);
	margin-bottom: 4px;
	animation: feedSlide 0.4s var(--ease-out);
	font-size: 0.9rem;
}

.feed-item:nth-child(odd) {
	background: var(--gradient-subtle);
}

.feed-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gradient);
	flex-shrink: 0;
}

.feed-user {
	font-weight: 600;
	color: var(--text-primary);
}

.feed-action {
	color: var(--text-secondary);
}

.feed-path {
	font-family: var(--font-mono);
	font-size: 0.8rem;
	color: var(--emerald);
	font-weight: 500;
}

.feed-time {
	margin-left: auto;
	font-size: 0.75rem;
	color: var(--text-tertiary);
	white-space: nowrap;
}

/* ===== Pricing ===== */
.pricing {
	padding: 120px 0;
	background: var(--surface);
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	align-items: stretch;
}

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

.pricing-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.pricing-card-featured {
	background: var(--hero-bg);
	border-color: var(--emerald);
	color: var(--hero-text);
	transform: scale(1.03);
	box-shadow: var(--shadow-glow);
}

.pricing-card-featured:hover {
	transform: scale(1.03) translateY(-4px);
}

.pricing-card-featured code {
	background: rgba(5, 150, 105, 0.2);
	color: var(--emerald-light);
}

.pricing-popular {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--gradient);
	color: #fff;
	padding: 6px 20px;
	border-radius: 100px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.pricing-tier {
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 16px;
	color: var(--emerald);
}

.pricing-card-featured .pricing-tier {
	color: var(--emerald-light);
}

.pricing-price {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 8px;
}

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

.pricing-card-featured .pricing-price span {
	color: var(--hero-text-secondary);
}

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

.pricing-card-featured .pricing-desc {
	color: var(--hero-text-secondary);
}

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

.pricing-features li {
	padding: 8px 0;
	padding-left: 28px;
	position: relative;
	font-size: 0.9rem;
}

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

.pricing-features li.excluded {
	color: var(--text-tertiary);
}

.pricing-card-featured .pricing-features li.excluded {
	color: rgba(255, 255, 255, 0.3);
}

.pricing-features li.excluded::before {
	content: '—';
	position: absolute;
	left: 0;
}

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

.pricing-card-featured .btn-outline {
	color: var(--emerald-light);
	border-color: var(--emerald-light);
}

/* ===== Testimonials ===== */
.testimonials {
	padding: 120px 0;
}

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

.testimonial-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 32px;
	transition: all 0.3s var(--ease-out);
}

.testimonial-card:hover {
	border-color: rgba(5, 150, 105, 0.2);
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.testimonial-stars {
	color: #f59e0b;
	font-size: 1rem;
	margin-bottom: 16px;
	letter-spacing: 2px;
}

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

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

.testimonial-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--gradient);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	flex-shrink: 0;
}

.testimonial-author strong {
	display: block;
	font-size: 0.9rem;
}

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

/* ===== Demo ===== */
.demo {
	padding: 120px 0;
	background: var(--surface);
}

.demo-terminal {
	max-width: 720px;
	margin: 0 auto;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: #0d1117;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: var(--shadow-lg), 0 0 60px rgba(5, 150, 105, 0.08);
}

.demo-terminal-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 20px;
	background: rgba(255, 255, 255, 0.03);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.demo-terminal-dots {
	display: flex;
	gap: 8px;
}

.demo-terminal-dots span {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
}

.demo-terminal-dots span:first-child {
	background: #ff5f57;
}

.demo-terminal-dots span:nth-child(2) {
	background: #febc2e;
}

.demo-terminal-dots span:last-child {
	background: #28c840;
}

.demo-terminal-title {
	font-family: var(--font-mono);
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.4);
}

.demo-terminal-body {
	padding: 20px;
	min-height: 220px;
}

.demo-output {
	margin-bottom: 8px;
}

.demo-line {
	font-family: var(--font-mono);
	font-size: 0.85rem;
	line-height: 1.8;
	color: #e6edf3;
}

.demo-prompt {
	color: var(--emerald-light);
	font-weight: 700;
	user-select: none;
}

.demo-comment {
	color: rgba(255, 255, 255, 0.3);
}

.demo-success {
	color: var(--emerald-light);
}

.demo-input-row {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-mono);
	font-size: 0.85rem;
}

.demo-prefix {
	color: #e6edf3;
	user-select: none;
}

.demo-input {
	flex: 1;
	background: transparent;
	border: none;
	outline: none;
	color: #e6edf3;
	font-family: var(--font-mono);
	font-size: 0.85rem;
	caret-color: var(--emerald-light);
}

.demo-suggestions {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	padding: 12px 20px 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.demo-suggestion {
	padding: 6px 14px;
	border-radius: 100px;
	background: rgba(5, 150, 105, 0.1);
	border: 1px solid rgba(5, 150, 105, 0.2);
	color: var(--emerald-light);
	font-family: var(--font-mono);
	font-size: 0.75rem;
	cursor: pointer;
	transition: all 0.2s;
}

.demo-suggestion:hover {
	background: rgba(5, 150, 105, 0.2);
	border-color: rgba(5, 150, 105, 0.4);
}

/* ===== FAQ ===== */
.faq {
	padding: 120px 0;
}

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

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

.faq-item summary {
	padding: 24px 0;
	font-size: 1.05rem;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: '+';
	font-size: 1.5rem;
	font-weight: 300;
	color: var(--text-tertiary);
	transition: transform 0.3s var(--ease-out);
}

.faq-item[open] summary::after {
	transform: rotate(45deg);
	color: var(--emerald);
}

.faq-item summary:hover {
	color: var(--emerald);
}

.faq-item p {
	padding-bottom: 24px;
	color: var(--text-secondary);
	line-height: 1.7;
	font-size: 0.95rem;
}

/* ===== Waitlist ===== */
.waitlist {
	padding: 120px 0;
	background: var(--surface);
}

.waitlist-card {
	background: var(--hero-bg);
	border-radius: var(--radius-xl);
	padding: 80px 48px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.waitlist-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 20% 50%, rgba(5, 150, 105, 0.15), transparent 60%),
		radial-gradient(ellipse at 80% 50%, rgba(6, 182, 212, 0.15), transparent 60%);
}

.waitlist-card > * {
	position: relative;
	z-index: 1;
}

.waitlist-card h2 {
	font-size: clamp(2rem, 4vw, 2.5rem);
	font-weight: 800;
	color: var(--hero-text);
	margin-bottom: 16px;
}

.waitlist-card > p {
	color: var(--hero-text-secondary);
	max-width: 520px;
	margin: 0 auto 32px;
	font-size: 1.05rem;
}

.waitlist-form {
	display: flex;
	gap: 12px;
	justify-content: center;
	max-width: 500px;
	margin: 0 auto 16px;
}

.waitlist-input {
	flex: 1;
	padding: 16px 20px;
	border-radius: var(--radius-md);
	border: 1px solid var(--hero-border);
	background: var(--hero-surface);
	color: var(--hero-text);
	font-family: var(--font-sans);
	font-size: 1rem;
	outline: none;
	transition: border-color 0.2s;
}

.waitlist-input::placeholder {
	color: var(--hero-text-secondary);
}

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

.waitlist-note {
	font-size: 0.8rem;
	color: var(--hero-text-secondary);
	opacity: 0.6;
}

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

.mando-banner {
	background: var(--gradient-subtle);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 32px;
	margin-bottom: 64px;
}

.mando-banner-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.mando-logo {
	font-size: 1.3rem;
	font-weight: 800;
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.mando-tagline {
	font-size: 0.85rem;
	color: var(--text-secondary);
}

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

.mando-commands a {
	padding: 4px 10px;
	border-radius: 6px;
	font-family: var(--font-mono);
	font-size: 0.7rem;
	background: var(--surface);
	border: 1px solid var(--border);
	color: var(--text-secondary);
	transition: all 0.2s;
}

.mando-commands a:hover {
	border-color: var(--emerald);
	color: var(--emerald);
}

.mando-commands a.current {
	background: var(--gradient);
	color: #fff;
	border-color: transparent;
}

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

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

.footer-brand .nav-logo {
	color: var(--text-primary);
}

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

.footer-col a {
	display: block;
	font-size: 0.9rem;
	color: var(--text-secondary);
	padding: 4px 0;
	transition: color 0.2s;
}

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

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

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

/* ===== Animations ===== */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

.reveal {
	opacity: 0;
	transform: translateY(32px);
	transition: all 0.7s var(--ease-out);
}

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

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

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

	.steps::before {
		display: none;
	}

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

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

	.testimonials-grid .testimonial-card:last-child {
		grid-column: span 2;
	}
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: var(--hero-bg);
		flex-direction: column;
		justify-content: center;
		text-align: center;
		gap: 24px;
		padding: 24px;
		z-index: 999;
	}

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

	.nav-links a {
		font-size: 1.25rem;
		color: var(--hero-text);
	}

	.nav-mobile-toggle {
		display: block;
		z-index: 1001;
	}

	.hero-cards {
		grid-template-columns: 1fr;
		max-width: 400px;
	}

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

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

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

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

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

	.pricing-card-featured:hover {
		transform: translateY(-4px);
	}

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

	.testimonials-grid .testimonial-card:last-child {
		grid-column: auto;
	}

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

	.footer-brand {
		grid-column: span 2;
	}

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

	.demo-suggestions {
		flex-direction: column;
	}

	.demo-suggestion {
		text-align: center;
	}
}

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

.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%}