/**
 * Qylos — DAW-style dark theme
 * Professional dark palette for audio app landing
 */

/* ============================================
   CSS Variables — DAW Dark Theme
   ============================================ */
:root {
	--daw-bg-dark: #0d1117;
	--daw-bg-panel: #161b22;
	--daw-bg-elevated: #21262d;
	--daw-border: #30363d;
	--daw-text: #e6edf3;
	--daw-text-muted: #8b949e;
	--daw-accent-blue: #58a6ff;
	--daw-accent-gold: #d4a012;
	--daw-accent-purple: #6e7681;
	--daw-cta-primary: #d4a012;
	--daw-cta-secondary: rgba(110, 118, 129, 0.4);
	--daw-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	--header-height: 88px;
	--container-max: 1400px;
	--radius: 6px;
	--transition: 0.25s ease;
}

/* ============================================
   Reset & Base
   ============================================ */
html {
	scroll-behavior: smooth;
}

body.qylos-theme {
	background-color: var(--daw-bg-dark);
	color: var(--daw-text);
	font-family: var(--daw-font);
	line-height: 1.6;
	margin: 0;
	min-height: 100vh;
}

.qylos-theme a {
	color: var(--daw-accent-blue);
	text-decoration: none;
	transition: color var(--transition);
}

.qylos-theme a:hover {
	color: var(--daw-text);
}

/* ============================================
   Site wrapper & DAW blur background
   ============================================ */
.site.qylos-site {
	position: relative;
	min-height: 100vh;
}

.qylos-daw-bg {
	position: fixed;
	inset: 0;
	z-index: -1;
	background: var(--daw-bg-dark);
	overflow: hidden;
}

.qylos-daw-bg::before {
	content: '';
	position: absolute;
	inset: -20%;
	background-image:
		linear-gradient(180deg, transparent 0%, rgba(22, 27, 34, 0.6) 100%),
		repeating-linear-gradient(0deg,
			transparent,
			transparent 2px,
			rgba(48, 54, 61, 0.15) 2px,
			rgba(48, 54, 61, 0.15) 4px),
		repeating-linear-gradient(90deg,
			transparent,
			transparent 2px,
			rgba(48, 54, 61, 0.08) 2px,
			rgba(48, 54, 61, 0.08) 4px);
	background-size: 100% 100%, 40px 40px, 40px 40px;
	filter: blur(0.5px);
	opacity: 0.7;
}

.qylos-daw-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(88, 166, 255, 0.08), transparent 50%);
	pointer-events: none;
}

/* ============================================
   Full-viewport background (ref: one image fills all)
   ============================================ */
.qylos-viewport-bg {
	position: fixed;
	inset: 0;
	z-index: 0;
	background: var(--qylos-viewport-bg) center / cover no-repeat;
	background-color: var(--daw-bg-dark);
}

.qylos-viewport-bg-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, var(--qylos-viewport-overlay, 0.5));
	pointer-events: none;
}

/* When viewport bg is on: hide default daw bg, transparent header, content above */
.qylos-has-viewport-bg .qylos-daw-bg {
	display: none;
}

.qylos-has-viewport-bg .qylos-header {
	background: transparent;
	backdrop-filter: none;
	border-bottom-color: rgba(255, 255, 255, 0.08);
}

.qylos-has-viewport-bg .qylos-main-content {
	position: relative;
	z-index: 1;
}

/* ============================================
   Large Header
   ============================================ */
.qylos-header {
	position: relative;
	z-index: 100;
	height: var(--header-height);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 2rem;
	max-width: 1400px;
	margin: 0 auto;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	/* Softer divider */
	background: transparent;
	/* Seamless blend */
}

/* Header with background image (ref) */
.qylos-header-has-bg {
	background: var(--qylos-header-bg) center / cover no-repeat;
	backdrop-filter: none;
}

.qylos-header-has-bg .qylos-header-inner {
	position: relative;
	z-index: 1;
}

.qylos-header-bg-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, var(--qylos-header-overlay, 0.6));
	pointer-events: none;
}

.qylos-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
}

.qylos-logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--daw-text);
	letter-spacing: -0.02em;
}

.qylos-logo a {
	color: inherit;
}

