:root {
	/* Sophisticated Dark Palette (Claude/Replit style) */
	--bg-main: #111110;
	--bg-surface: #181816;
	--bg-surface-hover: #1f1f1d;
	--bg-elevated: #1e1e1e;
	/* VSCode core color */

	--border-subtle: #2a2a28;
	--border-focus: #40403d;

	--text-primary: #ededeb;
	--text-secondary: #a0a09c;
	--text-tertiary: #6e6e6a;

	--accent-spiny: #eab308;
	/* Muted, tasteful yellow */
	--accent-bg: #2a2202;

	/* Typography - Nothing Style */
	--font-sans: 'Inter', -apple-system, sans-serif;
	--font-dot: 'Space Mono', monospace;
	--font-mono: 'JetBrains Mono', monospace;
	--font-spiny: 'Chakra Petch', sans-serif;
	--font-brand: 'Bitcount Single', system-ui;
}

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

body {
	font-family: var(--font-sans);
	background-color: var(--bg-main);
	color: var(--text-primary);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Typography styles */
h1,
h2,
h3 {
	font-family: var(--font-dot);
	font-weight: 700;
	letter-spacing: -0.05em;
	color: var(--text-primary);
	text-transform: uppercase;
}

p {
	color: var(--text-secondary);
}

/* Minimalist Navbar */
.navbar {
	position: sticky;
	top: 0;
	width: 100%;
	background: var(--bg-main);
	border-bottom: 1px solid transparent;
	z-index: 100;
	transition: border-bottom-color 0.3s ease;
}

.navbar.scrolled {
	border-bottom-color: var(--border-subtle);
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.logo-mark-img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.logo-text {
	font-family: var(--font-brand);
	font-optical-sizing: auto;
	font-weight: 450;
	padding-top: 4px;
	font-style: normal;
	font-variation-settings:
		"slnt" 0,
		"CRSV" 0.5,
		"ELSH" 0,
		"ELXP" 0;
	font-size: 1.4rem;
	padding-top: 2px;
	color: var(--text-primary);
	text-transform: uppercase;
	line-height: 1;
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.nav-links-center {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.nav-item {
	position: relative;
}

.nav-link {
	color: var(--text-secondary);
	text-decoration: none;
	font-family: var(--font-dot);
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	transition: color 0.15s ease;
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.nav-link:hover,
.nav-link.active {
	color: var(--text-primary);
}

.nav-item:hover .megamenu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.chevron {
	font-size: 0.6rem;
	color: var(--text-tertiary);
}

/* Megamenu Styles */
.megamenu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	width: auto;
	min-width: 600px;
	padding-top: 1.5rem;
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s ease;
	z-index: 200;
}

.megamenu-inner {
	background-color: var(--bg-surface);
	border: 1px solid var(--border-focus);
	border-radius: 0;
	display: flex;
	box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
}

.megamenu-left {
	padding: 2rem;
	border-right: 1px dotted var(--border-focus);
	background-color: var(--bg-main);
	min-width: 250px;
}

.megamenu-right {
	padding: 2rem;
	flex: 1;
}

.megamenu-featured {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.featured-item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	cursor: pointer;
}

.featured-icon {
	font-family: var(--font-dot);
	color: var(--accent-spiny);
	font-size: 1rem;
	flex-shrink: 0;
	white-space: nowrap;
}

.featured-text {
	flex: 1;
}

.featured-title {
	font-family: var(--font-dot);
	font-size: 0.9rem;
	color: var(--text-primary);
	margin-bottom: 0.4rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	white-space: nowrap;
}

.featured-title span {
	font-family: var(--font-sans);
}

.featured-desc {
	font-family: var(--font-mono);
	font-size: 0.7rem;
	color: var(--text-tertiary);
	line-height: 1.5;
}

.megamenu-columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.megamenu-columns.full-width {
	width: 100%;
	padding: 2rem;
	grid-template-columns: repeat(3, 1fr);
	min-width: 600px;
}

.megamenu-col {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.col-title {
	font-family: var(--font-dot);
	font-size: 0.75rem;
	color: var(--text-tertiary);
	margin-bottom: 0.5rem;
}

.megamenu-col a {
	color: var(--text-secondary);
	text-decoration: none;
	font-family: var(--font-mono);
	font-size: 0.75rem;
	transition: color 0.1s ease;
}

.megamenu-col a:hover {
	color: var(--text-primary);
}

/* Buttons - Nothing Style */
.btn {
	appearance: none;
	border: 1px solid var(--text-primary);
	border-radius: 0;
	/* Sharp corners */
	padding: 0.75rem 1.5rem;
	font-family: var(--font-dot);
	font-size: 0.9rem;
	letter-spacing: 0.1em;
	cursor: pointer;
	text-decoration: none;
	text-transform: uppercase;
	transition: all 0.2s ease;
	background-color: transparent;
	color: var(--text-primary);
	white-space: nowrap;
}

.btn-small {
	padding: 0.4rem 0.8rem;
	font-size: 0.7rem;
}

.btn-primary {
	background-color: var(--text-primary);
	color: var(--bg-main);
	border-color: var(--text-primary);
}

.btn-primary:hover {
	background-color: transparent;
	color: var(--text-primary);
}

.btn-secondary {
	background-color: transparent;
	color: var(--text-primary);
	border-color: var(--border-subtle);
}

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


/* Hero Section */
.hero {
	max-width: 1200px;
	margin: 0 auto;
	padding: 5rem 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.hero-container {
	max-width: 800px;
	margin-bottom: 5rem;
}

.hero-title {
	font-family: var(--font-spiny);
	font-size: 5rem;
	font-weight: 700;
	line-height: 0.9;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
	text-transform: uppercase;
}

.nothing-badge {
	font-family: var(--font-dot);
	color: var(--accent-spiny);
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
}

.hero-description {
	font-size: 1.1rem;
	font-family: var(--font-mono);
	max-width: 650px;
	margin: 0 auto 3rem;
	line-height: 1.6;
	color: var(--text-secondary);
}

.hero-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
}

/* App Showcase (Abstract UI representation) */
.app-showcase-wrapper {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}

.app-showcase {
	background-color: var(--bg-elevated);
	border: 1px solid var(--border-focus);
	/* Harsher border */
	border-radius: 0;
	/* Sharp corners */
	overflow: hidden;
	text-align: left;
	box-shadow: none;
	/* Removed soft shadow for flat tech look */
}

.app-header {
	display: flex;
	background-color: var(--bg-main);
	border-bottom: 1px solid var(--border-subtle);
}

.app-header .tab {
	padding: 0.6rem 1.2rem;
	font-family: var(--font-sans);
	font-size: 0.8rem;
	color: var(--text-tertiary);
	border-right: 1px solid var(--border-subtle);
}

.app-header .tab.active {
	color: var(--accent-spiny);
	background-color: var(--bg-elevated);
	border-top: 2px solid var(--accent-spiny);
}

.app-body {
	display: flex;
	height: 300px;
}

.app-sidebar {
	width: 48px;
	background-color: var(--bg-main);
	border-right: 1px solid var(--border-subtle);
}

.app-content {
	flex: 1;
	padding: 1.5rem;
	background-color: var(--bg-elevated);
}

.code-block {
	font-family: var(--font-mono);
	font-size: 0.85rem;
	color: #cccccc;
	line-height: 1.6;
}

.code-block .keyword {
	color: #c586c0;
}

.code-block .method {
	color: #dcdcaa;
}

.code-block .string {
	color: #ce9178;
}

.code-block .dim {
	color: #6a9955;
}

.app-statusbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.3rem 1rem;
	background-color: var(--accent-spiny);
	color: var(--bg-main);
	font-family: var(--font-sans);
	font-size: 0.75rem;
	font-weight: 500;
}

.status-right {
	display: flex;
	gap: 1rem;
}

.platform-icon {
	font-size: 3rem;
	margin-bottom: 2rem;
	color: var(--accent-spiny);
	display: block;
}

.status-item {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.status-item .icon {
	font-size: 0.85rem;
}

/* Bento Grid Section */
.bento-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 4rem 2rem 8rem;
}

.bento-header {
	margin-bottom: 4rem;
}

.section-title {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.section-description {
	font-size: 1.1rem;
	max-width: 500px;
}

.bento-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-auto-rows: minmax(200px, auto);
	gap: 1.5rem;
}

.bento-card {
	background-color: var(--bg-main);
	border: 1px dotted var(--border-focus);
	/* Technical dotted borders */
	border-radius: 0;
	padding: 2.5rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: border-color 0.2s ease;
	position: relative;
}

.bento-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 10px;
	height: 10px;
	border-top: 1px solid var(--text-primary);
	border-left: 1px solid var(--text-primary);
}

.bento-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 10px;
	height: 10px;
	border-bottom: 1px solid var(--text-primary);
	border-right: 1px solid var(--text-primary);
}

.bento-card:hover {
	border-style: solid;
	border-color: var(--text-primary);
}

.bento-card.large {
	grid-column: span 2;
	background-color: var(--bg-main);
	/* Subtle background pattern to mimic hardware schematics or code Grid */
	background-image: radial-gradient(var(--border-subtle) 1px, transparent 1px);
	background-size: 20px 20px;
}

.card-content h3 {
	font-family: var(--font-sans);
	font-weight: 600;
	font-size: 1.25rem;
	margin-bottom: 1rem;
}

.card-content p {
	font-size: 0.95rem;
	line-height: 1.6;
}

.bento-card.large .card-content h3 {
	font-size: 2rem;
	font-family: var(--font-dot);
}

.bento-card.large .card-content p {
	font-size: 1.1rem;
	max-width: 700px;
}

/* Split Sections */
.divider-top {
	position: relative;
}

.divider-top::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 4rem);
	max-width: 1200px;
	height: 1px;
	background-color: var(--border-subtle);
}

