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

:root {
	--coral: #FF6B6B;
	--peach: #FFAB76;
	--coral-light: #FF8F8F;
	--peach-light: #FFCBA4;
	--gradient: linear-gradient(135deg, #FF6B6B, #FFAB76);
	--gradient-soft: linear-gradient(135deg, #FFF0EB, #FFF5F0);
	--gradient-hero: linear-gradient(135deg, #FFF5F0 0%, #FFF0EB 40%, #FFFFFF 100%);
	--text-primary: #1a1a2e;
	--text-secondary: #4a4a6a;
	--text-muted: #8888a8;
	--bg-white: #ffffff;
	--bg-light: #FFFAF8;
	--bg-card: #ffffff;
	--border: #f0e8e4;
	--border-light: #f8f0ec;
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--radius-xl: 28px;
	--shadow-sm: 0 1px 3px rgba(255, 107, 107, 0.06);
	--shadow-md: 0 4px 16px rgba(255, 107, 107, 0.08);
	--shadow-lg: 0 8px 32px rgba(255, 107, 107, 0.12);
	--shadow-xl: 0 16px 48px rgba(255, 107, 107, 0.14);
	--font: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
	--font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

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

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

a {
	color: var(--coral);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--peach);
}

code {
	font-family: var(--font-mono);
	background: #FFF0EB;
	color: var(--coral);
	padding: 2px 7px;
	border-radius: 5px;
	font-size: 0.88em;
	font-weight: 500;
}

/* ===== Portfolio Banner ===== */
.portfolio-banner {
	background: var(--text-primary);
	color: #fff;
	font-size: 0.78rem;
	padding: 8px 0;
	position: relative;
	z-index: 1000;
	overflow: hidden;
}

.portfolio-banner-inner {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0 24px;
	max-width: 1200px;
	margin: 0 auto;
	flex-wrap: nowrap;
	overflow-x: auto;
	scrollbar-width: none;
}

.portfolio-banner-inner::-webkit-scrollbar {
	display: none;
}

.portfolio-banner-label a {
	color: var(--coral);
	font-weight: 700;
}

.portfolio-banner-sep {
	opacity: 0.3;
}

.portfolio-banner-text {
	opacity: 0.7;
	white-space: nowrap;
}

.portfolio-banner-commands {
	display: flex;
	gap: 6px;
	white-space: nowrap;
}

.portfolio-banner-commands a {
	color: rgba(255, 255, 255, 0.5);
	padding: 2px 6px;
	border-radius: 4px;
	font-family: var(--font-mono);
	font-size: 0.72rem;
	transition: all 0.2s;
}

.portfolio-banner-commands a:hover {
	color: #fff;
	background: rgba(255, 107, 107, 0.25);
}

.portfolio-current {
	color: var(--coral) !important;
	font-weight: 700;
	background: rgba(255, 107, 107, 0.15);
	padding: 2px 8px;
	border-radius: 4px;
	font-family: var(--font-mono);
	font-size: 0.72rem;
}

/* ===== Nav ===== */
.nav {
	position: sticky;
	top: 0;
	z-index: 999;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--border-light);
	padding: 0;
}

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

.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	font-size: 1.25rem;
	color: var(--text-primary);
}

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

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

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

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

.nav-cta {
	background: var(--gradient);
	color: #fff !important;
	padding: 9px 22px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 0.88rem !important;
	transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
	color: #fff !important;
}

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

/* ===== Buttons ===== */
.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--gradient);
	color: #fff;
	padding: 14px 32px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1rem;
	border: none;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
	font-family: var(--font);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
	color: #fff;
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: transparent;
	color: var(--text-secondary);
	padding: 14px 32px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1rem;
	border: 2px solid var(--border);
	cursor: pointer;
	transition: all 0.2s;
	font-family: var(--font);
}

.btn-secondary:hover {
	border-color: var(--coral);
	color: var(--coral);
}

.btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	color: var(--coral);
	padding: 12px 28px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 0.95rem;
	border: 2px solid var(--coral);
	cursor: pointer;
	transition: all 0.2s;
	font-family: var(--font);
	width: 100%;
}

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

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

.section-tag {
	display: inline-block;
	background: #FFF0EB;
	color: var(--coral);
	font-weight: 700;
	font-size: 0.82rem;
	padding: 6px 16px;
	border-radius: 50px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 16px;
}

