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

:root {
	--brand: #6c47ff;
	--brand-dark: #4f2fe0;
	--brand-light: #ede9ff;
	--people-brand: #2f8f5b;
	--people-brand-dark: #237247;
	--people-brand-light: #e8f7ef;
	--people-border: #cfe9da;
	--people-tag-bg: #e6f6ed;
	--people-tag-color: #1f6b40;
	--surface: #ffffff;
	--surface-alt: #f7f7fb;
	--border: #e5e5ef;
	--text: #11111a;
	--text-muted: #6b6b80;
	--tag-bg: #f0eeff;
	--tag-color: #5234c8;
	--radius: 14px;
	--radius-sm: 8px;
	--shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
	--shadow-hover: 0 6px 28px rgba(108, 71, 255, 0.14);
}

html {
	scroll-behavior: smooth;
}
body {
	font-family: "Inter", system-ui, sans-serif;
	color: var(--text);
	background: var(--surface);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

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

.soft-scrollbar {
	overflow: auto;
	scrollbar-width: thin;
	scrollbar-color: #e0e0e0 #fff;
}

.soft-scrollbar::-webkit-scrollbar {
	width: 5px;
	height: 5px;
	background: #e0e0e0;
}

.soft-scrollbar::-webkit-scrollbar-thumb {
	background: #e0e0e0;
}

.soft-scrollbar::-webkit-scrollbar-track {
	background: var(--light-bg);
}
nav {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border);
	padding: 0 24px;
}
.nav-inner {
	max-width: 1160px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
}
.nav-logo {
	display: flex;
	align-items: center;
	flex-direction: column;
}
.nav-logo img {
	width: 200px;
	height: 42px;
	object-fit: contain;
}
.nav-logo span {
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	color: #ffffff;
}
.nav-links {
	display: flex;
	gap: 28px;
	align-items: center;
}
.nav-links a {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--text-muted);
	transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a.active {
	color: var(--text);
}
.nav-cta {
	background: var(--brand);
	color: #fff !important;
	padding: 8px 18px;
	border-radius: 999px;
	font-size: 0.875rem;
	font-weight: 600;
	transition:
		background 0.15s,
		transform 0.1s;
}
.nav-cta:hover {
	background: var(--brand-dark);
	transform: translateY(-1px);
}

.bg-light {
	background-color: #fff;
	color: #111;
}
.full-content {
	padding:2rem 2.5rem;
	max-width: 1160px;
	margin: 0 auto;
}

.mb-0 {
	margin-bottom: 0 !important;
}

.full-content h2 {
	margin: 1.5rem 0 1rem;
}
.full-content ul {
	margin-left: 2rem;
	margin-bottom: 1rem;
}

.hero {
	background: linear-gradient(135deg, #728c41 0%, #f5f2ff 60%, #728c41 100%);
	padding: 80px 24px 64px;
	text-align: center;
}
.hero-eyebrow {
	color: var(--brand);
}
.hero h1 {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.15;
	max-width: 680px;
	margin: 0 auto 24px;
}
.chat-landing h1 {
	font-size: clamp(2rem, 5vw, 3.2rem);
}
.hero h1 {
	font-size: clamp(1rem, 5vw, 2.2rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.15;
	max-width: 680px;
	margin: 0 auto 20px;
}

h1 span {
	color: var(--brand);
}
.hero p {
	max-width: 560px;
	margin: 0 auto 36px;
	font-size: 1.3rem;
	color: #ffffff;
}
.hero-stats {
	display: inline-flex;
	gap: 40px;
	flex-wrap: wrap;
	justify-content: center;
	background: var(--surface);
	border-radius: var(--radius);
	padding: 20px 36px;
	box-shadow: var(--shadow);
}
.hero-stat {
	text-align: center;
}
.hero-stat strong {
	display: block;
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--brand);
	letter-spacing: -0.03em;
}
.hero-stat span {
	font-size: 0.8rem;
	color: var(--text-muted);
	font-weight: 500;
}

.how {
	background: var(--surface-alt);
	padding: 64px 24px;
	border-bottom: 1px solid var(--border);
}
.how-inner {
	max-width: 1160px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 32px;
}
.how-card {
	background: var(--surface);
	border-radius: var(--radius);
	padding: 28px;
	border: 1px solid var(--border);
}
.how-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--brand-light);
	color: var(--brand);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	margin-bottom: 14px;
}
.how-card h3 {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 8px;
}
.how-card p {
	font-size: 0.88rem;
	color: var(--text-muted);
	line-height: 1.55;
}