.split-section {
	padding: 6rem 2rem;
}

.split-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.split-section.reverse .split-container {
	grid-template-columns: 1fr 1fr;
}

.split-section.reverse .split-content {
	order: 2;
}

.split-section.reverse .split-visual {
	order: 1;
}

.feature-list {
	list-style: none;
	margin-top: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.feature-list li {
	color: var(--text-primary);
	font-family: var(--font-sans);
	font-size: 0.95rem;
}

/* Code & Terminal Mockups */
.code-window,
.terminal-mockup {
	background-color: var(--bg-main);
	border: 1px solid var(--border-subtle);
	border-radius: 8px;
	overflow: hidden;
}

.code-window-header {
	background-color: var(--bg-surface);
	padding: 0.5rem 1rem;
	font-family: var(--font-mono);
	font-size: 0.75rem;
	color: var(--text-tertiary);
	border-bottom: 1px solid var(--border-subtle);
}

.code-window-body pre {
	margin: 0;
	padding: 1.5rem;
	overflow-x: auto;
}

.code-window-body code {
	font-family: var(--font-mono);
	font-size: 0.85rem;
	line-height: 1.6;
	color: #d4d4d4;
}

.code-window-body .keyword {
	color: #c586c0;
}

.code-window-body .method {
	color: #dcdcaa;
}

.code-window-body .string {
	color: #ce9178;
}

.terminal-mockup {
	padding: 1.5rem;
	font-family: var(--font-mono);
	font-size: 0.85rem;
	line-height: 1.6;
	background-color: #0d0d0d;
}

.term-line {
	color: #cccccc;
}

.term-line.error {
	color: #f43f5e;
	margin-top: 0.5rem;
}

.term-line.dim {
	color: var(--text-tertiary);
}

.term-line.success {
	color: #10b981;
	margin-bottom: 0.5rem;
}

/* Large CTA */
.cta-banner {
	border-top: 1px solid var(--border-subtle);
	padding: 8rem 2rem;
	text-align: center;
	background-color: var(--bg-surface);
	background-image: radial-gradient(circle at center, rgba(234, 179, 8, 0.05) 0%, transparent 60%);
}

.cta-content h2 {
	font-size: 3.5rem;
	margin-bottom: 1rem;
}

.cta-content p {
	font-size: 1.25rem;
	margin-bottom: 3rem;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
}

.btn.large {
	padding: 0.75rem 1.5rem;
	font-size: 1rem;
}

/* Footer */
footer {
	border-top: 1px solid var(--border-focus);
	padding: 6rem 2rem 2rem;
	background-color: var(--bg-main);
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: 4rem;
}

.footer-brand {
	max-width: 300px;
}

.footer-note {
	margin-top: 1.5rem;
	font-family: var(--font-mono);
	font-size: 0.75rem;
	color: var(--text-tertiary);
	line-height: 1.6;
}

.footer-version {
	margin-top: 1rem;
	font-family: var(--font-dot);
	font-size: 0.8rem;
	color: var(--accent-spiny);
}

.footer-links-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4rem;
}

