/* ============================================
   СИНДИКАТ Neon — Main Styles
   ============================================ */

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

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

body {
	background: #0B0B10;
	color: #9CA3AF;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	overflow-x: hidden;
}

a {
	color: #22D3EE;
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: #D946EF;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* --- Screen Reader --- */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

/* --- Layout --- */
.content-area {
	padding: 0;
}

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

.content-narrow {
	max-width: 720px;
}

/* --- Header --- */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(11, 11, 16, 0.85);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(39, 39, 42, 0.5);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	height: 64px;
}

.site-branding {
	display: flex;
	align-items: center;
}

.site-title {
	font-family: 'Space Grotesk', monospace;
	font-size: 1.25rem;
	font-weight: 700;
	color: #FFFFFF;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.site-title:hover {
	color: #22D3EE;
}

/* --- Navigation --- */
.main-navigation {
	display: flex;
	align-items: center;
}

.main-navigation ul {
	display: flex;
	list-style: none;
	gap: 8px;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	padding: 8px 16px;
	color: #9CA3AF;
	font-size: 0.875rem;
	font-weight: 500;
	border-radius: 8px;
	transition: all 0.2s ease;
}

.main-navigation a:hover {
	color: #FFFFFF;
	background: rgba(255, 255, 255, 0.05);
}