.filter-bar {
	position: sticky;
	top: 72px;
	z-index: 90;
	background: var(--surface);
	border-bottom: 1px solid var(--border);
	padding: 14px;
}
.filter-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}
.filter-search {
	flex: 1;
	min-width: 200px;
	max-width: 300px;
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--surface-alt);
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 12px 16px;
}
.filter-search svg {
	flex-shrink: 0;
	color: var(--text-muted);
}
.filter-search input {
	border: none;
	background: transparent;
	outline: none;
	font-size: 0.88rem;
	color: var(--text);
	width: 100%;
	font-family: inherit;
}
.filter-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.chat-input-container .filter-chips {
	max-width: 820px;
	margin: 0 auto;
	justify-content: center;
}
.chat-input-container .chat-textarea {
	min-height: 80px;
}
.chip {
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 500;
	border: 1.5px solid var(--border);
	background: var(--surface);
	cursor: pointer;
	transition: all 0.15s;
	user-select: none;
	color: var(--text-muted);
}
.chip:hover {
	border-color: var(--brand);
	color: var(--brand);
}
.chip.active {
	background: var(--brand);
	border-color: var(--brand);
	color: #fff;
}
.filter-count {
	margin-left: auto;
	font-size: 0.82rem;
	color: var(--text-muted);
	white-space: nowrap;
}

.sites-section,
.people-section {
	padding: 40px 24px 80px;
}
.sites-inner,
.people-inner {
	max-width: 1160px;
	margin: 0 auto;
}

.sites-grid,
.people-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 20px;
}