.qylos-logo .custom-logo-link {
	display: flex;
	align-items: center;
	color: inherit;
}

.qylos-logo img {
	height: 40px;
	width: auto;
	max-width: 180px;
	object-fit: contain;
}

/* Primary navigation */
.qylos-nav {
	display: flex;
	align-items: center;
	gap: 2.5rem;
}

.qylos-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 2.5rem;
	/* Wider gap for desktop prominence */
}

.qylos-nav a {
	color: var(--daw-text);
	font-weight: 600;
	/* Bolder weight for high-end look */
	font-size: 1.35rem;
	/* Significantly larger as requested */
	letter-spacing: -0.01em;
	padding: 4px 0;
	position: relative;
	transition: color 0.3s ease;
}

.qylos-nav a:hover {
	color: #ff7e22;
	/* Using brand orange for hover prominence */
}

/* Persistent underline for active items and on hover */
.qylos-nav a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 100%;
	height: 2px;
	background: #ff7e22;
	box-shadow: 0 4px 15px rgba(255, 126, 34, 0.4);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.qylos-nav a:hover::after,
.qylos-nav li[class*="current-"]>a::after {
	transform: scaleX(1);
	transform-origin: left;
}

/* Active Highlight for current page in menu */
.qylos-nav li[class*="current-"]>a {
	color: #ff7e22 !important;
}

/* ============================================
   Branding — Hero Title (PROJEKTRA)
   ============================================ */

.brand-title-wrap {
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
	padding: 2.5rem 0;
	overflow: hidden;
}

.brand-title {
	font-family: 'Inter', sans-serif !important;
	font-weight: 900 !important;
	/* Responsive font size: smaller minimum for mobile */
	font-size: clamp(2.2rem, 11vw, 8.2rem) !important;
	letter-spacing: -0.01em !important;
	text-transform: uppercase;
	line-height: 0.9 !important;
	margin: 0 !important;
	position: relative;
	display: inline-block;
	max-width: 100%;
	word-wrap: break-word;

	/* Refined Particle Layer */
	color: transparent;
	background:
		radial-gradient(circle, #fff 1.2px, transparent 1.2px),
		linear-gradient(90deg, #ff7e22, #fff, #ff7e22);
	background-size: 5px 5px, 200% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	animation: flux-glow 8s ease-in-out infinite alternate;
	filter: drop-shadow(0 0 10px rgba(255, 126, 34, 0.15));
}

@media (max-width: 480px) {
	.brand-title {
		letter-spacing: -0.04em !important;
	}

	.brand-status-line {
		letter-spacing: 0.3em !important;
		font-size: 0.6rem !important;
	}
}

@keyframes flux-glow {
	0% {
		background-position: 0% 0%, 0% 0%;
		opacity: 0.8;
	}

	100% {
		background-position: 30px 30px, 100% 0%;
		opacity: 1;
	}
}

/* Internal Shimmer (Subtle) */
.brand-title::before {
	content: 'PROJEKTRA';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: #fff;
	opacity: 0.1;
	z-index: 1;
	animation: shimmer-soft 4s linear infinite;
	pointer-events: none;
}

@keyframes shimmer-soft {

	0%,
	100% {
		opacity: 0.05;
	}

	50% {
		opacity: 0.2;
	}
}

/* Deep Atmosphere Glow */
.brand-title::after {
	content: 'PROJEKTRA';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: #ff7e22;
	z-index: -1;
	filter: blur(25px);
	opacity: 0.2;
	animation: core-pulse 6s ease-in-out infinite;
}

@keyframes core-pulse {

	0%,
	100% {
		transform: scale(0.95);
		opacity: 0.1;
	}

	50% {
		transform: scale(1.05);
		opacity: 0.3;
	}
}

@keyframes blink {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.3;
	}
}

.brand-status-line {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.65rem;
	text-transform: uppercase;
	letter-spacing: 0.6em;
	color: rgba(255, 126, 34, 0.4);
	margin-top: 1rem;
}

.brand-status-line::before {
	content: 'SYSTEM.CORE : STABLE_FLUX';
}

/* ============================================
   Hero — Two columns (ref: Unlock Your Potential)
   ============================================ */
.qylos-hero,
.wp-block-cover.alignfull {
	position: relative;
	min-height: calc(50vh - var(--header-height)) !important;
	display: flex;
	align-items: center;
	padding: 2rem 0 !important;
	width: 100% !important;
	overflow: hidden;
}

/* Engineering Atmosphere (Edge Intensification) */
.qylos-hero .wp-block-cover__inner-container {
	position: relative;
	z-index: 20;
}

/* Layer 1: Atmospheric Vignette (Softened) */
.qylos-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	/* Softer, more neutral vignette focusing on depth rather than high-contrast markers */
	background:
		radial-gradient(circle at 50% 50%,
			transparent 20%,
			rgba(13, 17, 23, 0.2) 50%,
			rgba(10, 14, 20, 0.6) 80%,
			#0a0e14 100%);
}

/* Layer 2: Removed engineering markers for a cleaner look */
.qylos-hero::after {
	display: none;
}

@media (max-width: 900px) {
	.qylos-hero::after {
		display: none;
	}
}

/* Hero with background image */
.qylos-hero-has-bg {
	background: var(--qylos-hero-bg) center / cover no-repeat;
}

.qylos-hero-has-bg .qylos-hero-inner {
	position: relative;
	z-index: 1;
}

/* Hero background absolute */
.qylos-hero-bg-absolute {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: var(--qylos-hero-bg) center / cover no-repeat;
}

.qylos-hero-bg-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, var(--qylos-hero-overlay, 0.5));
	pointer-events: none;
}

