/* Brand text logo styles */
.header-logo-text {
	display: flex;
	align-items: center;
	font-family: 'Segoe UI', 'Arial', 'Inter', sans-serif;
	font-weight: 900;
	font-size: 2.3rem;
	letter-spacing: -1.5px;
	margin-right: 18px;
}
.brand-main {
	color: #38bdf8;
	font-weight: 900;
	font-size: 2.3rem;
	letter-spacing: -1.5px;
	font-family: 'Segoe UI', 'Arial', 'Inter', sans-serif;
}
.brand-dot {
	color: #7fff7f;
	font-weight: 900;
	font-size: 2.3rem;
	font-family: 'Segoe UI', 'Arial', 'Inter', sans-serif;
	margin-left: 2px;
}
.nav-dropdown {
	position: relative;
	display: inline-block;
}
.nav-dropbtn {
	background: none;
	border: none;
	color: #e5e7eb;
	font-size: 1.08rem;
	font-weight: 500;
	cursor: pointer;
	padding: 6px 0 2px 0;
	margin: 0;
	border-bottom: 2.5px solid transparent;
	transition: border-color 0.18s, color 0.18s;
}
.nav-dropbtn:hover, .nav-dropbtn:focus {
	color: #38bdf8;
	border-bottom: 2.5px solid #38bdf8;
}
.nav-dropdown-content {
	display: none;
	position: absolute;
	background: #1f2937;
	min-width: 210px;
	box-shadow: 0 8px 24px #0002;
	z-index: 10;
	border-radius: 0 0 10px 10px;
	border: 1px solid #334155;
	margin-top: 2px;
}
.nav-dropdown-content a {
	color: #e5e7eb;
	padding: 10px 18px;
	text-decoration: none;
	display: block;
	font-size: 1rem;
	border-bottom: 1px solid #273549;
	background: none;
	transition: background 0.15s, color 0.15s;
}
.nav-dropdown-content a:last-child {
	border-bottom: none;
}
.nav-dropdown-content a:hover {
	background: #273549;
	color: #38bdf8;
}
.nav-dropdown:hover .nav-dropdown-content, .nav-dropdown:focus-within .nav-dropdown-content {
	display: block;
}
/* Site header and navigation bar styles */
.site-header {
	width: 100vw;
	background: linear-gradient(90deg, #14213d 80%, #1e293b 100%);
	border-bottom: 2px solid #1f2937;
	margin-bottom: 0;
	box-shadow: 0 2px 8px #0002;
}
.site-header-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 0 24px;
	min-height: 80px;
	height: auto;
	gap: 32px;
}
.header-logo {
	display: flex;
	align-items: center;
	gap: 12px;
}
.header-logo img {
	height: 54px;
	width: 54px;
	border-radius: 10px;
	object-fit: contain;
	box-shadow: 0 2px 8px #0003;
	flex-shrink: 0;
	padding: 2px;
	background: #fff;
	border: 1.5px solid #e0e7ef;
	transition: box-shadow 0.2s, background 0.2s, border 0.2s;
}
.site-title {
	font-size: 2.1rem;
	font-weight: 900;
	color: #f8fafc;
	letter-spacing: -1.2px;
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	margin-left: 6px;
}
.main-nav {
	display: flex;
	gap: 18px;
}
.nav-link, .nav-dropbtn {
	color: #f8fafc;
	text-decoration: none;
	font-size: 1.08rem;
	font-weight: 600;
	padding: 7px 18px 7px 18px;
	border-radius: 8px 8px 0 0;
	background: transparent;
	border: none;
	outline: none;
	border-bottom: 3px solid transparent;
	transition: border-color 0.18s, color 0.18s, background 0.18s;
	cursor: pointer;
	margin: 0;
	display: inline-block;
}
.nav-link:hover, .nav-dropbtn:hover, .nav-link:focus, .nav-dropbtn:focus {
	color: #38bdf8;
	background: #1f2937;
	border-bottom: 3px solid #38bdf8;
}
.nav-active {
	color: #38bdf8;
	background: #1f2937;
	border-bottom: 3px solid #38bdf8;
}
.nav-dropdown {
	position: relative;
	display: inline-block;
}
.nav-dropdown-content {
	display: none;
	position: absolute;
	background: #1f2937;
	min-width: 220px;
	box-shadow: 0 8px 24px #0002;
	z-index: 10;
	border-radius: 0 0 10px 10px;
	border: 1px solid #273549;
	margin-top: 2px;
	left: 0;
}
.nav-dropdown-content a {
	color: #e5e7eb;
	padding: 12px 22px;
	text-decoration: none;
	display: block;
	font-size: 1rem;
	border-bottom: 1px solid #273549;
	background: none;
	transition: background 0.15s, color 0.15s;
}
.nav-dropdown-content a:last-child {
	border-bottom: none;
}
.nav-dropdown-content a:hover {
	background: #273549;
	color: #38bdf8;
}
.nav-dropdown:hover .nav-dropdown-content, .nav-dropdown:focus-within .nav-dropdown-content {
	display: block;
}
@media (max-width: 700px) {
	.site-header-inner {
		flex-direction: column;
		height: auto;
		padding: 10px 8px;
		gap: 8px;
	}
	.header-logo img {
		height: 38px;
		width: 38px;
	}
	.site-title {
		font-size: 1.2rem;
	}
	.main-nav {
		gap: 8px;
	}
	.nav-link, .nav-dropbtn {
		padding: 7px 10px 7px 10px;
		font-size: 1rem;
	}
	.nav-dropdown-content {
		min-width: 150px;
	}
}
/* Header logo styling for larger, responsive logo */
.header-logo {
	display: flex;
	align-items: center;
	gap: 32px;
	margin-bottom: 28px;
}