.site-card,
.people-card {
	background: var(--surface);
	border: 1.5px solid var(--border);
	border-radius: var(--radius);
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	transition:
		box-shadow 0.2s,
		border-color 0.2s,
		transform 0.15s;
}
.site-card {
	background: linear-gradient(180deg, #f7f7fb 0%, #fff 100%);
}
.site-card:hover,
.people-card:hover {
	box-shadow: var(--shadow-hover);
	border-color: var(--brand);
	transform: translateY(-2px);
}

.site-card-header,
.people-card-header {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}
.site-avatar,
.people-avatar {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	font-weight: 700;
}
.site-avatar img,
.people-avatar img {
	width: 100%;
	height: 100%;
	border-radius: 12px;
	object-fit: cover;
}
.site-meta,
.people-meta {
	flex: 1;
	min-width: 0;
}
.site-name,
.people-name {
	font-size: 1rem;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.site-url,
.people-url {
	font-size: 0.8rem;
	color: var(--text-muted);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.site-desc,
.people-desc {
	font-size: 0.875rem;
	color: var(--text-muted);
	line-height: 1.55;
	flex: 1;
	display: -webkit-box;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.site-footer,
.people-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding-top: 12px;
	border-top: 1px solid var(--border);
}
.site-tag,
.people-tag {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 3px 10px;
	border-radius: 999px;
	background: var(--tag-bg);
	color: var(--tag-color);
}
.site-members,
.people-members {
	font-size: 0.78rem;
	color: var(--text-muted);
	display: flex;
	align-items: center;
	gap: 4px;
}
.site-cta,
.people-cta {
	padding: 8px 18px;
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 600;
	background: var(--brand);
	color: #fff;
	transition:
		background 0.15s,
		transform 0.1s;
	white-space: nowrap;
}
.site-cta:hover,
.people-cta:hover {
	background: var(--brand-dark);
	transform: translateY(-1px);
}

.people-card {
	background: linear-gradient(180deg, #fcfffd 0%, #f5fcf8 100%);
	border-color: var(--people-border);
}

.people-card:hover {
	box-shadow: 0 6px 28px rgba(47, 143, 91, 0.16);
	border-color: var(--people-brand);
}

.people-avatar {
	background: var(--people-brand-light);
	color: var(--people-brand);
}

.people-footer {
	border-top-color: var(--people-border);
}

.people-tag {
	background: var(--people-tag-bg);
	color: var(--people-tag-color);
}

.people-cta {
	background: var(--people-brand);
}

.people-cta:hover {
	background: var(--people-brand-dark);
}

.av-purple {
	background: #ede9ff;
	color: #6c47ff;
}
.av-blue {
	background: #e8f4ff;
	color: #2472e8;
}
.av-green {
	background: #e6faf0;
	color: #1a9c5a;
}
.av-orange {
	background: #fff4e6;
	color: #e07c1a;
}
.av-pink {
	background: #ffe8f4;
	color: #d1338a;
}
.av-teal {
	background: #e0faf6;
	color: #0e8f80;
}
.av-red {
	background: #ffe8e8;
	color: #c9303a;
}
.av-yellow {
	background: #fffbe6;
	color: #b08a00;
}

.tag-technology {
	background: #e8f0ff;
	color: #2456c8;
}
.tag-ecommerce {
	background: #fff0e6;
	color: #c8620d;
}
.tag-health {
	background: #e6faf0;
	color: #1a9c5a;
}
.tag-education {
	background: #f0e8ff;
	color: #7634c8;
}
.tag-finance {
	background: #e6f6ff;
	color: #0d7ab8;
}
.tag-creative {
	background: #ffe8f6;
	color: #c8338a;
}
.tag-food {
	background: #fff5e8;
	color: #c87820;
}
.tag-sustainability {
	background: #e8fff0;
	color: #1e8a40;
}
.tag-community {
	background: #ffeee8;
	color: #c84420;
}
.tag-impact {
	background: #f0ffe8;
	color: #3a8a1e;
}
.tag-media {
	background: #fce8ff;
	color: #9034c8;
}
.tag-travel {
	background: #e8faff;
	color: #0d8ab4;
}

.empty-state {
	grid-column: 1 / -1;
	text-align: center;
	padding: 64px 24px;
	color: var(--text-muted);
}
.empty-state svg {
	margin-bottom: 16px;
	opacity: 0.4;
}
.empty-state p {
	font-size: 1rem;
}

footer {
	background: #0d0d17;
	color: #a0a0b8;
	padding: 48px 24px;
}
.footer-inner {
	max-width: 1160px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	justify-content: space-between;
}
.footer-brand {
	max-width: 280px;
}
.footer-logo {
	font-size: 1.2rem;
	font-weight: 800;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
}
.footer-brand p {
	font-size: 0.85rem;
	line-height: 1.6;
}
.footer-col h4 {
	font-size: 0.88rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 12px;
}
.footer-col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.footer-col li a {
	font-size: 0.85rem;
	transition: color 0.15s;
}
.footer-col li a:hover {
	color: #fff;
}
.footer-bottom {
	max-width: 1160px;
	margin: 32px auto 0;
	padding-top: 24px;
	border-top: 1px solid #222233;
	font-size: 0.8rem;
	text-align: center;
}

@media (max-width: 640px) {
	.nav-links {
		display: none;
	}
	.hero {
		padding: 56px 20px 48px;
	}
	.hero-stats {
		gap: 24px;
		padding: 18px 24px;
	}
	.filter-inner {
		flex-direction: column;
		align-items: stretch;
	}
	.filter-search {
		max-width: 100%;
	}
	.filter-count {
		margin-left: 0;
	}
	.sites-grid {
		grid-template-columns: 1fr;
	}
	.people-grid {
		grid-template-columns: 1fr;
	}
}
.chat-input-container {
	margin: 0 0 32px;
	width: 100%;
}
.chat-input-wrap {
	background: transparent;
}
.cta-section {
	background: var(--surface);
	padding: 60px 24px;
	text-align: center;
}
.cta-section h2 {
	font-size: clamp(1.5rem, 2rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	margin-bottom: 24px;
}
.cta-section .site-cta {
	font-size: 0.9rem;
	padding: 12px 24px;
}
.cta-section .people-cta {
	font-size: 0.9rem;
	padding: 12px 24px;
}