.main-navigation .current-menu-item > a {
	color: #22D3EE;
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.menu-toggle-icon {
	display: block;
	width: 24px;
	height: 2px;
	background: #FFFFFF;
	position: relative;
	transition: background 0.2s;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: #FFFFFF;
	transition: transform 0.2s;
}

.menu-toggle-icon::before {
	top: -7px;
}

.menu-toggle-icon::after {
	top: 7px;
}

/* --- Header Actions --- */
.header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.header-btn {
	display: inline-flex;
	align-items: center;
	padding: 8px 20px;
	font-size: 0.875rem;
	font-weight: 500;
	border-radius: 10px;
	transition: all 0.2s ease;
	cursor: pointer;
}

.header-btn-outline {
	background: transparent;
	border: 1px solid #27272A;
	color: #9CA3AF;
}

.header-btn-outline:hover {
	border-color: #3F3F46;
	color: #FFFFFF;
}

.header-btn-primary {
	background: linear-gradient(135deg, #6366F1, #8B5CF6);
	border: none;
	color: #FFFFFF;
	box-shadow: 0 0 20px rgba(99, 102, 241, 0.25);
}

.header-btn-primary:hover {
	box-shadow: 0 0 30px rgba(99, 102, 241, 0.4);
	color: #FFFFFF;
}

.user-dropdown {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 4px 12px 4px 4px;
	border: 1px solid #27272A;
	border-radius: 20px;
	cursor: pointer;
	transition: border-color 0.2s;
}

.user-dropdown:hover {
	border-color: #3F3F46;
}

.user-dropdown .avatar {
	border-radius: 50%;
	width: 28px;
	height: 28px;
}

.user-name {
	font-size: 0.875rem;
	color: #9CA3AF;
}

/* --- Hero Section --- */
.hero-section {
	position: relative;
	padding: 120px 24px 80px;
	text-align: center;
	overflow: hidden;
}

.blog-hero {
	padding: 160px 24px 80px;
}

.hero-glow {
	position: absolute;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	filter: blur(120px);
	pointer-events: none;
	z-index: 0;
}

.hero-glow-left {
	top: -200px;
	left: -200px;
	background: radial-gradient(circle, rgba(79, 70, 229, 0.2) 0%, transparent 70%);
}

.hero-glow-right {
	bottom: -200px;
	right: -200px;
	background: radial-gradient(circle, rgba(217, 70, 239, 0.1) 0%, transparent 70%);
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 720px;
	margin: 0 auto;
}

.hero-tagline {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 16px;
	margin-bottom: 24px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #9CA3AF;
	border: 1px solid #27272A;
	border-radius: 20px;
}

.hero-heading {
	font-family: 'Space Grotesk', monospace;
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	color: #FFFFFF;
	line-height: 1.15;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.hero-neon-text {
	font-family: 'Space Grotesk', monospace;
	font-size: clamp(1.5rem, 4vw, 2.5rem);
	font-weight: 700;
	color: #22D3EE;
	text-shadow: 0 0 20px rgba(34, 211, 238, 0.4), 0 0 40px rgba(34, 211, 238, 0.2);
	margin-bottom: 20px;
	line-height: 1.2;
}

.hero-description {
	font-size: 1.125rem;
	color: #9CA3AF;
	max-width: 560px;
	margin: 0 auto 32px;
	line-height: 1.7;
}

.hero-actions {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

/* --- CTA Buttons --- */
.cta-button {
	display: inline-flex;
	align-items: center;
	padding: 12px 28px;
	font-size: 0.9375rem;
	font-weight: 600;
	border-radius: 10px;
	transition: all 0.25s ease;
	cursor: pointer;
	text-decoration: none;
}

.cta-primary {
	background: linear-gradient(135deg, #6366F1, #8B5CF6);
	color: #FFFFFF;
	border: none;
}

.cta-primary:hover {
	box-shadow: 0 0 30px rgba(99, 102, 241, 0.4);
	transform: translateY(-1px);
	color: #FFFFFF;
}

.cta-secondary {
	background: transparent;
	color: #FFFFFF;
	border: 1px solid #27272A;
}

.cta-secondary:hover {
	border-color: #3F3F46;
	background: rgba(255, 255, 255, 0.03);
	color: #FFFFFF;
}

.cta-outline {
	background: transparent;
	color: #22D3EE;
	border: 1px solid #22D3EE;
}

.cta-outline:hover {
	background: rgba(34, 211, 238, 0.1);
	box-shadow: 0 0 20px rgba(34, 211, 238, 0.2);
	color: #22D3EE;
}

.cta-glow {
	box-shadow: 0 0 20px rgba(99, 102, 241, 0.25);
}

.cta-glow:hover {
	box-shadow: 0 0 35px rgba(99, 102, 241, 0.45);
}

/* --- Posts Grid --- */
.posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 24px;
	padding: 40px 0 60px;
}

.post-card {
	background: #13131A;
	border: 1px solid #27272A;
	border-radius: 14px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.post-card:hover {
	border-color: #3F3F46;
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.post-card-thumb {
	display: block;
	overflow: hidden;
}

.post-card-img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.post-card:hover .post-card-img {
	transform: scale(1.05);
}

.post-card-body {
	padding: 24px;
}

.post-card-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	font-size: 0.8125rem;
	color: #6B7280;
}

.post-card-date {
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.post-card-cats {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

.post-card-cat {
	padding: 2px 10px;
	font-size: 0.75rem;
	font-weight: 500;
	color: #22D3EE;
	background: rgba(34, 211, 238, 0.1);
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.post-card-cat:hover {
	background: rgba(34, 211, 238, 0.2);
	color: #22D3EE;
}

.post-card-title {
	font-family: 'Space Grotesk', monospace;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 8px;
}

.post-card-title a {
	color: #FFFFFF;
}

.post-card-title a:hover {
	color: #22D3EE;
}

.post-card-excerpt {
	font-size: 0.9375rem;
	color: #9CA3AF;
	line-height: 1.6;
	margin-bottom: 16px;
}

.post-card-link {
	font-size: 0.875rem;
	font-weight: 600;
	color: #22D3EE;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	transition: gap 0.2s;
}

.post-card-link:hover {
	gap: 8px;
	color: #D946EF;
}

/* --- Single Post --- */
.content-single {
	padding-top: 80px;
}

.single-post {
	padding: 40px 0;
}

.single-post-header {
	margin-bottom: 40px;
}

.single-post-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
	font-size: 0.875rem;
	color: #6B7280;
}

.single-post-date {
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.single-post-cat {
	padding: 2px 10px;
	font-size: 0.75rem;
	font-weight: 500;
	color: #22D3EE;
	background: rgba(34, 211, 238, 0.1);
	border-radius: 4px;
	text-transform: uppercase;
}

.single-post-title {
	font-family: 'Space Grotesk', monospace;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	color: #FFFFFF;
	line-height: 1.2;
	margin-bottom: 24px;
}

.single-post-thumb {
	margin-bottom: 32px;
	border-radius: 14px;
	overflow: hidden;
}

.single-post-img {
	width: 100%;
	height: auto;
	border-radius: 14px;
}

/* --- Entry Content (Gutenberg) --- */
.entry-content {
	font-size: 1.0625rem;
	line-height: 1.8;
	color: #D1D5DB;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	font-family: 'Space Grotesk', monospace;
	color: #FFFFFF;
	margin-top: 1.5em;
	margin-bottom: 0.5em;
}

.entry-content p {
	margin-bottom: 1.25em;
}

.entry-content ul,
.entry-content ol {
	margin-bottom: 1.25em;
	padding-left: 1.5em;
}

.entry-content li {
	margin-bottom: 0.5em;
}

.entry-content blockquote {
	border-left: 3px solid #22D3EE;
	padding-left: 20px;
	margin: 1.5em 0;
	font-style: italic;
	color: #9CA3AF;
}

.entry-content .wp-block-image {
	margin: 1.5em 0;
}

.entry-content .wp-block-image img {
	border-radius: 10px;
}

.entry-content .wp-block-code {
	background: #13131A;
	border: 1px solid #27272A;
	border-radius: 10px;
	padding: 16px;
	font-size: 0.875rem;
	overflow-x: auto;
}

.entry-content .wp-block-table {
	border-collapse: collapse;
	width: 100%;
	margin: 1.5em 0;
}

.entry-content .wp-block-table th,
.entry-content .wp-block-table td {
	border: 1px solid #27272A;
	padding: 12px;
	text-align: left;
}

.entry-content .wp-block-table th {
	background: #13131A;
	color: #FFFFFF;
	font-weight: 600;
}

.entry-content .wp-block-separator {
	border-color: #27272A;
	margin: 2em 0;
}

.entry-content .wp-block-cover {
	border-radius: 14px;
	min-height: 300px;
}

/* --- Single Post Footer --- */
.single-post-footer {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid #27272A;
}

.single-post-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 32px;
}

.post-tag {
	padding: 4px 14px;
	font-size: 0.8125rem;
	color: #9CA3AF;
	background: #13131A;
	border: 1px solid #27272A;
	border-radius: 6px;
	transition: all 0.2s;
}

.post-tag:hover {
	border-color: #22D3EE;
	color: #22D3EE;
}

.single-post-nav {
	display: flex;
	justify-content: space-between;
	gap: 24px;
}

.post-nav-prev,
.post-nav-next {
	flex: 1;
}

.post-nav-next {
	text-align: right;
}

.post-nav-label {
	display: block;
	font-size: 0.8125rem;
	color: #6B7280;
	margin-bottom: 4px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.post-nav-prev a,
.post-nav-next a {
	font-size: 1rem;
	font-weight: 600;
	color: #FFFFFF;
}

.post-nav-prev a:hover,
.post-nav-next a:hover {
	color: #22D3EE;
}

/* --- Archive Header --- */
.archive-header {
	padding: 120px 0 40px;
	text-align: center;
}

.archive-title {
	font-family: 'Space Grotesk', monospace;
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: #FFFFFF;
	margin-bottom: 12px;
}

.archive-desc {
	color: #9CA3AF;
	font-size: 1rem;
}

.search-query {
	color: #22D3EE;
}

.search-header .search-form {
	max-width: 400px;
	margin: 20px auto 0;
}

/* --- Search Form --- */
.search-form {
	display: flex;
	gap: 8px;
}

.search-form input[type="search"] {
	flex: 1;
	padding: 10px 16px;
	background: #13131A;
	border: 1px solid #27272A;
	border-radius: 10px;
	color: #FFFFFF;
	font-size: 0.9375rem;
	font-family: 'Inter', sans-serif;
	outline: none;
	transition: border-color 0.2s;
}

.search-form input[type="search"]:focus {
	border-color: #6366F1;
}

.search-form input[type="search"]::placeholder {
	color: #6B7280;
}

.search-form button {
	padding: 10px 20px;
	background: linear-gradient(135deg, #6366F1, #8B5CF6);
	border: none;
	border-radius: 10px;
	color: #FFFFFF;
	font-weight: 600;
	cursor: pointer;
	transition: box-shadow 0.2s;
}

.search-form button:hover {
	box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

/* --- No Posts --- */
.no-posts {
	text-align: center;
	padding: 80px 24px;
}

.no-posts h2 {
	font-family: 'Space Grotesk', monospace;
	font-size: 1.5rem;
	color: #FFFFFF;
	margin-bottom: 12px;
}

.no-posts p {
	color: #6B7280;
}

/* --- Pagination --- */
.pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	padding: 40px 0 60px;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	font-size: 0.875rem;
	font-weight: 500;
	color: #9CA3AF;
	background: #13131A;
	border: 1px solid #27272A;
	border-radius: 10px;
	transition: all 0.2s;
}

.pagination .page-numbers:hover {
	border-color: #3F3F46;
	color: #FFFFFF;
}

.pagination .page-numbers.current {
	background: linear-gradient(135deg, #6366F1, #8B5CF6);
	border-color: transparent;
	color: #FFFFFF;
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
	font-size: 1rem;
}

/* --- Comments --- */
.comments-area {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid #27272A;
}

.comments-title {
	font-family: 'Space Grotesk', monospace;
	font-size: 1.25rem;
	color: #FFFFFF;
	margin-bottom: 24px;
}

.comment-list {
	list-style: none;
}

.comment {
	padding: 20px 0;
	border-bottom: 1px solid #27272A;
}

.comment:last-child {
	border-bottom: none;
}

.comment-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
}

.comment-author {
	font-weight: 600;
	color: #FFFFFF;
}

.comment-metadata {
	font-size: 0.8125rem;
	color: #6B7280;
}

.comment-content {
	font-size: 0.9375rem;
	color: #D1D5DB;
	line-height: 1.7;
}

.reply a {
	font-size: 0.8125rem;
	font-weight: 600;
	color: #22D3EE;
}

.comment-respond {
	margin-top: 32px;
}

.comment-reply-title {
	font-family: 'Space Grotesk', monospace;
	font-size: 1.125rem;
	color: #FFFFFF;
	margin-bottom: 16px;
}

.comment-form label {
	display: block;
	font-size: 0.875rem;
	color: #9CA3AF;
	margin-bottom: 6px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 10px 16px;
	background: #13131A;
	border: 1px solid #27272A;
	border-radius: 10px;
	color: #FFFFFF;
	font-size: 0.9375rem;
	font-family: 'Inter', sans-serif;
	outline: none;
	transition: border-color 0.2s;
	margin-bottom: 16px;
}

.comment-form input:focus,
.comment-form textarea:focus {
	border-color: #6366F1;
}

.comment-form .submit {
	padding: 12px 28px;
	background: linear-gradient(135deg, #6366F1, #8B5CF6);
	border: none;
	border-radius: 10px;
	color: #FFFFFF;
	font-size: 0.9375rem;
	font-weight: 600;
	cursor: pointer;
	transition: box-shadow 0.2s;
}

.comment-form .submit:hover {
	box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

/* --- Footer --- */
.site-footer {
	background: #0B0B10;
	border-top: 1px solid #27272A;
	padding: 60px 0 0;
}

.footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 60px;
}

.footer-logo {
	font-family: 'Space Grotesk', monospace;
	font-size: 1.25rem;
	font-weight: 700;
	color: #FFFFFF;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.footer-tagline {
	font-size: 0.875rem;
	color: #6B7280;
	margin-top: 8px;
}

.footer-widgets {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.footer-heading {
	font-family: 'Space Grotesk', monospace;
	font-size: 0.8125rem;
	font-weight: 600;
	color: #FFFFFF;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 16px;
}

.footer-link-list {
	list-style: none;
}

.footer-link-list li {
	margin-bottom: 8px;
}

.footer-link-list a {
	font-size: 0.875rem;
	color: #6B7280;
	transition: color 0.2s;
}

.footer-link-list a:hover {
	color: #22D3EE;
}

.footer-nav .menu {
	list-style: none;
}

.footer-nav .menu li {
	margin-bottom: 8px;
}

.footer-nav .menu a {
	font-size: 0.875rem;
	color: #6B7280;
	transition: color 0.2s;
}

.footer-nav .menu a:hover {
	color: #22D3EE;
}

.footer-bottom {
	margin-top: 60px;
	border-top: 1px solid #27272A;
	padding: 20px 0;
}

.footer-bottom-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.8125rem;
	color: #6B7280;
}

.footer-credit a {
	color: #6B7280;
}

.footer-credit a:hover {
	color: #22D3EE;
}

/* --- Widgets --- */
.widget {
	margin-bottom: 32px;
}

.widget-title {
	font-family: 'Space Grotesk', monospace;
	font-size: 1rem;
	font-weight: 600;
	color: #FFFFFF;
	margin-bottom: 16px;
}

.widget ul {
	list-style: none;
}

.widget ul li {
	margin-bottom: 8px;
}

.widget ul li a {
	font-size: 0.875rem;
	color: #9CA3AF;
}

.widget ul li a:hover {
	color: #22D3EE;
}

/* --- Telegram Login --- */
.tg-login-wrapper {
	display: flex;
	justify-content: center;
	margin: 24px 0;
}

/* --- Lead Magnet --- */
.lead-magnet {
	background: #13131A;
	border: 1px solid #27272A;
	border-radius: 14px;
	padding: 32px;
	margin: 24px 0;
	text-align: center;
	transition: border-color 0.3s;
}

.lead-magnet:hover {
	border-color: #6366F1;
}

.lead-magnet-title {
	font-family: 'Space Grotesk', monospace;
	font-size: 1.25rem;
	color: #FFFFFF;
	margin-bottom: 8px;
}

.lead-magnet-desc {
	font-size: 0.9375rem;
	color: #9CA3AF;
	margin-bottom: 20px;
}

/* --- Pricing Card --- */
.pricing-card {
	background: #13131A;
	border: 1px solid #27272A;
	border-radius: 14px;
	padding: 32px;
	text-align: center;
	transition: all 0.3s;
}

.pricing-card:hover {
	border-color: #3F3F46;
	transform: translateY(-4px);
}

.pricing-featured {
	border-color: #6366F1;
	box-shadow: 0 0 30px rgba(99, 102, 241, 0.15);
}

.pricing-title {
	font-family: 'Space Grotesk', monospace;
	font-size: 1.125rem;
	color: #FFFFFF;
	margin-bottom: 16px;
}

.pricing-price {
	margin-bottom: 24px;
}

.pricing-amount {
	font-family: 'Space Grotesk', monospace;
	font-size: 2.5rem;
	font-weight: 700;
	color: #FFFFFF;
}

.pricing-period {
	display: block;
	font-size: 0.875rem;
	color: #6B7280;
	margin-top: 4px;
}

.pricing-features {
	list-style: none;
	margin-bottom: 24px;
}

.pricing-features li {
	padding: 8px 0;
	font-size: 0.9375rem;
	color: #9CA3AF;
	border-bottom: 1px solid #27272A;
}

.pricing-features li:last-child {
	border-bottom: none;
}

/* --- Tool Card --- */
.tool-card {
	display: block;
	background: #13131A;
	border: 1px solid #27272A;
	border-radius: 14px;
	padding: 24px;
	transition: all 0.3s;
	text-decoration: none;
}

.tool-card:hover {
	border-color: #3F3F46;
	transform: translateY(-3px);
	text-decoration: none;
}

.tool-card-number {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	color: #6B7280;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 8px;
}

.tool-card-title {
	display: block;
	font-family: 'Space Grotesk', monospace;
	font-size: 1rem;
	font-weight: 600;
	color: #FFFFFF;
	margin-bottom: 6px;
}

.tool-card-desc {
	display: block;
	font-size: 0.875rem;
	color: #9CA3AF;
	line-height: 1.5;
}

/* --- Error 404 --- */
.error-404-area {
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.error-hero {
	padding: 40px 24px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
	.footer-inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

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

@media (max-width: 768px) {
	.main-navigation ul {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		background: rgba(11, 11, 16, 0.98);
		border-bottom: 1px solid #27272A;
		padding: 16px;
		gap: 4px;
	}

	.main-navigation.toggled ul {
		display: flex;
	}

	.menu-toggle {
		display: block;
	}

	.header-actions .header-btn-outline {
		display: none;
	}

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

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

	.footer-bottom-inner {
		flex-direction: column;
		gap: 8px;
		text-align: center;
	}

	.single-post-nav {
		flex-direction: column;
		gap: 16px;
	}

	.post-nav-next {
		text-align: left;
	}

	.hero-section {
		padding: 100px 16px 60px;
	}
}

@media (max-width: 480px) {
	.header-inner {
		padding: 0 16px;
	}

	.content-wrapper {
		padding: 0 16px;
	}

	.post-card-body {
		padding: 16px;
	}

	.hero-heading {
		font-size: 1.75rem;
	}
}