.qylos-hero-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 2rem;
}

@media (max-width: 900px) {
	.qylos-hero-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

/* Left — Image placeholder (CHOOSE IMAGE style) */
.qylos-hero-media {
	position: relative;
	aspect-ratio: 16/9;
	/* Standard video ratio */
	width: 100%;
	background: var(--daw-bg-panel);
	border: 1px solid var(--daw-border);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.qylos-hero-media img,
.qylos-hero-media iframe,
.qylos-hero-media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: none;
}

.qylos-hero-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	color: var(--daw-accent-blue);
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 0.05em;
}

.qylos-hero-placeholder svg {
	width: 64px;
	height: 64px;
	opacity: 0.9;
}

/* Right — Headline & CTAs */
.qylos-hero-content h1 {
	font-size: clamp(2.25rem, 4vw, 3.5rem);
	font-weight: 700;
	line-height: 1.15;
	margin: 0 0 1.25rem;
	color: var(--daw-text);
	letter-spacing: -0.02em;
}

.qylos-hero-content .qylos-hero-desc {
	font-size: 1.05rem;
	color: var(--daw-text-muted);
	line-height: 1.65;
	margin-bottom: 2rem;
	max-width: 480px;
}

.qylos-front-page .qylos-hero-content .qylos-hero-desc {
	max-width: 100%;
}

.qylos-hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.qylos-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.75rem;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	border: none;
	border-radius: var(--radius);
	cursor: pointer;
	transition: background var(--transition), transform 0.15s ease;
}

.qylos-btn:hover {
	transform: translateY(-1px);
}

.qylos-btn-secondary {
	background: var(--daw-cta-secondary);
	color: var(--daw-text);
}

.qylos-btn-secondary:hover {
	background: rgba(110, 118, 129, 0.55);
}

.qylos-btn-primary {
	background: var(--daw-cta-primary);
	color: #0d1117;
}

.qylos-btn-primary:hover {
	background: #e5b020;
}

/* ============================================
   Scroll reveal (subtle)
   ============================================ */
.qylos-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.qylos-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.qylos-reveal-delay-1 {
	transition-delay: 0.1s;
}

.qylos-reveal-delay-2 {
	transition-delay: 0.2s;
}

.qylos-reveal-delay-3 {
	transition-delay: 0.3s;
}

.qylos-reveal-delay-4 {
	transition-delay: 0.4s;
}

/* ============================================
   Main content (pages, posts)
   ============================================ */
.qylos-main {
	position: relative;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 3rem 2rem;
}

.qylos-main .entry-content {
	color: var(--daw-text-muted);
}

.qylos-main .entry-content h1,
.qylos-main .entry-content h2,
.qylos-main .entry-content h3 {
	color: var(--daw-text);
}

/* ============================================
   Footer
   ============================================ */