.section-header h2 {
	font-size: 2.5rem;
	font-weight: 900;
	line-height: 1.2;
	color: var(--text-primary);
}

.section-desc {
	color: var(--text-secondary);
	font-size: 1.1rem;
	max-width: 640px;
	margin: 16px auto 0;
	line-height: 1.7;
}

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

/* ===== Hero (Split-Screen) ===== */
.hero {
	background: var(--gradient-hero);
	padding: 100px 0 80px;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: -200px;
	right: -200px;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(255, 171, 118, 0.12) 0%, transparent 70%);
	pointer-events: none;
}

.hero::after {
	content: '';
	position: absolute;
	bottom: -200px;
	left: -200px;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(255, 107, 107, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 107, 107, 0.08);
	padding: 6px 16px;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-secondary);
	margin-bottom: 24px;
}

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

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

.hero h1 {
	font-size: 3.4rem;
	font-weight: 900;
	line-height: 1.12;
	margin-bottom: 20px;
}

.hero-desc {
	font-size: 1.12rem;
	color: var(--text-secondary);
	line-height: 1.75;
	margin-bottom: 32px;
	max-width: 520px;
}

.hero-actions {
	display: flex;
	gap: 16px;
	margin-bottom: 36px;
	flex-wrap: wrap;
}

.hero-proof {
	display: flex;
	align-items: center;
	gap: 12px;
}

.hero-avatars {
	display: flex;
}

.avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--gradient);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.72rem;
	font-weight: 700;
	border: 2px solid #fff;
	margin-left: -8px;
}

.avatar:first-child {
	margin-left: 0;
}

.hero-proof-text {
	font-size: 0.88rem;
	color: var(--text-muted);
	font-weight: 600;
}

/* ===== Terminal ===== */
.terminal {
	background: #1a1a2e;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-xl);
	border: 1px solid rgba(255, 107, 107, 0.1);
}

