:root {
	--text: #1f2937;
	--muted: #6b7280;
	--accent: #ff9900;
	--nav: #1f2937;
	--nav-muted: #d1d5db;
	--bg: #f3f4f6;
	--card: #ffffff;
	--line: #e5e7eb;
}

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

body {
	font-family: "Helvetica Neue", Arial, sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
}

* {
	scrollbar-width: thin;
	scrollbar-color: #c7c7c7 transparent;
}

*::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

*::-webkit-scrollbar-track {
	background: transparent;
}

*::-webkit-scrollbar-thumb {
	background-color: #c7c7c7;
	border-radius: 999px;
	border: 2px solid transparent;
	background-clip: padding-box;
}

*::-webkit-scrollbar-thumb:hover {
	background-color: #a9a9a9;
}

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

.site {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 0 80px;
}

.top-bar {
	background: var(--nav);
	color: #fff;
	padding: 18px 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 700;
}

.menu {
	font-size: 20px;
}

.logo {
	text-transform: lowercase;
	letter-spacing: 0.5px;
}

.top-actions {
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--nav-muted);
}

.top-actions a {
	color: var(--nav-muted);
}

.search-hero {
	background: #111827;
	padding: 26px 32px 40px;
}

.search-row {
	background: #1f2937;
	padding: 14px;
	border-radius: 8px;
	display: grid;
	grid-template-columns: 1fr 0.6fr auto;
	gap: 12px;
}

.search-field {
	background: #ffffff;
	border-radius: 6px;
	padding: 6px 10px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.search-field input {
	border: none;
	outline: none;
	font-size: 14px;
	width: 100%;
}

.search-button {
	background: var(--accent);
	border: none;
	border-radius: 6px;
	padding: 8px 14px;
	font-size: 16px;
	cursor: pointer;
}

.hero-banner {
	margin-top: 18px;
	background: #1f2937;
	border-radius: 10px;
	padding: 20px 24px;
	color: #e5e7eb;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

.eyebrow {
	font-size: 18px;
	font-weight: 700;
}

.hero-text {
	color: #cbd5f5;
	font-size: 14px;
}

.hero-cta {
	background: transparent;
	color: #fff;
	border: 1px solid #fff;
	border-radius: 6px;
	padding: 8px 18px;
	cursor: pointer;
}

.card-strip {
	background: #e5e7eb;
	margin: 0;
	padding: 24px 32px 32px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.info-card {
	background: var(--card);
	padding: 22px;
	border-radius: 8px;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
	border: 1px solid var(--line);
}

.info-card h3 {
	font-size: 16px;
	margin-bottom: 10px;
}

.info-card p {
	font-size: 13px;
	color: var(--muted);
	margin-bottom: 16px;
}

.info-card button {
	background: #fff;
	border: 1px solid #d1d5db;
	border-radius: 4px;
	padding: 6px 12px;
	font-size: 12px;
	cursor: pointer;
}

.explore {
	padding: 40px 32px 0;
	text-align: center;
}

.explore h2 {
	font-size: 20px;
	margin-bottom: 24px;
}

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

.image-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid var(--line);
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.image-block {
	height: 150px;
	background-size: cover;
	background-position: center;
}

.image-one {
	background-image: linear-gradient(120deg, rgba(59, 130, 246, 0.55), rgba(15, 23, 42, 0.55)), url("https://images.unsplash.com/photo-1522075469751-3a6694fb2f61?auto=format&fit=crop&w=800&q=80");
}

.image-two {
	background-image: linear-gradient(120deg, rgba(245, 158, 11, 0.5), rgba(31, 41, 55, 0.6)), url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?auto=format&fit=crop&w=800&q=80");
}

.image-three {
	background-image: linear-gradient(120deg, rgba(16, 185, 129, 0.5), rgba(15, 23, 42, 0.6)), url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=800&q=80");
}

.image-card h3 {
	padding: 16px 16px 4px;
	font-size: 15px;
}

.image-card p {
	padding: 0 16px 12px;
	font-size: 13px;
	color: var(--muted);
}

.image-card a {
	display: inline-block;
	padding: 0 16px 18px;
	color: #2563eb;
	font-size: 12px;
}

.footer {
	margin-top: 48px;
	font-size: 12px;
	color: var(--muted);
	text-align: center;
}

@media (max-width: 980px) {
	.search-row {
		grid-template-columns: 1fr;
	}

	.card-strip,
	.explore-grid {
		grid-template-columns: 1fr;
	}

	.hero-banner {
		flex-direction: column;
		align-items: flex-start;
	}
}