.qylos-footer {
	border-top: 1px solid var(--daw-border);
	background: rgba(13, 17, 23, 0.9);
	padding: 2rem;
	text-align: center;
	color: var(--daw-text-muted);
	font-size: 0.9rem;
}

.qylos-footer-widgets {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	text-align: left;
	margin-bottom: 3rem;
	border-bottom: 1px solid var(--daw-border);
	padding-bottom: 2rem;
}

.qylos-footer-widget-area h2.widget-title {
	font-size: 1.1rem;
	color: var(--daw-text);
	margin-bottom: 1rem;
	border-bottom: 2px solid var(--daw-accent-blue);
	display: inline-block;
	padding-bottom: 0.25rem;
}

.qylos-footer-widget-area ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.qylos-footer-widget-area li {
	margin-bottom: 0.5rem;
}

.qylos-footer a {
	color: var(--daw-text-muted);
}

.qylos-footer a:hover {
	color: var(--daw-text);
}

.qylos-footer-nav {
	margin-bottom: 0.75rem;
}

.qylos-footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}

.qylos-footer-menu a {
	color: var(--daw-text-muted);
}

.qylos-copyright {
	margin: 0;
	font-size: 0.85rem;
	opacity: 0.9;
}

/* ============================================
   Utility
   ============================================ */
.qylos-container {
	max-width: var(--container-max);
	margin-left: auto;
	margin-right: auto;
	padding-left: 2rem;
	padding-right: 2rem;
}

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

/* Gutenberg Alignments */
/* Gutenberg Alignments */
.alignwide {
	margin-left: -10vw;
	margin-right: -10vw;
	max-width: 100vw;
	width: auto;
}

.alignfull {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	max-width: 100vw;
	width: 100vw;
}

/* Ensure no horizontal scroll from alignfull */
body {
	overflow-x: hidden;
}

/* ============================================
   Mobile Navigation & Responsive
   ============================================ */
.menu-toggle {
	display: none;
	background: transparent;
	border: none;
	padding: 0;
	cursor: pointer;
	z-index: 200;
	flex-direction: column;
	justify-content: space-between;
	height: 24px;
	width: 30px;
	margin-left: auto;
	/* Push to right if needed */
}

.menu-toggle .icon-bar {
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--daw-text);
	transition: all 0.3s ease;
	border-radius: 2px;
}