.terminal-header {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 14px 18px;
	background: rgba(0, 0, 0, 0.3);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.terminal-dot.red { background: #ff5f57; }
.terminal-dot.yellow { background: #febc2e; }
.terminal-dot.green { background: #28c840; }

.terminal-title {
	color: rgba(255, 255, 255, 0.4);
	font-size: 0.78rem;
	font-family: var(--font-mono);
	margin-left: 8px;
}

.terminal-body {
	padding: 20px;
	font-family: var(--font-mono);
	font-size: 0.88rem;
	line-height: 1.9;
	min-height: 200px;
}

.term-line {
	opacity: 0;
	animation: fadeIn 0.4s forwards;
}

.term-line:first-child {
	animation-delay: 0.3s;
}

.prompt {
	color: var(--coral);
	font-weight: 700;
}

.command {
	color: #e0e0e0;
}

.output {
	color: var(--peach);
	padding-left: 0;
}

.delayed.d1 { animation-delay: 1.2s; }
.delayed.d2 { animation-delay: 2.4s; }
.delayed.d3 { animation-delay: 3.6s; }
.delayed.d4 { animation-delay: 4.8s; }

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

/* ===== Activity Feed ===== */
.activity-feed {
	background: var(--text-primary);
	padding: 14px 0;
	overflow: hidden;
}

.feed-track {
	overflow: hidden;
	mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
	-webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.feed-items {
	display: flex;
	gap: 40px;
	animation: ticker 30s linear infinite;
	white-space: nowrap;
	width: max-content;
}

.feed-item {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.82rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
}

.feed-item strong {
	color: var(--coral-light);
}

@keyframes ticker {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* ===== Features ===== */
.features {
	padding: 100px 0;
	background: var(--bg-white);
}

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

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

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

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

.feature-card h3 {
	font-size: 1.18rem;
	font-weight: 800;
	margin-bottom: 10px;
}

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

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

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

.step-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 36px 28px;
	position: relative;
}

.step-number {
	font-size: 3rem;
	font-weight: 900;
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 16px;
}

.step-card h3 {
	font-size: 1.1rem;
	font-weight: 800;
	margin-bottom: 10px;
}

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

.step-code {
	font-family: var(--font-mono);
	font-size: 0.82rem;
	background: #FFF0EB;
	padding: 8px 14px;
	border-radius: var(--radius-sm);
	color: var(--coral);
}

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

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

.stat-card {
	color: #fff;
}

.stat-number {
	font-size: 2.8rem;
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 6px;
}

.stat-label {
	font-size: 0.92rem;
	opacity: 0.85;
	font-weight: 600;
}

/* ===== Manifesto ===== */
.manifesto {
	padding: 100px 0;
	background: var(--bg-white);
}

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

.manifesto-content h2 {
	font-size: 2.4rem;
	font-weight: 900;
	margin-bottom: 28px;
	line-height: 1.2;
}

.manifesto-content p {
	color: var(--text-secondary);
	font-size: 1.08rem;
	line-height: 1.85;
	margin-bottom: 20px;
}

/* ===== Pricing ===== */
.pricing {
	padding: 100px 0;
	background: var(--bg-light);
}

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

.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: all 0.3s ease;
}

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

.pricing-card.featured {
	border: 2px solid var(--coral);
	box-shadow: var(--shadow-lg);
}

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

.pricing-tier {
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--text-secondary);
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

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

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

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

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

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

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

/* ===== Testimonials ===== */
.testimonials {
	padding: 100px 0;
	background: var(--bg-white);
}

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

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

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

.testimonial-stars {
	color: #FFAB76;
	font-size: 1.1rem;
	margin-bottom: 14px;
	letter-spacing: 2px;
}

.testimonial-card > p {
	color: var(--text-secondary);
	font-size: 0.96rem;
	line-height: 1.75;
	margin-bottom: 20px;
	font-style: italic;
}

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

.testimonial-author .avatar {
	margin-left: 0;
	flex-shrink: 0;
}

.testimonial-author strong {
	display: block;
	font-size: 0.92rem;
	font-weight: 700;
}

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

/* ===== Demo ===== */
.demo {
	padding: 100px 0;
	background: var(--bg-light);
}

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

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

.demo-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
	border-color: rgba(255, 107, 107, 0.2);
}

.demo-card h4 {
	font-size: 0.95rem;
	font-weight: 800;
	margin-bottom: 10px;
	color: var(--text-primary);
}

.demo-command {
	font-family: var(--font-mono);
	font-size: 0.78rem;
	background: var(--text-primary);
	color: #e0e0e0;
	padding: 10px 14px;
	border-radius: var(--radius-sm);
	margin-bottom: 10px;
	overflow-x: auto;
}

.demo-output {
	font-family: var(--font-mono);
	font-size: 0.88rem;
	color: var(--coral);
	font-weight: 700;
	padding: 6px 0;
}

/* Demo Playground */
.demo-interactive {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 40px;
	max-width: 640px;
	margin: 0 auto;
}

.demo-interactive h3 {
	font-size: 1.3rem;
	font-weight: 800;
	margin-bottom: 24px;
	text-align: center;
}

.demo-playground {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

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

.demo-row label {
	width: 60px;
	font-weight: 700;
	font-size: 0.88rem;
	color: var(--text-secondary);
	flex-shrink: 0;
}

.demo-row input[type="text"] {
	flex: 1;
	padding: 10px 14px;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	font-family: var(--font-mono);
	font-size: 0.9rem;
	background: var(--bg-light);
	color: var(--text-primary);
	outline: none;
	transition: border-color 0.2s;
}

.demo-row input:focus {
	border-color: var(--coral);
}

.demo-flags {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.flag-label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.88rem;
	color: var(--text-secondary);
	font-weight: 600;
	cursor: pointer;
}

.flag-label input[type="checkbox"] {
	accent-color: var(--coral);
}

.demo-run {
	align-self: center;
	margin-top: 8px;
}

.demo-result {
	background: var(--text-primary);
	border-radius: var(--radius-sm);
	padding: 16px 18px;
	font-family: var(--font-mono);
	font-size: 0.88rem;
	line-height: 1.8;
	display: none;
}

.demo-result.visible {
	display: block;
}

.demo-result .prompt {
	color: var(--coral);
}

#demo-result-cmd {
	color: #e0e0e0;
}

#demo-result-output {
	color: var(--peach);
	font-weight: 700;
}

/* ===== FAQ ===== */
.faq {
	padding: 100px 0;
	background: var(--bg-white);
}

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

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

.faq-item summary {
	padding: 20px 0;
	font-weight: 700;
	font-size: 1.05rem;
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--text-primary);
	transition: color 0.2s;
}

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

.faq-item summary::after {
	content: '+';
	font-size: 1.4rem;
	font-weight: 300;
	color: var(--coral);
	transition: transform 0.3s;
}

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

.faq-item p {
	padding: 0 0 20px;
	color: var(--text-secondary);
	font-size: 0.96rem;
	line-height: 1.75;
}

/* ===== Waitlist CTA ===== */
.waitlist {
	padding: 100px 0;
	background: var(--bg-light);
}

.waitlist-card {
	background: var(--gradient);
	border-radius: var(--radius-xl);
	padding: 64px;
	text-align: center;
	color: #fff;
}

.waitlist-card h2 {
	font-size: 2.4rem;
	font-weight: 900;
	margin-bottom: 16px;
	line-height: 1.2;
}

.waitlist-card .gradient-text {
	background: linear-gradient(135deg, #fff, #FFCBA4);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.waitlist-card > p {
	opacity: 0.9;
	font-size: 1.08rem;
	margin-bottom: 28px;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}

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

.waitlist-form input {
	flex: 1;
	padding: 14px 20px;
	border: none;
	border-radius: 50px;
	font-size: 0.95rem;
	font-family: var(--font);
	outline: none;
}

.waitlist-form .btn-primary {
	background: var(--text-primary);
	white-space: nowrap;
}

.waitlist-form .btn-primary:hover {
	background: #0d0d1a;
}

.waitlist-note {
	font-size: 0.82rem;
	opacity: 0.7;
}

/* ===== Footer ===== */
.footer {
	background: var(--text-primary);
	color: rgba(255, 255, 255, 0.7);
	padding: 64px 0 32px;
}

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

.footer-brand .nav-logo {
	color: #fff;
	margin-bottom: 12px;
}

.footer-brand p {
	font-size: 0.88rem;
	line-height: 1.6;
	opacity: 0.6;
}

.footer-brand a {
	color: var(--coral-light);
}

.footer-col h4 {
	color: #fff;
	font-size: 0.88rem;
	font-weight: 700;
	margin-bottom: 16px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.footer-col a {
	display: block;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.88rem;
	padding: 4px 0;
	transition: color 0.2s;
}

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

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 24px;
	text-align: center;
	font-size: 0.82rem;
	opacity: 0.5;
}

/* ===== Social Modal ===== */
.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(26, 26, 46, 0.6);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
}

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

.modal-card {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 40px;
	max-width: 420px;
	width: 90%;
	position: relative;
	transform: translateY(20px);
	transition: transform 0.3s;
}

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

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

.modal-close:hover {
	color: var(--coral);
}

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

.modal-card p {
	font-size: 0.94rem;
	color: var(--text-secondary);
	margin-bottom: 20px;
	line-height: 1.6;
}

.modal-form {
	display: flex;
	gap: 10px;
}

.modal-form input {
	flex: 1;
	padding: 12px 16px;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	font-family: var(--font);
	font-size: 0.92rem;
	outline: none;
}

.modal-form input:focus {
	border-color: var(--coral);
}

.modal-form .btn-primary {
	padding: 12px 20px;
	font-size: 0.88rem;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
	.hero-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

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

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

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

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

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

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

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

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

	.nav-links.open {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 64px;
		left: 0;
		right: 0;
		background: #fff;
		border-bottom: 1px solid var(--border);
		padding: 24px;
		gap: 16px;
		box-shadow: var(--shadow-md);
	}

	.hero {
		padding: 64px 0 48px;
	}

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

	.section-header h2 {
		font-size: 1.8rem;
	}

	.features-grid,
	.steps-grid,
	.pricing-grid,
	.testimonial-grid,
	.demo-grid {
		grid-template-columns: 1fr;
	}

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

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

	.waitlist-card {
		padding: 40px 24px;
	}

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

	.manifesto-content h2 {
		font-size: 1.8rem;
	}

	.demo-interactive {
		padding: 28px 20px;
	}

	.demo-row {
		flex-direction: column;
		align-items: stretch;
	}

	.demo-row label {
		width: auto;
	}
}

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

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

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