.footer-group {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer-heading {
	font-family: var(--font-dot);
	font-size: 0.85rem;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.footer-group a {
	color: var(--text-secondary);
	text-decoration: none;
	font-family: var(--font-mono);
	font-size: 0.8rem;
	transition: color 0.15s ease;
}

.footer-group a:hover {
	color: var(--text-primary);
}

.footer-bottom {
	max-width: 1200px;
	margin: 4rem auto 0;
	padding-top: 2rem;
	border-top: 1px dotted var(--border-focus);
	display: flex;
	justify-content: space-between;
	font-family: var(--font-mono);
	font-size: 0.7rem;
	color: var(--text-tertiary);
	text-transform: uppercase;
}

.nothing-label {
	color: var(--text-secondary);
	font-family: var(--font-dot);
}

/* Responsive constraints */
@media (max-width: 768px) {
	.hero-title {
		font-size: 3rem;
	}

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

	.bento-card.large {
		grid-column: span 1;
	}

	.split-container,
	.split-section.reverse .split-container {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.split-section.reverse .split-content {
		order: 1;
	}

	.split-section.reverse .split-visual {
		order: 2;
	}

	.cta-content h2 {
		font-size: 2.5rem;
	}

	.footer-container {
		flex-direction: column;
		gap: 2rem;
	}

	.footer-right {
		text-align: left;
	}
}

.footer-social {
	display: flex;
	gap: 0.45rem;
	margin-top: 1rem;
}

.social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid var(--border-subtle);
	border-radius: 4px;
	color: var(--text-secondary);
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	background: transparent;
}

.social-icon:hover {
	color: var(--text-primary);
	border-color: var(--text-primary);
	background: var(--surface-subtle);
	transform: translateY(-2px);
}

.social-icon svg {
	width: 18px;
	height: 18px;
}

/* Pricing Page Styles */
.pricing-hero {
	padding: 8rem 2rem 4rem;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
}

.pricing-hero h1 {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	font-family: var(--font-spiny);
}

.pricing-hero p {
	font-family: var(--font-mono);
	max-width: 600px;
	margin: 0 auto;
	font-size: 1.1rem;
}

.pricing-grid {
	max-width: 1200px;
	margin: 4rem auto 8rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	padding: 0 2rem;
}

.pricing-card {
	background-color: var(--bg-surface);
	border: 1px dotted var(--border-focus);
	padding: 3rem 2.5rem;
	display: flex;
	flex-direction: column;
	position: relative;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
}

.pricing-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	border-top: 1px solid var(--text-tertiary);
	border-left: 1px solid var(--text-tertiary);
	opacity: 0.5;
}

.pricing-card:hover {
	border-style: solid;
	border-color: var(--text-primary);
	transform: translateY(-8px);
	background-color: var(--bg-surface-hover);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
	border: 1px solid var(--accent-spiny);
	background-color: rgba(234, 179, 8, 0.02);
}

.pricing-card.featured .card-badge {
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--accent-spiny);
	color: var(--bg-main);
	padding: 0.4rem 1rem;
	font-family: var(--font-dot);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.pricing-card .plan-header {
	margin-bottom: 3rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.plan-name {
	font-family: var(--font-dot);
	font-size: 0.8rem;
	color: var(--accent-spiny);
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.plan-price {
	font-family: var(--font-spiny);
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1;
	color: var(--text-primary);
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.plan-price span {
	font-family: var(--font-mono);
	font-size: 0.9rem;
	color: var(--text-tertiary);
	letter-spacing: -0.02em;
}

.plan-desc {
	margin-top: 1rem;
	font-size: 0.9rem;
	color: var(--text-secondary);
	line-height: 1.6;
	min-height: 3.2rem;
	border-left: 1px dotted var(--border-focus);
	padding-left: 1rem;
}

.plan-features {
	list-style: none;
	margin: 0 0 3rem;
	padding: 2rem 0;
	flex: 1;
	border-top: 1px dotted var(--border-focus);
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.plan-features li {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	font-family: var(--font-sans);
	font-size: 0.9rem;
	color: var(--text-secondary);
}

.plan-features li i {
	color: var(--accent-spiny);
	font-size: 0.8rem;
	margin-top: 0.25rem;
}

.btn-full {
	width: 100%;
	text-align: center;
	justify-content: center;
}


.feature-check-list li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-family: var(--font-mono);
	font-size: 0.85rem;
	color: var(--text-secondary);
	margin-bottom: 1rem;
}

.feature-check-list li::before {
	content: '✓';
	color: var(--accent-spiny);
	font-family: var(--font-sans);
}

.feature-check-list li.disabled {
	color: var(--text-tertiary);
	text-decoration: line-through;
}

.feature-check-list li.disabled::before {
	content: '×';
	color: var(--text-tertiary);
}

.pricing-card .btn {
	width: 100%;
	text-align: center;
}

/* Pricing FAQ Section */
.pricing-faq {
	max-width: 800px;
	margin: 0 auto 10rem;
	padding: 0 2rem;
}

.faq-title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 4rem;
}

.faq-grid {
	display: grid;
	gap: 2.5rem;
}

.faq-item h4 {
	font-family: var(--font-dot);
	font-size: 0.9rem;
	color: var(--text-primary);
	margin-bottom: 0.75rem;
	letter-spacing: 0.05em;
}

.faq-item p {
	font-size: 0.9rem;
	line-height: 1.6;
}

@media (max-width: 900px) {
	.pricing-grid {
		grid-template-columns: 1fr;
	}

	.pricing-hero h1 {
		font-size: 3rem;
	}
}

/* Documentation Page Styles */
.docs-wrapper {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 280px 1fr 240px;
	min-height: calc(100vh - 70px);
}

/* Sidebar Nav */
.docs-sidebar {
	border-right: 1px solid var(--border-subtle);
	padding: 3rem 2rem;
	height: calc(100vh - 70px);
	position: sticky;
	top: 70px;
	overflow-y: auto;
}

.docs-nav-group {
	margin-bottom: 2.5rem;
}

.docs-nav-group h5 {
	font-family: var(--font-dot);
	font-size: 0.75rem;
	color: var(--text-primary);
	margin-bottom: 1.25rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	opacity: 0.6;
}

.docs-nav-link {
	display: block;
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.95rem;
	margin-bottom: 0.5rem;
	transition: all 0.2s ease;
	font-family: var(--font-sans);
	padding: 0.4rem 0.75rem;
	margin-left: -0.75rem;
	border-radius: 4px;
}

.docs-nav-link:hover {
	color: var(--text-primary);
	background-color: var(--surface-subtle);
	transform: translateX(4px);
}

.docs-nav-link.active {
	font-weight: 600;
	color: var(--bg-main);
	background-color: var(--accent-spiny);
}

/* Main Content */
.docs-content {
	padding: 4rem 4rem 8rem;
	max-width: 800px;
}

.docs-article {
	line-height: 1.7;
}

.docs-article h1 {
	font-size: 3.5rem;
	margin-bottom: 2rem;
	font-family: var(--font-spiny);
	letter-spacing: -0.02em;
	color: var(--text-primary);
	text-transform: uppercase;
}

.docs-article h2 {
	font-size: 1.5rem;
	margin: 4rem 0 1.5rem;
	font-family: var(--font-dot);
	color: var(--text-primary);
	border-bottom: 1px solid var(--border-subtle);
	padding-bottom: 0.75rem;
	letter-spacing: 0.05em;
}

.docs-article p {
	font-size: 1.05rem;
	margin-bottom: 1.5rem;
	color: var(--text-secondary);
}

/* Doc Components */
.docs-code-block {
	background-color: var(--bg-main);
	border: 1px solid var(--border-subtle);
	border-radius: 8px;
	margin: 2.5rem 0;
	padding: 2rem;
	font-family: var(--font-mono);
	font-size: 0.9rem;
	line-height: 1.7;
	overflow-x: auto;
	color: #d4d4d4;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.docs-code-block .keyword {
	color: #c586c0;
}

.docs-code-block .method {
	color: #dcdcaa;
}

.docs-code-block .string {
	color: #ce9178;
}

.docs-info-box {
	background-color: var(--bg-surface-hover);
	border-left: 4px solid var(--accent-spiny);
	border-radius: 0 4px 4px 0;
	padding: 1.5rem 2rem;
	margin: 2.5rem 0;
}

.docs-info-box p {
	margin-bottom: 0;
	font-size: 0.95rem;
	color: var(--text-primary);
}

/* Right TOC */
.docs-toc {
	padding: 4rem 2rem;
	height: calc(100vh - 70px);
	position: sticky;
	top: 70px;
}

.docs-toc h5 {
	font-family: var(--font-dot);
	font-size: 0.75rem;
	color: var(--text-primary);
	margin-bottom: 1.25rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	opacity: 0.6;
}

.docs-toc ul {
	list-style: none;
	padding: 0;
}

.docs-toc li {
	margin-bottom: 0.75rem;
}

.docs-toc a {
	color: var(--text-tertiary);
	text-decoration: none;
	font-size: 0.85rem;
	transition: all 0.2s ease;
	display: block;
	padding: 0.2rem 0;
}

.docs-toc a:hover {
	color: var(--text-primary);
	transform: translateX(2px);
}

@media (max-width: 1100px) {
	.docs-wrapper {
		grid-template-columns: 240px 1fr;
	}

	.docs-toc {
		display: none;
	}
}

@media (max-width: 768px) {
	.docs-wrapper {
		grid-template-columns: 1fr;
	}

	.docs-sidebar {
		display: none;
		/* In production, this would be a drawer */
	}

	.docs-content {
		padding: 2rem;
	}
}

/* Download Page Styles */
.download-hero {
	padding: 8rem 2rem 4rem;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.download-hero h1 {
	font-size: 4rem;
	font-family: var(--font-spiny);
	margin-bottom: 1.5rem;
}

.download-hero p {
	font-size: 1.25rem;
	color: var(--text-secondary);
	margin-bottom: 2.5rem;
}

.version-selector {
	display: inline-flex;
	background-color: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	padding: 0.4rem;
	border-radius: 8px;
	margin-bottom: 2rem;
}

.version-btn {
	padding: 0.6rem 1.5rem;
	border: none;
	background: transparent;
	color: var(--text-tertiary);
	font-family: var(--font-dot);
	font-size: 0.8rem;
	font-weight: 600;
	cursor: pointer;
	border-radius: 4px;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	letter-spacing: 0.05em;
}

.version-btn:hover {
	color: var(--text-primary);
}

.version-btn.active {
	background-color: var(--accent-spiny);
	color: var(--bg-main);
}

.version-select {
	background-color: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	color: var(--text-primary);
	padding: 0.6rem 2.5rem 0.6rem 1rem;
	border-radius: 4px;
	font-family: var(--font-mono);
	font-size: 0.85rem;
	cursor: pointer;
	outline: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.7rem center;
	background-size: 1rem;
	transition: all 0.2s ease;
}

.version-select:hover {
	border-color: var(--border-focus);
}

.version-select:focus {
	border-color: var(--accent-spiny);
}

.download-grid {
	max-width: 1200px;
	margin: 0 auto 8rem;
	padding: 0 2rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.download-card {
	background-color: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	padding: 3rem 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: all 0.2s ease;
}

.download-card:hover {
	border-color: var(--border-focus);
	transform: translateY(-4px);
}

.download-card.recommended {
	border-color: var(--accent-spiny);
	position: relative;
}

.download-card.recommended::before {
	content: 'RECOMMENDED FOR YOU';
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--accent-spiny);
	color: var(--bg-main);
	font-family: var(--font-dot);
	font-size: 0.65rem;
	padding: 4px 12px;
	font-weight: 700;
}

.platform-icon {
	width: 64px;
	height: 64px;
	margin-bottom: 2rem;
	color: var(--text-primary);
}

.download-card h3 {
	font-family: var(--font-dot);
	font-size: 1.25rem;
	margin-bottom: 1rem;
	text-transform: uppercase;
}

.download-version {
	font-family: var(--font-mono);
	font-size: 0.85rem;
	color: var(--text-tertiary);
	margin-bottom: 2rem;
}

.download-options {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.requirements-section {
	background-color: var(--bg-surface);
	border-top: 1px solid var(--border-subtle);
	padding: 6rem 2rem;
}

.requirements-container {
	max-width: 1000px;
	margin: 0 auto;
}

.requirements-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4rem;
	margin-top: 3rem;
}

.requirement-group h4 {
	font-family: var(--font-dot);
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
	color: var(--accent-spiny);
	text-transform: uppercase;
}

.requirement-item {
	display: flex;
	justify-content: space-between;
	padding: 1rem 0;
	border-bottom: 1px dotted var(--border-subtle);
}

.requirement-label {
	color: var(--text-secondary);
}

.requirement-value {
	color: var(--text-primary);
	font-family: var(--font-mono);
	font-size: 0.9rem;
}

@media (max-width: 1024px) {
	.download-grid {
		grid-template-columns: 1fr;
		max-width: 500px;
	}

	.requirements-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

/* Authentication Page Styles */
.auth-page {
	background-color: var(--bg-main);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.auth-navbar {
	border-bottom: 1px solid var(--border-subtle);
	position: relative;
}

.auth-container {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	position: relative;
	overflow: hidden;
}

.auth-container::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(234, 179, 8, 0.03) 0%, transparent 70%);
	pointer-events: none;
}

.auth-card {
	width: 100%;
	max-width: 450px;
	background-color: var(--bg-surface);
	border: 1px solid var(--border-focus);
	padding: 3rem;
	position: relative;
	z-index: 10;
}

.auth-card::before {
	content: '';
	position: absolute;
	top: -1px;
	left: -1px;
	width: 20px;
	height: 20px;
	border-top: 2px solid var(--accent-spiny);
	border-left: 2px solid var(--accent-spiny);
}

.auth-header {
	margin-bottom: 2.5rem;
	text-align: left;
}

.auth-header h2 {
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.auth-header p {
	font-family: var(--font-mono);
	font-size: 0.8rem;
	color: var(--text-tertiary);
	text-transform: uppercase;
}

.auth-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.form-group label {
	font-family: var(--font-dot);
	font-size: 0.7rem;
	color: var(--text-tertiary);
	letter-spacing: 0.1em;
}

.input-wrapper {
	position: relative;
}

.input-wrapper input {
	width: 100%;
	background-color: var(--bg-main);
	border: 1px solid var(--border-subtle);
	padding: 0.9rem 1rem;
	color: var(--text-primary);
	font-family: var(--font-mono);
	font-size: 0.9rem;
	outline: none;
	transition: all 0.2s ease;
}

.input-wrapper input:focus {
	border-color: var(--accent-spiny);
}

.input-glow {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 0;
	height: 1px;
	background-color: var(--accent-spiny);
	box-shadow: 0 0 10px var(--accent-spiny);
	transition: width 0.3s ease;
}

.input-wrapper input:focus + .input-glow {
	width: 100%;
}

.auth-submit-btn {
	margin-top: 1rem;
	width: 100%;
	justify-content: center;
}

.auth-divider {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 1rem 0;
}

.auth-divider::before,
.auth-divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background-color: var(--border-subtle);
}

.auth-divider span {
	font-family: var(--font-dot);
	font-size: 0.6rem;
	color: var(--text-tertiary);
	white-space: nowrap;
}

.sso-buttons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.sso-btn {
	font-size: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.auth-footer {
	margin-top: 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: var(--font-mono);
	font-size: 0.7rem;
	color: var(--text-tertiary);
}

.auth-toggle-link {
	background: none;
	border: none;
	color: var(--accent-spiny);
	font-family: var(--font-dot);
	font-size: 0.7rem;
	cursor: pointer;
	padding: 0;
	text-decoration: none;
	transition: all 0.2s ease;
	border-bottom: 1px solid transparent;
}

.auth-toggle-link:hover {
	color: var(--text-primary);
	border-bottom-color: var(--accent-spiny);
}

.auth-footer a {
	color: var(--accent-spiny);
	text-decoration: none;
	transition: all 0.2s ease;
	border-bottom: 1px solid transparent;
}

.auth-footer a:hover {
	color: var(--text-primary);
	border-bottom-color: var(--accent-spiny);
}

.auth-toggle-link:hover {
	color: var(--accent-spiny);
}

.auth-status-bar {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 0.75rem 2rem;
	background-color: var(--bg-main);
	border-top: 1px solid var(--border-subtle);
	display: flex;
	gap: 2rem;
	font-family: var(--font-dot);
	font-size: 0.7rem;
	color: var(--text-tertiary);
}

.status-node {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.status-node::before {
	content: '';
	width: 4px;
	height: 4px;
	background-color: var(--accent-spiny);
	border-radius: 50%;
}

@media (max-width: 500px) {
	.auth-card {
		padding: 2rem;
	}

	.auth-status-bar {
		flex-direction: column;
		gap: 0.5rem;
		align-items: flex-start;
	}
}

/* Dashboard Styles */
.dashboard-page {
	background-color: var(--bg-main);
	min-height: 100vh;
	overflow: hidden;
}

.dashboard-layout {
	display: flex;
	height: 100vh;
}

/* Sidebar */
.dashboard-sidebar {
	width: 250px;
	background-color: var(--bg-surface);
	border-right: 1px solid var(--border-focus);
	display: flex;
	flex-direction: column;
	z-index: 100;
}

.sidebar-header {
	padding: 2rem;
	border-bottom: 1px dotted var(--border-subtle);
}

.sidebar-nav {
	flex: 1;
	padding: 1rem 0;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
}

.sidebar-link {
	padding: 0.75rem 1.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	color: var(--text-secondary);
	text-decoration: none;
	font-family: var(--font-sans);
	font-size: 0.85rem;
	font-weight: 500;
	transition: all 0.2s ease;
	border: none;
	background: none;
	width: calc(100% - 1rem);
	margin: 0.25rem 0.5rem;
	border-radius: 6px;
	text-align: left;
	cursor: pointer;
	text-decoration: none !important;
}

.sidebar-link i {
	font-size: 1.1rem;
	width: 24px;
	text-align: center;
	opacity: 0.8;
}

.sidebar-link:hover i,
.sidebar-link.active i {
	opacity: 1;
}

.sidebar-link:hover {
	color: var(--text-primary);
	background-color: var(--bg-surface-hover);
	text-decoration: none !important;
}

.sidebar-link.active {
	color: var(--accent-spiny);
	background-color: rgba(234, 179, 8, 0.08);
}

.sidebar-link.logout {
	padding: 0.75rem 0.5rem;
	color: #f43f5e;
	font-weight: 600;
	margin-top: 0;
	justify-content: flex-start;
}

.sidebar-link.logout i {
	opacity: 1;
}

.sidebar-link.logout:hover {
	color: #ff5f7e;
	background: rgba(244, 63, 94, 0.08);
	border-radius: 4px;
}

.sidebar-spacer {
	flex: 1;
}

.sidebar-footer {
	padding: 1.25rem 1rem;
	background-color: var(--bg-main);
	border-top: 1px solid var(--border-subtle);
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.sidebar-footer .language-switcher {
	order: 1;
}

.sidebar-footer .logout {
	order: 2;
}

.sidebar-footer .user-info {
	order: 3;
	margin-top: 0.5rem;
	padding: 1rem 0.5rem 0.5rem;
	border-top: 1px dotted var(--border-subtle);
}

.user-info {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.user-avatar {
	width: 36px;
	height: 36px;
	background-color: var(--accent-spiny);
	color: var(--bg-main);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-dot);
	font-weight: 700;
}

.user-meta {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	overflow: hidden;
	min-width: 0;
}

.user-meta span:first-child {
	font-family: var(--font-mono);
	font-size: 0.7rem;
	color: var(--text-primary);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
}

.user-status {
	font-size: 0.6rem;
	color: #10b981;
	display: flex;
	align-items: center;
	gap: 0.3rem;
}

.user-status::before {
	content: '';
	width: 4px;
	height: 4px;
	background-color: #10b981;
	border-radius: 50%;
}

/* Main Content area */
.dashboard-content {
	flex: 1;
	overflow-y: auto;
	padding: 2rem 3rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.content-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 2rem;
	border-bottom: 1px dotted var(--border-subtle);
}

.header-breadcrumb {
	font-family: var(--font-mono);
	font-size: 0.75rem;
	color: var(--text-tertiary);
}

.header-breadcrumb span {
	color: var(--text-secondary);
}

.header-actions {
	display: flex;
	gap: 1rem;
}

.dashboard-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

/* Stat Cards */
.stat-card {
	background-color: var(--bg-surface);
	border: 1px solid var(--border-focus);
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.stat-label {
	font-family: var(--font-dot);
	font-size: 0.65rem;
	color: var(--text-tertiary);
	letter-spacing: 0.1em;
}

.stat-value {
	font-family: var(--font-mono);
	font-size: 1.5rem;
	color: var(--text-primary);
	font-weight: 600;
}

.stat-value span {
	font-size: 0.8rem;
	color: var(--text-tertiary);
	margin-left: 0.2rem;
}

.stat-trend {
	font-size: 0.6rem;
	font-family: var(--font-mono);
}

.stat-trend.success {
	color: #10b981;
}

.stat-trend.warning {
	color: var(--accent-spiny);
}

/* Content Cards */
.content-card {
	background-color: var(--bg-surface);
	border: 1px solid var(--border-focus);
	padding: 2rem;
	grid-column: span 1;
}

.content-card.large {
	grid-column: span 3;
}

.card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
}

.card-header h3 {
	font-family: var(--font-dot);
	font-size: 0.85rem;
	color: var(--text-primary);
}

/* Fleet Table */
.fleet-table-wrapper {
	overflow-x: auto;
}

.fleet-table {
	width: 100%;
	border-collapse: collapse;
}

.fleet-table th {
	text-align: left;
	font-family: var(--font-dot);
	font-size: 0.6rem;
	color: var(--text-tertiary);
	padding: 1rem;
	border-bottom: 1px solid var(--border-subtle);
	letter-spacing: 0.05em;
}

.fleet-table td {
	padding: 1.25rem 1rem;
	font-family: var(--font-mono);
	font-size: 0.75rem;
	color: var(--text-secondary);
	border-bottom: 1px solid var(--border-subtle);
}

.mono {
	font-family: var(--font-mono);
	color: var(--text-primary);
}

.status-pill {
	padding: 0.25rem 0.5rem;
	font-size: 0.6rem;
	border: 1px solid currentColor;
}

.status-pill.active {
	color: #10b981;
	background-color: rgba(16, 185, 129, 0.05);
}

.status-pill.idle {
	color: var(--accent-spiny);
	background-color: rgba(234, 179, 8, 0.05);
}

.status-pill.offline {
	color: var(--text-tertiary);
}

.btn-icon {
	background: none;
	border: 1px solid var(--border-subtle);
	color: var(--text-tertiary);
	width: 28px;
	height: 28px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.btn-icon:hover {
	color: var(--accent-spiny);
	border-color: var(--accent-spiny);
}

/* Inputs in Dashboard */
.dashboard-input-group {
	margin-bottom: 1.5rem;
}

.dashboard-input-group label {
	display: block;
	font-family: var(--font-dot);
	font-size: 0.65rem;
	color: var(--text-tertiary);
	margin-bottom: 0.5rem;
}

.dashboard-input-group input,
.dashboard-input-group select {
	width: 100%;
	background-color: var(--bg-main);
	border: 1px solid var(--border-subtle);
	padding: 0.75rem;
	color: var(--text-primary);
	font-family: var(--font-mono);
	font-size: 0.8rem;
	outline: none;
}

.full-width {
	width: 100%;
}

@media (max-width: 1200px) {
	.dashboard-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.content-card.large,
	.content-card {
		grid-column: span 2;
	}
}

@media (max-width: 768px) {
	.dashboard-sidebar {
		width: 60px;
	}

	.sidebar-header .logo-text,
	.sidebar-link span,
	.sidebar-footer .user-meta {
		display: none;
	}

	.sidebar-link {
		padding: 1rem;
		justify-content: center;
	}

	.sidebar-link i {
		font-size: 1.2rem;
		margin: 0;
	}

	.dashboard-content {
		padding: 1.5rem;
	}
}

/* Contact Page Specific Styles */
.contact-page {
	padding-top: 4rem;
}

.contact-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 4rem 2rem 8rem;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.contact-header {
	margin-bottom: 4rem;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.info-group {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.info-label {
	font-family: var(--font-dot);
	font-size: 0.75rem;
	color: var(--text-tertiary);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.info-value {
	font-family: var(--font-mono);
	font-size: 1.1rem;
	color: var(--text-primary);
}

.info-value a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.info-value a:hover {
	color: var(--accent-spiny);
}

.contact-form-wrapper {
	background-color: var(--bg-surface);
	border: 1px dotted var(--border-focus);
	padding: 3rem;
	position: relative;
}

.contact-form-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 15px;
	height: 15px;
	border-top: 2px solid var(--accent-spiny);
	border-left: 2px solid var(--accent-spiny);
}

.contact-form-wrapper::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 15px;
	height: 15px;
	border-bottom: 2px solid var(--accent-spiny);
	border-right: 2px solid var(--accent-spiny);
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.contact-form .form-group {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.contact-form label {
	font-family: var(--font-dot);
	font-size: 0.7rem;
	color: var(--text-tertiary);
	letter-spacing: 0.05em;
}

.contact-form .input-wrapper {
	position: relative;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	background-color: var(--bg-main);
	border: 1px solid var(--border-subtle);
	padding: 0.75rem 1rem;
	color: var(--text-primary);
	font-family: var(--font-mono);
	font-size: 0.9rem;
	border-radius: 0;
	transition: all 0.2s ease;
}

.contact-form textarea {
	min-height: 150px;
	resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--accent-spiny);
	background-color: var(--bg-surface-hover);
}

.contact-form .input-glow {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background-color: var(--accent-spiny);
	transition: width 0.3s ease;
}

.contact-form input:focus + .input-glow,
.contact-form textarea:focus + .input-glow {
	width: 100%;
}

.submit-container {
	margin-top: 1rem;
	display: flex;
	justify-content: flex-start;
}

.contact-submit-btn {
	padding: 1rem 3rem;
	font-weight: 700;
}

@media (max-width: 968px) {
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 4rem;
	}

	.form-row {
		grid-template-columns: 1fr;
	}
}

/* News Page Styles */
.news-page {
	background-color: var(--bg-main);
}

.news-hero {
	padding: 8rem 0 4rem;
	border-bottom: 1px dotted #333;
	text-align: center;
}

.news-hero-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 2rem;
}

.news-grid-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 4rem 2rem;
}

/* Featured News Card */
.featured-news-card {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	border: 1px dotted #333;
	margin-bottom: 4rem;
	overflow: hidden;
}

.featured-news-img {
	height: 400px;
	border-right: 1px dotted #333;
}

.featured-news-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(0.2) contrast(1.1);
}

.featured-news-content {
	padding: 3rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: #050505;
}

.news-meta {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
	font-family: 'Space Mono', monospace;
	font-size: 0.75rem;
}

.news-tag {
	color: var(--brand-orange);
	font-weight: 700;
	letter-spacing: 0.05em;
}

.news-date {
	color: #666;
}

.featured-news-title {
	font-family: 'Chakra Petch', sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	color: #fff;
	text-transform: uppercase;
}

.featured-news-excerpt {
	color: #aaa;
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 2rem;
}

/* News Grid */
.news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.news-card {
	border: 1px dotted #333;
	background-color: #050505;
	display: flex;
	flex-direction: column;
}

.news-card-img {
	height: 200px;
	border-bottom: 1px dotted #333;
}

.news-card-img img,
.placeholder-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-card-content {
	padding: 2rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.news-card-title {
	font-family: 'Chakra Petch', sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #fff;
}

.news-card-excerpt {
	color: #888;
	font-size: 0.9rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	flex-grow: 1;
}

.read-more {
	font-family: 'Space Mono', monospace;
	font-size: 0.75rem;
	color: var(--brand-orange);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	transition: gap 0.2s;
}

.read-more:hover {
	gap: 0.75rem;
}

/* Responsive News */
@media (max-width: 992px) {
	.featured-news-card {
		grid-template-columns: 1fr;
	}

	.featured-news-img {
		border-right: none;
		border-bottom: 1px dotted #333;
	}

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

@media (max-width: 768px) {
	.news-grid {
		grid-template-columns: 1fr;
	}

	.featured-news-title {
		font-size: 1.75rem;
	}
}

/* Blog Page Styles */
.blog-page {
	background-color: var(--bg-main);
}

.blog-hero {
	padding: 8rem 0 4rem;
	border-bottom: 1px dotted #333;
	background: radial-gradient(circle at 50% 150%, #111, #000);
}

.blog-hero-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 2rem;
	text-align: center;
}

.blog-content-section {
	max-width: 1000px;
	margin: 0 auto;
	padding: 4rem 2rem;
}

.blog-filters {
	display: flex;
	gap: 1rem;
	margin-bottom: 4rem;
	justify-content: center;
	flex-wrap: wrap;
}

.filter-btn {
	background: none;
	border: 1px dotted #333;
	color: #666;
	padding: 0.5rem 1.25rem;
	font-family: 'Space Mono', monospace;
	font-size: 0.75rem;
	cursor: pointer;
	transition: all 0.2s;
}

.filter-btn:hover {
	border-color: #666;
	color: #999;
}

.filter-btn.active {
	border-color: var(--brand-orange);
	color: var(--brand-orange);
	background-color: rgba(255, 60, 4, 0.05);
}

.blog-list {
	display: flex;
	flex-direction: column;
	gap: 4rem;
}

.blog-post-card {
	display: grid;
	grid-template-columns: 350px 1fr;
	gap: 3rem;
	align-items: start;
	border-bottom: 1px dotted #222;
	padding-bottom: 4rem;
}

.blog-post-card:last-child {
	border-bottom: none;
}

.blog-post-img {
	height: 250px;
	border: 1px dotted #333;
	overflow: hidden;
}

.blog-post-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(0.5);
	transition: filter 0.3s;
}

.blog-post-card:hover .blog-post-img img {
	filter: grayscale(0);
}

.blog-placeholder {
	width: 100%;
	height: 100%;
}

.tech-gradient {
	background: linear-gradient(135deg, #050505 25%, #111 25%, #111 50%, #050505 50%, #050505 75%, #111 75%, #111 100%);
	background-size: 40px 40px;
}

.circuit-pattern {
	background-color: #050505;
	background-image: radial-gradient(#222 1px, transparent 1px);
	background-size: 20px 20px;
}

.blog-post-content {
	display: flex;
	flex-direction: column;
}

.blog-meta {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
	font-family: 'Space Mono', monospace;
	font-size: 0.75rem;
}

.blog-category {
	color: var(--brand-orange);
	font-weight: 700;
}

.blog-dot {
	width: 4px;
	height: 4px;
	background-color: #333;
	border-radius: 50%;
}

.blog-read-time {
	color: #666;
}

.blog-post-title {
	font-family: 'Chakra Petch', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	color: #fff;
	text-transform: uppercase;
}

.blog-post-excerpt {
	color: #999;
	font-size: 1.05rem;
	line-height: 1.6;
	margin-bottom: 2rem;
}

.blog-author {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
}

.author-info {
	display: flex;
	flex-direction: column;
}

.author-name {
	font-family: 'Space Mono', monospace;
	font-size: 0.8rem;
	color: #fff;
	font-weight: 700;
}

.author-role {
	font-family: 'Space Mono', monospace;
	font-size: 0.65rem;
	color: #666;
}

@media (max-width: 992px) {
	.blog-post-card {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.blog-post-img {
		height: 300px;
	}
}

@media (max-width: 768px) {
	.blog-post-title {
		font-size: 1.5rem;
	}
}

/* Updates Page Styles */
.updates-page {
	background-color: var(--bg-main);
}

.updates-hero {
	padding: 8rem 0 4rem;
	border-bottom: 1px dotted #333;
	text-align: center;
}

.updates-hero-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 2rem;
}

.changelog-section {
	max-width: 900px;
	margin: 0 auto;
	padding: 6rem 2rem;
}

.timeline {
	position: relative;
}

.timeline::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 140px;
	width: 1px;
	background: repeating-linear-gradient(to bottom, #333, #333 4px, transparent 4px, transparent 8px);
}

.timeline-item {
	display: flex;
	margin-bottom: 6rem;
	position: relative;
}

.timeline-item:last-child {
	margin-bottom: 0;
}

.timeline-date {
	width: 120px;
	flex-shrink: 0;
	font-family: 'Space Mono', monospace;
	font-size: 0.85rem;
	color: #888;
	padding-top: 1.5rem;
	text-align: right;
	padding-right: 20px;
}

.timeline-marker {
	width: 40px;
	position: relative;
	display: flex;
	justify-content: center;
	padding-top: 1.5rem;
	z-index: 2;
}

.marker-core {
	width: 12px;
	height: 12px;
	background-color: #000;
	border: 2px solid #555;
	border-radius: 50%;
}

.major .marker-core {
	border-color: var(--brand-orange);
	background-color: var(--brand-orange);
}

.beta .marker-core {
	border-color: #00ffcc;
}

.marker-pulse {
	position: absolute;
	top: 1.5rem;
	left: 50%;
	transform: translate(-50%, -2px);
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background-color: rgba(255, 60, 4, 0.2);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		transform: translate(-50%, -2px) scale(0.8);
		opacity: 1;
	}

	100% {
		transform: translate(-50%, -2px) scale(1.5);
		opacity: 0;
	}
}

.timeline-content {
	flex-grow: 1;
	padding-left: 2rem;
}

.update-card {
	border: 1px dotted #333;
	background-color: #050505;
	border-radius: 0;
	overflow: hidden;
}

.major-update {
	border-color: rgba(255, 60, 4, 0.3);
}

.beta-update {
	border-color: rgba(0, 255, 204, 0.2);
}

.update-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.5rem 2rem;
	border-bottom: 1px dotted #222;
	background-color: #0a0a0a;
}

.update-version {
	font-family: 'Chakra Petch', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
}

.update-badge {
	font-family: 'Space Mono', monospace;
	font-size: 0.65rem;
	padding: 0.25rem 0.5rem;
	background-color: #222;
	color: #aaa;
	border-radius: 2px;
	letter-spacing: 0.05em;
}

.major-update .update-badge {
	background-color: rgba(255, 60, 4, 0.1);
	color: var(--brand-orange);
	border: 1px solid rgba(255, 60, 4, 0.3);
}

.beta-update .update-badge {
	background-color: rgba(0, 255, 204, 0.1);
	color: #00ffcc;
	border: 1px solid rgba(0, 255, 204, 0.3);
}

.update-hero-img {
	height: 200px;
	border-bottom: 1px dotted #333;
}

.update-hero-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(0.2);
}

.update-title {
	font-family: 'Chakra Petch', sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: #fff;
	padding: 2rem 2rem 0;
	margin: 0;
}

.update-body {
	padding: 1.5rem 2rem 2rem;
	color: #999;
	line-height: 1.6;
}

.update-body p {
	margin-bottom: 1.5rem;
}

.changelog-list {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem 0;
}

.changelog-list li {
	margin-bottom: 0.75rem;
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	font-size: 0.95rem;
}

.changelog-list .badge {
	font-family: 'Space Mono', monospace;
	font-size: 0.6rem;
	padding: 0.1rem 0.4rem;
	border-radius: 2px;
	flex-shrink: 0;
	width: 65px;
	text-align: center;
	margin-top: 0.2rem;
}

.badge.new {
	background-color: rgba(0, 255, 128, 0.1);
	color: #00ff80;
	border: 1px solid rgba(0, 255, 128, 0.3);
}

.badge.impr {
	background-color: rgba(50, 150, 255, 0.1);
	color: #3296ff;
	border: 1px solid rgba(50, 150, 255, 0.3);
}

.badge.fix {
	background-color: rgba(255, 60, 4, 0.1);
	color: var(--brand-orange);
	border: 1px solid rgba(255, 60, 4, 0.3);
}

.badge.deprec {
	background-color: rgba(255, 200, 0, 0.1);
	color: #ffc800;
	border: 1px solid rgba(255, 200, 0, 0.3);
}

.update-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

@media (max-width: 768px) {
	.timeline::before {
		left: 20px;
	}

	.timeline-item {
		flex-direction: column;
	}

	.timeline-date {
		width: auto;
		text-align: left;
		padding: 0 0 0 45px;
		margin-bottom: 0.5rem;
	}

	.timeline-marker {
		position: absolute;
		left: 0;
		top: 1.7rem;
		width: 40px;
		padding: 0;
	}

	.timeline-content {
		padding-left: 45px;
	}

	.update-hero-img {
		height: 150px;
	}
}

/* Forum Page Styles */
.forum-page {
	background-color: #000;
}

.forum-hero {
	position: relative;
	padding: 8rem 0 4rem;
	border-bottom: 1px dotted #333;
	overflow: hidden;
}

.forum-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0.15;
	z-index: 0;
}

.forum-hero-content {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 2rem;
	text-align: center;
	z-index: 1;
}

.forum-search {
	display: flex;
	margin-top: 3rem;
	position: relative;
	background: #050505;
	border: 1px dotted #444;
	padding: 0.5rem;
}

.forum-search i {
	position: absolute;
	left: 1.5rem;
	top: 50%;
	transform: translateY(-50%);
	color: #666;
}

.forum-search input {
	flex-grow: 1;
	background: transparent;
	border: none;
	color: #fff;
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.9rem;
	padding: 0.75rem 0.75rem 0.75rem 3rem;
}

.forum-search input:focus {
	outline: none;
}

.forum-main-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 4rem 2rem;
}

.forum-layout {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 4rem;
	align-items: start;
}

.category-group {
	margin-bottom: 4rem;
}

.category-group-title {
	font-family: 'Space Mono', monospace;
	font-size: 0.85rem;
	color: var(--brand-orange);
	letter-spacing: 0.1em;
	border-bottom: 1px dotted #333;
	padding-bottom: 1rem;
	margin-bottom: 1.5rem;
}

.forum-category-card {
	display: grid;
	grid-template-columns: 50px 1fr 150px 250px;
	gap: 1.5rem;
	align-items: center;
	padding: 1.5rem;
	background-color: #050505;
	border: 1px dotted #222;
	margin-bottom: 1rem;
	transition: border-color 0.2s;
}

.forum-category-card:hover {
	border-color: #444;
}

.cat-icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #111;
	color: #fff;
	font-size: 1.2rem;
	border-radius: 4px;
	border: 1px dotted #333;
}

.cat-details h3 {
	font-family: 'Chakra Petch', sans-serif;
	font-size: 1.2rem;
	margin: 0 0 0.5rem 0;
}

.cat-details h3 a {
	color: #fff;
	text-decoration: none;
}

.cat-details p {
	margin: 0;
	color: #888;
	font-size: 0.9rem;
}

.cat-stats {
	display: flex;
	gap: 1.5rem;
}

.cat-stats .stat {
	display: flex;
	flex-direction: column;
}

.cat-stats .val {
	font-weight: 700;
	color: #fff;
}

.cat-stats .lbl {
	font-family: 'Space Mono', monospace;
	font-size: 0.6rem;
	color: #666;
}

.cat-latest {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.avatar {
	width: 32px;
	height: 32px;
	background-color: #222;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Space Mono', monospace;
	font-weight: 700;
	border-radius: 50%;
	flex-shrink: 0;
}

.avatar.staff {
	background-color: var(--brand-orange);
}

.latest-info {
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.latest-info a {
	color: #fff;
	text-decoration: none;
	font-size: 0.85rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 0.2rem;
}

.latest-info a:hover {
	text-decoration: underline;
}

.latest-info span {
	font-size: 0.75rem;
	color: #777;
}

.latest-info em {
	font-style: normal;
	color: #aaa;
}

/* Sidebar Styles */
.sidebar-widget {
	border: 1px dotted #333;
	padding: 1.5rem;
	background-color: #050505;
	margin-bottom: 2rem;
}

.widget-title {
	font-family: 'Space Mono', monospace;
	font-size: 0.8rem;
	color: #fff;
	letter-spacing: 0.05em;
	border-bottom: 1px dotted #333;
	padding-bottom: 0.75rem;
	margin-bottom: 1rem;
	margin-top: 0;
}

.widget-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.widget-list li {
	margin-bottom: 1rem;
	display: flex;
	flex-direction: column;
}

.widget-list li:last-child {
	margin-bottom: 0;
}

.widget-list a {
	color: var(--brand-orange);
	text-decoration: none;
	font-size: 0.9rem;
	margin-bottom: 0.2rem;
}

.widget-list span {
	font-family: 'Space Mono', monospace;
	font-size: 0.65rem;
	color: #666;
}

.stats-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.stat-box {
	text-align: center;
	padding: 1rem 0;
	background: #111;
	border: 1px dotted #222;
}

.stat-num {
	font-family: 'Chakra Petch', sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: #fff;
}

.stat-label {
	font-family: 'Space Mono', monospace;
	font-size: 0.6rem;
	color: #888;
	margin-top: 0.25rem;
}

@media (max-width: 1200px) {
	.forum-category-card {
		grid-template-columns: 50px 1fr 120px 200px;
		gap: 1rem;
	}
}

@media (max-width: 992px) {
	.forum-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.forum-category-card {
		grid-template-columns: 1fr;
		padding: 1.5rem;
	}

	.cat-icon {
		display: none;
	}

	.cat-stats {
		margin: 1rem 0;
		border-top: 1px dotted #222;
		border-bottom: 1px dotted #222;
		padding: 0.75rem 0;
	}

	.forum-search {
		flex-direction: column;
		background: transparent;
		border: none;
		padding: 0;
		gap: 0.5rem;
	}

	.forum-search input {
		width: 100%;
		border: 1px dotted #444;
		background: #050505;
	}

	.forum-search .btn {
		width: 100%;
	}
}

/* Enterprise Page Styles */
.enterprise-page {
	background-color: var(--bg-main);
}

.ent-hero {
	position: relative;
	padding: 10rem 0 6rem;
	overflow: hidden;
}

.ent-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0.15;
	z-index: 0;
}

.ent-hero-content {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 2rem;
	text-align: center;
	z-index: 1;
}

.ent-hero-content .hero-title {
	font-size: 5rem;
	margin-bottom: 2rem;
}

.ent-partners {
	padding: 3rem 0;
	background: #030303;
	overflow: hidden;
}

.partners-title {
	text-align: center;
	font-family: 'Space Mono', monospace;
	font-size: 0.75rem;
	color: #666;
	letter-spacing: 0.15em;
	margin-bottom: 2rem;
}

.partners-carousel {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.carousel-track {
	display: flex;
	width: calc(150px * 14);
	animation: scrollBanner 20s linear infinite;
	gap: 3rem;
	padding: 0 1rem;
}

.partner-logo {
	font-family: 'Bitcount Single', sans-serif;
	font-size: 1.5rem;
	color: #444;
	white-space: nowrap;
	display: flex;
	align-items: center;
	transition: color 0.3s ease;
}

.partner-logo:hover {
	color: #fff;
}

@keyframes scrollBanner {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(calc(-150px * 7 - 3rem * 7));
	}
}

.ent-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 6rem 2rem;
}

.section-header-left {
	max-width: 600px;
	margin-bottom: 4rem;
}

.ent-feature-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
}

.ent-feature-card {
	background: #050505;
	border: 1px dotted #333;
	padding: 3rem;
	transition: all 0.3s ease;
}

.ent-feature-card:hover {
	border-color: var(--brand-orange);
	transform: translateY(-5px);
}

.ent-icon {
	color: var(--brand-orange);
	font-size: 2rem;
	margin-bottom: 1.5rem;
}

.ent-feature-card h3 {
	font-family: 'Chakra Petch', sans-serif;
	font-size: 1.5rem;
	color: #fff;
	margin-bottom: 1rem;
}

.ent-feature-card p {
	color: #888;
	line-height: 1.7;
	margin: 0;
}

.ent-stat-box {
	background: #050505;
	border: 1px solid #222;
	padding: 2rem;
}

.stat-big {
	font-family: 'Space Mono', monospace;
	font-size: 3rem;
	color: var(--brand-orange);
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.stat-lbl {
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.8rem;
	color: #aaa;
	margin-bottom: 1.5rem;
}

.stat-bar {
	width: 100%;
	height: 4px;
	background: #222;
	border-radius: 2px;
	overflow: hidden;
}

.stat-fill {
	height: 100%;
	background: var(--brand-orange);
}

@media (max-width: 1024px) {
	.ent-hero-content .hero-title {
		font-size: 4rem;
	}
}

@media (max-width: 768px) {
	.ent-hero-content .hero-title {
		font-size: 3rem;
	}

	.ent-feature-grid {
		grid-template-columns: 1fr;
	}

	.ent-feature-card {
		padding: 2rem;
	}
}

/* Enterprise Additional Sections */
.case-study-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.case-study-card {
	background: #050505;
	border: 1px dotted #333;
	padding: 3rem;
	display: flex;
	flex-direction: column;
}

.company-logo {
	font-family: 'Bitcount Single', sans-serif;
	font-size: 1.5rem;
	color: #fff;
	margin-bottom: 2rem;
}

.case-stat {
	font-family: 'Chakra Petch', sans-serif;
	font-size: 1.25rem;
	color: var(--brand-orange);
	margin-bottom: 1rem;
	font-weight: 700;
}

.case-desc {
	font-size: 0.95rem;
	color: #999;
	font-style: italic;
	margin-bottom: 2rem;
	flex-grow: 1;
}

.case-link {
	font-family: 'Space Mono', monospace;
	font-size: 0.8rem;
	color: #fff;
	text-decoration: none;
	letter-spacing: 0.05em;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	transition: color 0.3s ease;
}

.case-link:hover {
	color: var(--brand-orange);
}

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

.testimonial-card {
	background: #030303;
	border: 1px dotted #222;
	padding: 2rem;
}

.test-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.test-user {
	display: flex;
	flex-direction: column;
}

.test-user strong {
	font-family: 'JetBrains Mono', monospace;
	color: #fff;
	font-size: 0.9rem;
}

.test-user span {
	font-family: 'Space Mono', monospace;
	font-size: 0.7rem;
	color: #666;
}

.testimonial-card p {
	color: #888;
	font-size: 0.9rem;
	line-height: 1.6;
}

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

.faq-item {
	border-bottom: 1px dotted #333;
}

.faq-item details {
	padding: 1.5rem 0;
	cursor: pointer;
}

.faq-item summary {
	font-family: 'Chakra Petch', sans-serif;
	font-size: 1.2rem;
	color: #fff;
	font-weight: 500;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: '+';
	font-family: 'Space Mono', monospace;
	color: var(--brand-orange);
}

.faq-item details[open] summary::after {
	content: '-';
}

.faq-content {
	font-family: var(--font-mono);
	font-size: 0.8rem;
	color: #ccc;
}

.inspector-row .val {
	color: #fff;
}

.inspector-row .val.success {
	color: #4ade80;
}

@media (max-width: 1024px) {

	.case-study-grid,
	.testimonial-grid {
		grid-template-columns: 1fr;
	}

	.primary-block {
		flex-direction: column;
	}

	.rc-secondary-grid {
		grid-template-columns: 1fr;
	}
}

/* SpinyRC Specific Styles */
.rc-features-layout {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	padding-bottom: 4rem;
}

.rc-feature-block {
	background: #070707;
	border: 1px dotted #333;
	padding: 2.5rem;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}

.primary-block {
	flex-direction: row;
	gap: 4rem;
	align-items: center;
}

.rc-feature-content {
	flex: 1;
	z-index: 2;
}

.rc-feature-badge {
	font-family: var(--font-dot);
	font-size: 0.75rem;
	color: var(--accent-spiny);
	background: var(--accent-bg);
	padding: 0.25rem 0.5rem;
	display: inline-block;
	margin-bottom: 1rem;
	border: 1px solid rgba(234, 179, 8, 0.2);
}

.rc-feature-content h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.rc-feature-content p {
	color: #999;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.rc-feature-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.rc-feature-list li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-family: var(--font-mono);
	font-size: 0.85rem;
	color: #bbb;
}

.rc-feature-list li i {
	color: var(--accent-spiny);
}

.rc-feature-visual {
	flex: 1;
	border: 1px solid #222;
	background: #000;
	border-radius: 4px;
	padding: 1.5rem;
	height: 100%;
	min-height: 200px;
	display: flex;
	flex-direction: column;
}

.rc-secondary-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.ai-chat-mockup {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	font-family: var(--font-mono);
	font-size: 0.8rem;
}

.ai-msg {
	padding: 1rem;
	border-radius: 4px;
	max-width: 90%;
}

.ai-msg.user {
	background: #111;
	border: 1px solid #333;
	align-self: flex-end;
	color: #ddd;
}

.ai-msg.spiny {
	background: var(--accent-bg);
	border: 1px solid rgba(234, 179, 8, 0.2);
	align-self: flex-start;
}

.ai-msg.spiny pre {
	background: transparent;
	padding: 0;
	margin: 0;
	border: none;
}

.mock-graph {
	display: flex;
	align-items: flex-end;
	gap: 0.5rem;
	height: 150px;
	padding-top: 2rem;
}

.mock-graph .bar {
	flex: 1;
	background: #333;
	transition: height 0.5s ease;
}

.mock-graph .bar.warn {
	background: #eab308;
}

.mini-term {
	font-family: var(--font-mono);
	font-size: 0.8rem;
	color: #777;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.mini-term .success {
	color: #4ade80;
}

.rc-dashboard-preview {
	padding: 4rem 0;
}

.dashboard-mockup {
	max-width: 1000px;
	margin: 0 auto;
	border: 1px solid #333;
	background: #000;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.dash-top-bar {
	background: #111;
	border-bottom: 1px solid #222;
	padding: 0.75rem 1rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	font-family: var(--font-dot);
	font-size: 0.7rem;
}

.dash-status-indicator {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #4ade80;
	box-shadow: 0 0 8px #4ade80;
}

.dash-target {
	color: #fff;
	flex: 1;
}

.dash-metrics {
	display: flex;
	gap: 1rem;
	color: var(--accent-spiny);
}

.dash-body {
	display: flex;
	height: 400px;
}

.dash-sidebar {
	width: 48px;
	background: #050505;
	border-right: 1px solid #222;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 1rem;
	gap: 1.5rem;
}

.dash-nav-item {
	color: #555;
	cursor: pointer;
}

.dash-nav-item.active {
	color: #fff;
}

.dash-main {
	flex: 1;
	display: flex;
}

.dash-code {
	flex: 2;
	padding: 1.5rem;
	font-size: 0.85rem;
}

.dash-code pre {
	background: transparent;
	border: none;
	padding: 0;
}

.dash-inspector {
	flex: 1;
	border-left: 1px solid #222;
	background: #0a0a0a;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.inspector-header {
	font-family: var(--font-dot);
	font-size: 0.7rem;
	color: #888;
	margin-bottom: 0.5rem;
}

/* ── Extensions Marketplace ── */
.extensions-header {
	max-width: 1200px;
	margin: 0 auto;
	padding: 4rem 2rem 2rem;
}

.extensions-search-bar {
	display: flex;
	gap: 0;
	max-width: 600px;
	margin: 2rem 0;
}

.extensions-search-bar input {
	flex: 1;
	background: var(--bg-surface);
	border: 1px solid var(--border-focus);
	border-right: none;
	padding: 0.8rem 1.2rem;
	font-family: var(--font-mono);
	font-size: 0.9rem;
	color: var(--text-primary);
	outline: none;
}

.extensions-search-bar input:focus {
	border-color: var(--accent-spiny);
}

.extensions-search-bar .search-btn {
	background: var(--bg-surface);
	border: 1px solid var(--border-focus);
	color: var(--text-secondary);
	padding: 0 1.2rem;
	cursor: pointer;
	transition: all 0.2s;
}

.extensions-search-bar .search-btn:hover {
	color: var(--text-primary);
	border-color: var(--text-primary);
}

.extensions-categories {
	display: flex;
	gap: 1rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.category-tag {
	font-family: var(--font-dot);
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	padding: 0.4rem 1rem;
	border: 1px solid var(--border-subtle);
	color: var(--text-tertiary);
	cursor: pointer;
	transition: all 0.2s;
}

.category-tag:hover,
.category-tag.active {
	border-color: var(--accent-spiny);
	color: var(--accent-spiny);
	background: rgba(234, 179, 8, 0.05);
}

.extensions-grid {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem 6rem;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	gap: 1.5rem;
}

.extension-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	padding: 1.5rem;
	display: flex;
	gap: 1.25rem;
	transition: all 0.2s;
	cursor: pointer;
	position: relative;
}

.extension-card:hover {
	border-color: var(--border-focus);
	background: var(--bg-surface-hover);
}

.ext-icon {
	width: 48px;
	height: 48px;
	background: var(--bg-main);
	border: 1px solid var(--border-subtle);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.ext-icon img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.ext-info {
	flex: 1;
	min-width: 0;
}

.ext-name {
	font-family: var(--font-dot);
	font-size: 0.9rem;
	color: var(--text-primary);
	margin-bottom: 0.2rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ext-publisher {
	font-family: var(--font-mono);
	font-size: 0.7rem;
	color: var(--accent-spiny);
	margin-bottom: 0.5rem;
}

.ext-desc {
	font-family: var(--font-sans);
	font-size: 0.8rem;
	color: var(--text-tertiary);
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	height: 2.24rem;
	/* 1.4 * 0.8 * 2 */
}

.ext-stats {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
	font-family: var(--font-mono);
	font-size: 0.7rem;
	color: var(--text-tertiary);
}

.ext-stats span {
	display: flex;
	align-items: center;
	gap: 0.3rem;
}

/* --- Premium IDE Scrollbar Styles --- */
.spiny-scrollbar::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

.spiny-scrollbar::-webkit-scrollbar-corner {
	background-color: transparent;
}

.spiny-scrollbar::-webkit-scrollbar-thumb {
	background-color: var(--border-focus);
	border-radius: 10px;
	border: 2px solid transparent;
	background-clip: content-box;
}

.spiny-scrollbar::-webkit-scrollbar-thumb:hover {
	background-color: var(--accent-spiny);
}

.spiny-scrollbar::-webkit-scrollbar-track {
	background: transparent;
}

/* Modal / Detailed View */
.ext-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(8px);
	z-index: 1000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

.ext-modal.open {
	display: flex;
}

.modal-content {
	background: var(--bg-main);
	border: 1px solid var(--border-focus);
	width: 100%;
	max-width: 1000px;
	height: 85vh;
	display: flex;
	flex-direction: column;
	position: relative;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
	overflow: hidden;
}

.modal-close {
	position: absolute;
	top: 1rem;
	right: 1.5rem;
	background: none;
	border: none;
	color: var(--text-tertiary);
	font-size: 1.5rem;
	cursor: pointer;
	z-index: 10;
	transition: color 0.2s;
}

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

.modal-header {
	display: flex;
	gap: 2rem;
	padding: 2.5rem 2rem 1.5rem 2rem;
	background: linear-gradient(to bottom, rgba(234, 179, 8, 0.05), transparent);
}

.modal-icon {
	width: 100px;
	height: 100px;
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.modal-icon img {
	width: 70px;
	height: 70px;
}

.modal-title-area {
	flex: 1;
}

.modal-title-area h2 {
	font-size: 1.75rem;
	margin-bottom: 0.25rem;
	color: var(--text-primary);
}

.modal-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem 1.5rem;
	margin-top: 1rem;
	max-width: 100%;
	font-family: var(--font-mono);
	font-size: 0.75rem;
	color: var(--text-tertiary);
}

.modal-meta span {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

/* Tabs System */
.modal-tabs {
	display: flex;
	padding: 0 2rem;
	border-bottom: 1px solid var(--border-subtle);
	gap: 2rem;
	background: var(--bg-main);
}

.modal-tab {
	padding: 0.75rem 0;
	font-family: var(--font-dot);
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	color: var(--text-tertiary);
	cursor: pointer;
	position: relative;
	transition: all 0.2s;
}

.modal-tab:hover {
	color: var(--text-primary);
}

.modal-tab.active {
	color: var(--accent-spiny);
}

.modal-tab.active::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--accent-spiny);
}

/* Body Layout */
.modal-body-container {
	flex: 1;
	display: grid;
	grid-template-columns: 1fr 300px;
	overflow: hidden;
}

.modal-main-content {
	padding: 2rem 2rem 2rem 2rem;
	overflow-y: auto;
}

.modal-sidebar {
	padding: 2rem;
	border-left: 1px solid var(--border-subtle);
	background: rgba(255, 255, 255, 0.02);
	overflow-y: auto;
}

.readme-content {
	font-family: var(--font-sans);
	line-height: 1.6;
	color: var(--text-secondary);
	max-width: 100%;
}

.readme-content h3 {
	margin: 2rem 0 1rem;
	font-size: 1.1rem;
	color: var(--text-primary);
	font-family: var(--font-dot);
	letter-spacing: 0.05em;
}

.modal-sidebar-section {
	margin-bottom: 2rem;
}

.sidebar-title {
	font-family: var(--font-dot);
	font-size: 0.7rem;
	color: var(--text-tertiary);
	margin-bottom: 1rem;
	border-bottom: 1px solid var(--border-subtle);
	padding-bottom: 0.4rem;
	letter-spacing: 0.05em;
}

.sidebar-link {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	color: var(--accent-spiny);
	text-decoration: none;
	font-family: var(--font-mono);
	font-size: 0.75rem;
	margin-bottom: 0.6rem;
	opacity: 0.8;
	transition: opacity 0.2s;
}

.sidebar-link:hover {
	opacity: 1;
	text-decoration: underline;
}

/* Extension Detail Technical Elements */
.technical-table {
	margin: 1rem 0;
	border: 1px solid var(--border-subtle);
	background: rgba(0, 0, 0, 0.2);
	width: 100%;
}

.tech-row {
	display: grid;
	grid-template-columns: 200px 1fr;
	padding: 0.6rem 1rem;
	border-bottom: 1px solid var(--border-subtle);
	font-size: 0.85rem;
	align-items: center;
}

.tech-row:last-child {
	border-bottom: none;
}

.tech-row.header {
	background: rgba(234, 179, 8, 0.05);
	color: var(--accent-spiny);
	font-family: var(--font-dot);
	font-size: 0.65rem;
	letter-spacing: 0.1em;
}

.tech-code {
	font-family: var(--font-mono);
	color: var(--accent-spiny);
	background: rgba(234, 179, 8, 0.08);
	padding: 0.2rem 0.5rem;
	border-radius: 3px;
	font-size: 0.75rem;
	width: fit-content;
}

.event-capsules {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin: 1rem 0 2.5rem;
}

.event-capsule {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	padding: 0.3rem 0.7rem;
	font-family: var(--font-mono);
	font-size: 0.75rem;
	color: var(--text-secondary);
	border-radius: 4px;
}

.event-capsule.os {
	border-color: rgba(16, 185, 129, 0.3);
	color: #10b981;
}

.version-selector {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: transparent;
	border: 1px solid var(--border-subtle);
	padding: 0.1rem 0.5rem;
	border-radius: 4px;
	color: var(--text-secondary);
	font-family: var(--font-mono);
	font-size: 0.75rem;
	height: 26px;
	position: relative;
	transition: border-color 0.2s, color 0.2s;
}

.version-selector:hover {
	border-color: var(--border-focus);
	color: var(--text-primary);
}

.version-selector:focus-within {
	border-color: var(--accent-spiny);
	color: var(--accent-spiny);
}

.version-selector select {
	background: transparent;
	border: none;
	color: inherit;
	font-family: inherit;
	font-size: inherit;
	cursor: pointer;
	outline: none;
	padding-right: 1.2rem;
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236e6e6a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right center;
	padding-left: 0.2rem;
}

.version-selector:hover select,
.version-selector:focus-within select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ededeb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.version-selector:focus-within select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23eab308' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.version-selector select option {
	background: var(--bg-surface);
	color: var(--text-primary);
}

.readme-content h3 {
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	font-family: var(--font-dot);
	font-size: 0.85rem;
	color: var(--text-tertiary);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.readme-content p {
	line-height: 1.6;
	color: var(--text-secondary);
}

.ext-icon i.fa-puzzle-piece,
.modal-icon i.fa-puzzle-piece {
	color: var(--accent-spiny);
	filter: drop-shadow(0 0 10px rgba(234, 179, 8, 0.2));
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	margin: 0;
	padding: 0;
}

/* Global Language Switcher */
.language-switcher {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background-color: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	padding: 0.4rem 0.8rem;
	border-radius: 4px;
	transition: all 0.2s ease;
}

/* Sidebar Specific Override */
.dashboard-sidebar .language-switcher {
	background-color: transparent;
	border: 1px solid transparent;
	width: calc(100% - 1rem);
	margin: 0 0.5rem;
	justify-content: flex-start;
	padding: 0.75rem 0.5rem;
	color: var(--text-secondary);
	border-radius: 6px;
}

.dashboard-sidebar .language-switcher:hover {
	background-color: var(--bg-surface-hover);
	color: var(--text-primary);
}

.dashboard-sidebar .language-switcher i {
	font-size: 1.1rem;
	width: 24px;
	text-align: center;
	opacity: 0.8;
}

.dashboard-sidebar .lang-select {
	width: 100%;
	font-weight: 500;
	font-size: 0.85rem;
	font-family: var(--font-sans);
	color: inherit !important;
	background-color: transparent !important;
}

.language-switcher:hover {
	border-color: var(--accent-spiny);
	box-shadow: 0 0 10px rgba(234, 179, 8, 0.1);
}

.language-switcher i {
	font-size: 0.8rem;
}

.language-switcher select {
	background: transparent !important;
	border: none !important;
	color: inherit !important;
	font-family: inherit !important;
	font-size: inherit !important;
	cursor: pointer;
	outline: none !important;
	padding-right: 1.2rem;
	appearance: none !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23eab308' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: right center !important;
	padding-left: 0.1rem;
}

/* Auth Minimal Footer */
.auth-minimal-footer {
	max-width: 100%;
	padding: 2rem 0 !important;
	border-top: none !important;
	background: transparent;
}

.auth-minimal-footer .footer-bottom {
	margin: 0 auto;
	padding-top: 0;
	border-top: none;
	width: 100%;
	max-width: 1200px;
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	gap: 2rem;
}

/* Auth Fallback Box */
.auth-fallback-box {
	background: rgba(0, 0, 0, 0.4);
	border: 1px dashed var(--border-focus) !important;
	margin-top: 1.5rem !important;
	animation: fadeIn 0.5s ease-out;
}

.auth-fallback-box p {
	font-family: var(--font-mono);
	font-size: 0.7rem !important;
}

.auth-fallback-box input {
	cursor: text !important;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}