/* Mobile Menu Active State */
.menu-toggle.toggled-on .icon-bar:nth-child(1) {
	transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.toggled-on .icon-bar:nth-child(2) {
	opacity: 0;
}

.menu-toggle.toggled-on .icon-bar:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 900px) {

	/* Header Layout */
	.qylos-header {
		padding: 0 1.5rem;
		height: 70px;
		/* Smaller header on mobile */
	}

	.menu-toggle {
		display: flex;
	}

	/* Nav Menu styling */
	.qylos-nav {
		position: fixed;
		top: 70px;
		left: 0;
		right: 0;
		background: rgba(13, 17, 23, 0.99);
		backdrop-filter: blur(16px);
		border-bottom: 1px solid var(--daw-border);
		padding: 2rem;
		flex-direction: column;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-20px);
		transition: all 0.3s ease;
		z-index: 99;
		height: auto;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	}

	.qylos-nav.toggled-on {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.qylos-nav ul {
		flex-direction: column;
		width: 100%;
		text-align: center;
		gap: 1.5rem;
	}

	.qylos-nav a {
		font-size: 1.25rem;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0.75rem 0;
		min-height: 44px;
	}

	/* Hero Adjustments */
	.qylos-hero {
		padding: 1rem 0 3rem;
		min-height: auto;
		align-items: flex-start;
	}

	.qylos-hero-inner {
		grid-template-columns: 1fr;
		gap: 2.5rem;
		text-align: center;
		padding: 0 1.5rem;
	}

	.qylos-hero-content h1 {
		font-size: 2.25rem;
		margin-bottom: 1rem;
	}

	.qylos-hero-content .qylos-hero-desc {
		margin-left: auto;
		margin-right: auto;
		font-size: 1rem;
		margin-bottom: 1.5rem;
	}

	.qylos-hero-buttons {
		justify-content: center;
	}

	/* Stack WP Gutenberg buttons on mobile */
	.qylos-hero .wp-block-buttons {
		flex-direction: column !important;
		align-items: center !important;
		width: 100% !important;
		max-width: 300px !important;
		margin: 0 auto !important;
		gap: 0.75rem !important;
	}

	.qylos-hero .wp-block-buttons .wp-block-button {
		width: 100% !important;
	}

	.qylos-hero .wp-block-buttons .wp-block-button__link {
		width: 100% !important;
		text-align: center !important;
		box-sizing: border-box !important;
	}

	/* Prevent hero container overflow on narrow screens */
	.wp-block-cover__inner-container {
		width: 100% !important;
		max-width: 100% !important;
		padding-left: 1.25rem !important;
		padding-right: 1.25rem !important;
		box-sizing: border-box !important;
	}

	/* Refined placeholder size for mobile */
	.qylos-hero-media {
		order: -1;
		max-height: 250px;
		aspect-ratio: 16/9;
	}

	.qylos-footer-widgets {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

@media (min-width: 600px) and (max-width: 900px) {
	.qylos-footer-widgets {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ============================================
   Master Console Footer (Creative Pattern)
   ============================================ */
/* ============================================
   Pro-Minimal Footer (Strict Engineering)
   ============================================ */
.qylos-master-footer {
	background: #0d1117;
	border-top: 1px solid var(--daw-border);
	padding: 3rem 0 1.5rem;
	color: var(--daw-text);
	font-family: 'Inter', sans-serif;
}

.master-footer-inner {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 2rem;
}

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

@media (max-width: 900px) {
	.master-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
}

@media (max-width: 640px) {
	.master-footer-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.master-footer-inner {
		padding: 0 1.25rem;
	}
}

/* Strict Module Styling */
.footer-module h3 {
	font-size: 0.75rem !important;
	font-weight: 700 !important;
	text-transform: uppercase;
	letter-spacing: 1.5px !important;
	color: #fff;
	margin-bottom: 1.2rem !important;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-module ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-module li {
	margin-bottom: 0.6rem;
}

.footer-module a {
	color: var(--daw-text-muted);
	font-size: 0.85rem;
	transition: color var(--transition);
}

.footer-module a:hover {
	color: var(--daw-accent-blue);
}

/* Brand Section */
.footer-brand h2 {
	font-size: 1.25rem !important;
	font-weight: 800 !important;
	margin-bottom: 0.8rem !important;
	color: #fff;
}

.footer-brand p {
	color: var(--daw-text-muted);
	font-size: 0.85rem;
	line-height: 1.5;
	max-width: 260px;
}

/* Strict Status Strip */
.master-status-bar {
	border-top: 1px solid var(--daw-border);
	padding-top: 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.65rem;
	color: var(--daw-text-muted);
	text-transform: uppercase;
}

.status-bits {
	display: flex;
	gap: 2rem;
}

.status-bit b {
	color: var(--daw-text);
	font-weight: normal;
}

/* ============================================
   Plugin Engine & Format Badges
   ============================================ */
.plugin-engine-wrap {
	padding: 6rem 0;
	background: #090c10;
	border-bottom: 1px solid var(--daw-border);
}

@media (max-width: 768px) {
	.plugin-engine-wrap {
		padding: 3.5rem 1.25rem;
	}

	.plugin-engine-text h2 {
		font-size: clamp(1.6rem, 7vw, 2.5rem) !important;
	}
}

.plugin-formats-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	justify-content: center;
	margin-top: 3rem;
}

.plugin-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 1.4rem;
	border-radius: 4px;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.02);
	color: #fff;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: default;
}

.plugin-badge:hover {
	border-color: rgba(255, 255, 255, 0.4);
	background: rgba(255, 255, 255, 0.08);
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Specific Format Indicators */
.badge-vst {
	border-left: 4px solid #58a6ff;
}

.badge-vst3 {
	border-left: 4px solid #1f6feb;
}

.badge-clap {
	border-left: 4px solid #f85149;
}

.badge-native {
	border-left: 4px solid #2ea043;
}

.badge-js {
	border-left: 4px solid #f2c0af;
}

.badge-amxd {
	border-left: 4px solid #ab7df8;
}

.plugin-engine-text {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	margin-bottom: 2rem;
}

.plugin-engine-text h2 {
	font-size: 2.5rem !important;
	font-weight: 900 !important;
	letter-spacing: -0.02em !important;
	margin-bottom: 1.5rem !important;
}

.plugin-engine-text p {
	color: var(--daw-text-muted);
	font-size: 1.15rem;
	line-height: 1.6;
}

/* ============================================
   Phase Blocks (Professional Workflow)
   ============================================ */
.phase-block {
	position: relative;
	padding: 5rem 0;
}

.phase-number {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 1.2rem;
	color: #ff7e22;
	margin-bottom: 2rem;
	display: block;
	letter-spacing: 0.2em;
	font-weight: 700;
}

.phase-title {
	font-size: clamp(2rem, 5vw, 4rem) !important;
	font-weight: 900 !important;
	letter-spacing: -0.02em !important;
	margin-top: 0 !important;
	margin-bottom: 0.5rem !important;
	line-height: 1 !important;
}

.phase-subtitle {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.4em;
	color: var(--daw-text-muted);
	margin-bottom: 2.5rem;
}

.phase-text {
	font-size: 1.15rem;
	line-height: 1.7;
	color: var(--daw-text-muted);
	max-width: 600px;
}

/* Glass Card for Full Cover Phase — Refined 3.6 */
.phase-full-cover .wp-block-cover__inner-container {
	width: 100% !important;
	max-width: var(--container-max) !important;
	margin: 0 auto !important;
	display: block !important;
	padding: 2rem !important;
}

.phase-glass-card {
	background: rgba(13, 17, 23, 0.4) !important;
	/* Lighter tint for deeper blur */
	-webkit-backdrop-filter: blur(30px) saturate(150%) !important;
	backdrop-filter: blur(6px) saturate(150%) !important;
	padding: 4rem 5rem !important;
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	border-left: 6px solid #ff7e22 !important;
	max-width: 700px !important;
	margin-left: 0 !important;
	/* Stick to left of the constrained container */
	margin-right: auto !important;
	text-align: left !important;
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6) !important;
	position: relative;
	z-index: 10;
}

/* Ensure all text inside is strictly left-aligned */
.phase-glass-card h2,
.phase-glass-card h3,
.phase-glass-card p,
.phase-glass-card div,
.phase-glass-card .phase-number,
.phase-glass-card .phase-title,
.phase-glass-card .phase-subtitle,
.phase-glass-card .phase-text {
	text-align: left !important;
	margin-left: 0 !important;
	margin-right: auto !important;
}

@media (max-width: 600px) {
	.phase-glass-card {
		padding: 2rem 1.5rem !important;
		max-width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
}

/* ============================================
   Mobile-only fixes: status bar, badges
   ============================================ */
@media (max-width: 480px) {
	.master-status-bar {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}

	.status-bits {
		gap: 0.75rem;
		flex-wrap: wrap;
		justify-content: center;
	}

	.phase-title {
		font-size: clamp(1.8rem, 8vw, 4rem) !important;
	}

	.plugin-formats-grid {
		gap: 0.75rem;
	}

	.plugin-badge {
		font-size: 0.7rem;
		padding: 0.4rem 1rem;
	}
}

/* ============================================
   Contact Section Layout
   ============================================ */
.qylos-contact-section {
	background: var(--daw-bg-panel);
	border-top: 1px solid var(--daw-border);
	border-bottom: 1px solid var(--daw-border);
	padding: 6rem 0;
}

.qylos-contact-inner {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 2rem;
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 6rem;
	align-items: start;
}

.qylos-contact-label {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.4em;
	color: #ff7e22;
	margin-bottom: 1.25rem;
	display: block;
}

.qylos-contact-info h2 {
	font-size: clamp(2rem, 4vw, 3.25rem);
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1.05;
	margin: 0 0 1.5rem;
	color: var(--daw-text);
}

.qylos-contact-desc {
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--daw-text-muted);
	margin-bottom: 2.5rem;
}

.qylos-contact-divider {
	width: 48px;
	height: 3px;
	background: linear-gradient(90deg, #ff7e22, transparent);
	margin-bottom: 2.5rem;
	border: none;
}

.qylos-contact-meta {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.qylos-contact-meta-item {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.qylos-contact-meta-icon {
	width: 40px;
	height: 40px;
	border: 1px solid var(--daw-border);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #ff7e22;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.7rem;
}

.qylos-contact-meta-text {
	font-size: 0.9rem;
	color: var(--daw-text-muted);
	line-height: 1.4;
}

.qylos-contact-meta-text strong {
	display: block;
	color: var(--daw-text);
	font-size: 0.85rem;
	font-family: 'IBM Plex Mono', monospace;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 0.15rem;
}

.qylos-contact-form-wrap {
	background: var(--daw-bg-elevated);
	border: 1px solid var(--daw-border);
	border-top: 3px solid #ff7e22;
	border-radius: var(--radius);
	padding: 3rem;
	position: relative;
	overflow: hidden;
}

.qylos-contact-form-wrap::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle at top right, rgba(255, 126, 34, 0.06) 0%, transparent 70%);
	pointer-events: none;
}

.qylos-contact-form-title {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.35em;
	color: var(--daw-text-muted);
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--daw-border);
}

.qylos-contact-form-title::before {
	content: '// ';
	color: #ff7e22;
}

@media (max-width: 900px) {
	.qylos-contact-inner {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
}

/* ============================================
   Contact Form 7 — DAW Engineering Skin
   ============================================ */
.wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.wpcf7-form label,
.wpcf7-form .wpcf7-label-text {
	display: block;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--daw-text-muted);
	margin-bottom: 0.5rem;
}

.wpcf7-form p {
	margin: 0;
	display: flex;
	flex-direction: column;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="number"],
.wpcf7-form select,
.wpcf7-form textarea {
	width: 100%;
	box-sizing: border-box;
	background: var(--daw-bg-dark);
	border: 1px solid var(--daw-border);
	border-radius: var(--radius);
	color: var(--daw-text);
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.9rem;
	padding: 0.85rem 1rem;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="url"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="number"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
	border-color: #ff7e22;
	background: rgba(255, 126, 34, 0.04);
	box-shadow: 0 0 0 3px rgba(255, 126, 34, 0.12);
}

.wpcf7-form textarea {
	min-height: 140px;
	resize: vertical;
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
	color: var(--daw-accent-purple);
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.85rem;
}

.wpcf7-form input[type="submit"],
.wpcf7-submit {
	background: #ff7e22 !important;
	color: #0d1117 !important;
	border: none !important;
	border-radius: var(--radius) !important;
	padding: 0.9rem 2.5rem !important;
	font-family: 'IBM Plex Mono', monospace !important;
	font-size: 0.8rem !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.2em !important;
	cursor: pointer !important;
	transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease !important;
	align-self: flex-start !important;
	margin-top: 0.5rem !important;
}

.wpcf7-form input[type="submit"]:hover,
.wpcf7-submit:hover {
	background: #ffaa55 !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 8px 24px rgba(255, 126, 34, 0.35) !important;
}

.wpcf7-form input[type="submit"]:active {
	transform: translateY(0) !important;
	box-shadow: none !important;
}

.wpcf7-not-valid-tip {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.7rem;
	color: #f85149;
	margin-top: 0.35rem;
	letter-spacing: 0.05em;
}

.wpcf7-not-valid {
	border-color: #f85149 !important;
	box-shadow: 0 0 0 3px rgba(248, 81, 73, 0.15) !important;
}

.wpcf7-response-output {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.78rem;
	padding: 1rem 1.25rem;
	border-radius: var(--radius);
	margin-top: 1rem;
	border: none !important;
}

.wpcf7-mail-sent-ok {
	background: rgba(46, 160, 67, 0.1);
	border-left: 4px solid #2ea043 !important;
	color: #2ea043;
}

.wpcf7-mail-sent-ng,
.wpcf7-aborted,
.wpcf7-spam-blocked,
.wpcf7-validation-errors {
	background: rgba(248, 81, 73, 0.1);
	border-left: 4px solid #f85149 !important;
	color: #f85149;
}

.wpcf7-spinner {
	display: none;
}



/* ============================================
   Product Checkout Block
   ============================================ */
.qylos-checkout-section {
	padding: 6rem 0;
	background: var(--daw-bg-dark);
}

.qylos-checkout-card {
	background: var(--daw-bg-elevated);
	border: 1px solid var(--daw-border);
	border-top: 3px solid #ff7e22;
	border-radius: var(--radius);
	padding: 0;
	max-width: var(--container-max);
	margin: 0 auto;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	overflow: hidden;
}

.qylos-checkout-media {
	background: var(--daw-bg-panel);
	border-right: 1px solid var(--daw-border);
	position: relative;
	min-height: 300px;
}

.qylos-checkout-media img,
.qylos-checkout-media .wp-block-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.qylos-checkout-content {
	padding: 4rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.qylos-checkout-badge {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.7rem;
	color: var(--daw-text-muted);
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.qylos-checkout-badge svg {
	color: #ff7e22;
}

.qylos-checkout-title {
	font-size: clamp(2rem, 3vw, 2.5rem);
	font-weight: 900;
	color: var(--daw-text);
	margin: 0 0 1rem;
	line-height: 1.1;
}

.qylos-checkout-desc {
	font-size: 1.05rem;
	color: var(--daw-text-muted);
	margin-bottom: 2.5rem;
	line-height: 1.6;
}

.qylos-checkout-action {
	display: flex;
	align-items: center;
	gap: 2rem;
	margin-top: auto;
	padding-top: 2.5rem;
	border-top: 1px solid var(--daw-border);
}

.qylos-checkout-price {
	font-size: 2.5rem;
	font-weight: 900;
	color: var(--daw-text);
	line-height: 1;
	letter-spacing: -0.02em;
}

.qylos-btn-buy {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #ff7e22;
	color: #0d1117 !important;
	padding: 1rem 3rem;
	border-radius: var(--radius);
	font-family: 'IBM Plex Mono', monospace;
	font-weight: 700;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	transition: all var(--transition);
	border: none;
	text-decoration: none;
}

.qylos-btn-buy:hover {
	background: #ffaa55;
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(255, 126, 34, 0.2);
}

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

	.qylos-checkout-media {
		border-right: none;
		border-bottom: 1px solid var(--daw-border);
	}

	.qylos-checkout-content {
		padding: 3rem 2rem;
	}

	.qylos-checkout-action {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.5rem;
	}
}

/* ============================================
   Engineering Philosophy (About) Block
   ============================================ */
.qylos-about-section {
	padding: 8rem 0;
	background: var(--daw-bg-panel);
	border-top: 1px solid var(--daw-border);
	border-bottom: 1px solid var(--daw-border);
}

.qylos-about-inner {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 2rem;
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 6rem;
	align-items: start;
}

.qylos-about-lead {
	position: sticky;
	top: 120px;
}

.qylos-about-label {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.3em;
	color: #ff7e22;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.qylos-about-label::before {
	content: '//';
	color: var(--daw-text-muted);
}

.qylos-about-title {
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 900;
	margin: 0 0 2rem;
	color: var(--daw-text);
	letter-spacing: -0.02em;
	line-height: 1.05;
}

.qylos-about-text {
	font-size: 1.15rem;
	line-height: 1.7;
	color: var(--daw-text-muted);
}

.qylos-about-content {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.qylos-about-text-lead {
	font-size: clamp(1.25rem, 2vw, 1.75rem);
	line-height: 1.5;
	font-weight: 500;
	color: var(--daw-text);
	margin: 0;
}

.qylos-about-content p:not(.qylos-about-text-lead) {
	font-size: 1.15rem;
	line-height: 1.8;
	color: var(--daw-text-muted);
	margin: 0;
}

.qylos-about-card:hover {
	border-color: #ff7e22;
}

.qylos-about-card-icon {
	color: #ff7e22;
	margin-bottom: 1.5rem;
}

.qylos-about-card h3 {
	font-size: 1.25rem;
	color: var(--daw-text);
	margin: 0 0 1rem;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.qylos-about-card p {
	font-size: 0.95rem;
	color: var(--daw-text-muted);
	margin: 0;
	line-height: 1.6;
}

@media (max-width: 1024px) {
	.qylos-about-inner {
		grid-template-columns: 1fr;
		gap: 4rem;
	}

	.qylos-about-lead {
		position: static;
	}
}

@media (max-width: 600px) {
	.qylos-about-grid {
		grid-template-columns: 1fr;
	}
}