.header-logo img {
	height: 110px;
	width: 110px;
	border-radius: 18px;
	object-fit: contain;
	box-shadow: 0 2px 12px #0003;
	flex-shrink: 0;
}

.header-logo h1 {
	margin: 0;
	font-size: 2.9rem;
	letter-spacing: -1.5px;
	font-weight: 800;
	color: #fff;
}

@media (max-width: 600px) {
	.header-logo {
		gap: 16px;
	}
	.header-logo img {
		height: 64px;
		width: 64px;
	}
	.header-logo h1 {
		font-size: 1.5rem;
	}
}
:root {
	color-scheme: light dark;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	min-height: 100vh;
	display: grid;
	place-items: center;
	background: radial-gradient(circle at top, #0b1227 0%, #0f172a 70%);
	color: #e5e7eb;
}

.app {
	width: min(920px, 92vw);
	border: 1px solid #334155;
	border-radius: 14px;
	background: #111827;
	padding: 24px;
}

h1 {
	margin: 0;
	font-size: 2rem;
	line-height: 1.2;
}

p {
	color: #9ca3af;
	margin-top: 10px;
	line-height: 1.45;
}

.grid {
	margin-top: 18px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 12px;
}

a {
	display: block;
	text-decoration: none;
	color: #e5e7eb;
	border: 1px solid #334155;
	border-radius: 10px;
	padding: 14px;
	background: #1f2937;
	transition: border-color 0.15s ease, transform 0.15s ease;
}

a:hover {
	border-color: #38bdf8;
	transform: translateY(-1px);
}

.name {
	font-weight: 600;
}

.desc {
	margin-top: 6px;
	color: #9ca3af;
	font-size: 0.92rem;
}

.card {
	border: 1px solid #334155;
	border-radius: 10px;
	background: #1f2937;
	padding: 14px;
}

.input-grid {
	margin-top: 16px;
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 12px;
	align-items: end;
}

.input-grid > * {
	grid-column: span 3;
}

.button-row {
	grid-column: 1 / -1;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.button-row button {
	flex: 1 1 180px;
}

input,
select,
textarea,
button {
	width: 100%;
	border: 1px solid #475569;
	border-radius: 10px;
	background: #0b1220;
	color: #e5e7eb;
	font: inherit;
}

input,
select,
button {
	min-height: 44px;
	padding: 10px 12px;
}

textarea {
	margin-top: 14px;
	min-height: 220px;
	padding: 12px;
	resize: vertical;
	line-height: 1.4;
}

input::placeholder,
textarea::placeholder {
	color: #94a3b8;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
	outline: none;
	border-color: #38bdf8;
	box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.18);
}

button {
	cursor: pointer;
	background: #1f2937;
	font-weight: 600;
	transition: border-color 0.15s ease, background 0.15s ease;
}

button:hover {
	border-color: #38bdf8;
	background: #273549;
}

.seo-content {
	margin-top: 14px;
	padding: 12px;
	border: 1px solid #334155;
	border-radius: 10px;
	background: #0b1220;
}

.seo-content h2 {
	margin: 0 0 8px;
	font-size: 1rem;
	color: #cbd5e1;
}

.seo-content h2 + p {
	margin-top: 0;
}

.seo-content p {
	margin: 6px 0;
	color: #9ca3af;
	line-height: 1.5;
}

@media (max-width: 920px) {
	.input-grid > * {
		grid-column: span 6;
	}
}

@media (max-width: 640px) {
	.app {
		padding: 18px;
	}

	h1 {
		font-size: 1.6rem;
	}

	.input-grid > * {
		grid-column: span 12;
	}

	textarea {
		min-height: 180px;
	}
}