:root {
	--bg: #050910;
	--bg-2: #09111c;
	--text: #f6f8fb;
	--muted: #9fa9b6;
	--line: rgba(255, 255, 255, 0.12);
	--glass: rgba(10, 20, 32, 0.58);
	--cyan: #49e6ff;
	--cyan-soft: rgba(73, 230, 255, 0.2);
	--silver: #c8d0d8;
	--gold: #c5a15a;
	--shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
	--max: 1180px;
	--section: clamp(76px, 10vw, 140px);
	--pad: clamp(18px, 4vw, 48px);
	--radius: 8px;
	--ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.6;
	letter-spacing: 0;
	overflow-x: hidden;
}

body::before {
	position: fixed;
	inset: 0;
	z-index: -2;
	content: "";
	background:
		linear-gradient(115deg, rgba(73, 230, 255, 0.08), transparent 34%),
		radial-gradient(circle at 80% 15%, rgba(197, 161, 90, 0.08), transparent 24%),
		linear-gradient(180deg, #02050a 0%, var(--bg) 50%, #07101a 100%);
}

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

video,
img {
	display: block;
	max-width: 100%;
}

button,
input,
select,
textarea {
	font: inherit;
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 30;
	padding: 10px 14px;
	background: var(--text);
	color: var(--bg);
	transform: translateY(-160%);
}

.skip-link:focus {
	transform: translateY(0);
}

.loader {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: grid;
	place-items: center;
	background: #02050a;
	transition: opacity 700ms var(--ease), visibility 700ms var(--ease);
}

.loader__mark {
	position: relative;
	color: var(--text);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.34em;
	text-indent: 0.34em;
}

.loader__mark::after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -16px;
	height: 1px;
	content: "";
	background: linear-gradient(90deg, transparent, var(--cyan), transparent);
	animation: fikra-scan 1s var(--ease) infinite;
}

body.is-loaded .loader {
	visibility: hidden;
	opacity: 0;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 24px var(--pad);
	background: linear-gradient(180deg, rgba(2, 5, 10, 0.76), transparent);
}

.brand {
	display: inline-flex;
	flex-direction: column;
	line-height: 1;
}

.brand__logo {
	width: min(176px, 36vw);
	height: auto;
	object-fit: contain;
}

.brand span {
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: 0.22em;
}

.brand small {
	margin-top: 6px;
	color: var(--muted);
	font-size: 0.62rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.custom-logo {
	width: auto;
	max-width: 180px;
	height: auto;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: clamp(14px, 3vw, 34px);
	color: var(--silver);
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.site-nav a {
	position: relative;
	padding: 8px 0;
}

.site-nav a::after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	content: "";
	background: var(--cyan);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 280ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
	transform: scaleX(1);
	transform-origin: left;
}

.hero {
	position: relative;
	min-height: 100vh;
	display: grid;
	align-items: end;
	padding: 120px var(--pad) clamp(70px, 10vw, 110px);
	overflow: hidden;
}

.hero__video,
.hero__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero__video {
	object-fit: cover;
	filter: saturate(0.78) contrast(1.08) brightness(0.58);
}

.hero__overlay {
	background:
		linear-gradient(90deg, rgba(2, 5, 10, 0.92), rgba(2, 5, 10, 0.42) 48%, rgba(2, 5, 10, 0.76)),
		linear-gradient(180deg, rgba(2, 5, 10, 0.25), rgba(2, 5, 10, 0.96));
}

.hero__content {
	position: relative;
	z-index: 1;
	width: min(920px, 100%);
}

.eyebrow {
	margin: 0 0 18px;
	color: var(--cyan);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2 {
	font-family: "Helvetica Neue", Inter, ui-sans-serif, system-ui, sans-serif;
	font-weight: 700;
	line-height: 0.96;
	letter-spacing: 0;
}

h1 {
	max-width: 980px;
	margin-bottom: 26px;
	font-size: clamp(3.8rem, 11vw, 9.2rem);
}

.hero__headline span {
	display: block;
	white-space: nowrap;
}

h2 {
	max-width: 860px;
	margin-bottom: 18px;
	font-size: clamp(2.15rem, 6vw, 5.6rem);
}

h3 {
	margin-bottom: 14px;
	font-size: clamp(1.15rem, 2vw, 1.55rem);
	line-height: 1.2;
}

.hero__copy,
.section__intro p,
.philosophy p {
	max-width: 620px;
	color: var(--silver);
	font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 13px 22px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	color: var(--text);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: border-color 240ms ease, background 240ms ease, color 240ms ease, transform 240ms ease;
}

.button:hover,
.button:focus-visible {
	border-color: var(--cyan);
	transform: translateY(-2px);
}

.button--primary {
	background: var(--text);
	color: var(--bg);
}

.button--primary:hover,
.button--primary:focus-visible {
	background: var(--cyan);
	color: #021015;
}

.button--ghost {
	background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(16px);
}

.section {
	width: min(var(--max), calc(100% - (var(--pad) * 2)));
	margin: 0 auto;
	padding: var(--section) 0;
}

.section__intro {
	margin-bottom: clamp(34px, 6vw, 70px);
}

.showreel {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #02050a;
	box-shadow: var(--shadow);
}

.showreel video {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.video-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-top: 18px;
}

.video-card {
	position: relative;
	overflow: hidden;
	min-height: 220px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #06101a;
	color: var(--text);
	cursor: pointer;
}

.video-card video {
	width: 100%;
	height: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	filter: saturate(0.85) brightness(0.72);
	transition: transform 650ms var(--ease), filter 650ms var(--ease);
}

.video-card span {
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 14px;
	z-index: 1;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-align: left;
	text-transform: uppercase;
}

.video-card::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, transparent 35%, rgba(2, 5, 10, 0.86));
}

.video-card:hover video {
	filter: saturate(1) brightness(0.95);
	transform: scale(1.05);
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.service-card {
	min-height: 290px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: clamp(24px, 4vw, 38px);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
	box-shadow: 0 20px 55px rgba(0, 0, 0, 0.25);
	text-align: center;
}

.service-card p {
	color: var(--muted);
}

.production-band {
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0;
	padding: clamp(64px, 10vw, 126px) clamp(28px, 7vw, 96px);
	overflow: hidden;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background:
		linear-gradient(120deg, rgba(73, 230, 255, 0.12), transparent 34%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
	box-shadow: var(--shadow);
}

.production-band__video,
.production-band__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.production-band__video {
	object-fit: cover;
	filter: saturate(0.8) contrast(1.08) brightness(0.46);
}

.production-band__overlay {
	background:
		linear-gradient(90deg, rgba(2, 5, 10, 0.92), rgba(2, 5, 10, 0.58) 50%, rgba(2, 5, 10, 0.88)),
		linear-gradient(180deg, rgba(2, 5, 10, 0.18), rgba(2, 5, 10, 0.9));
}

.production-band::after {
	position: absolute;
	right: -18%;
	bottom: -45%;
	width: 58%;
	height: 92%;
	content: "";
	border: 1px solid rgba(73, 230, 255, 0.16);
	transform: rotate(-12deg);
}

.production-band__copy {
	position: relative;
	z-index: 1;
	width: min(760px, 100%);
}

.production-band__copy p:not(.eyebrow) {
	color: var(--silver);
	font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.production-band__list {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	width: min(var(--max), 100%);
	margin-top: clamp(34px, 6vw, 70px);
}

.production-band__list span {
	min-height: 92px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: var(--radius);
	background: rgba(2, 5, 10, 0.42);
	color: var(--text);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-align: center;
	text-transform: uppercase;
}

.hybrid-section {
	width: min(var(--max), calc(100% - (var(--pad) * 2)));
	margin: 0 auto;
	padding: var(--section) 0 0;
}

.hybrid-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
}

.hybrid-grid article {
	min-height: 310px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: clamp(24px, 4vw, 38px);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
		var(--bg-2);
	text-align: center;
}

.hybrid-grid strong {
	display: block;
	margin-bottom: clamp(18px, 4vw, 36px);
	color: var(--cyan);
	font-size: 0.76rem;
	letter-spacing: 0.18em;
}

.hybrid-grid p {
	color: var(--muted);
}

.philosophy {
	width: min(1020px, calc(100% - (var(--pad) * 2)));
	margin: 0 auto;
	padding: clamp(80px, 11vw, 150px) 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.philosophy h2 {
	max-width: 960px;
}

.contact {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(34px, 7vw, 88px);
	align-items: start;
}

.contact-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	padding: clamp(20px, 4vw, 34px);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--glass);
	backdrop-filter: blur(18px);
}

.contact-form label {
	display: grid;
	gap: 8px;
	color: var(--silver);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius);
	background: rgba(2, 5, 10, 0.62);
	color: var(--text);
	outline: none;
	padding: 14px 15px;
	transition: border-color 220ms ease, box-shadow 220ms ease;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	border-color: var(--cyan);
	box-shadow: 0 0 0 4px var(--cyan-soft);
}

.contact-form__wide,
.form-message {
	grid-column: 1 / -1;
}

.contact-direct {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 18px;
	padding-top: 8px;
	color: var(--muted);
	font-size: 0.86rem;
}

.contact-address {
	color: var(--silver);
}

.form-message {
	padding: 14px 16px;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.08);
	color: var(--text);
}

.form-message--success {
	border: 1px solid rgba(73, 230, 255, 0.45);
}

.form-message--error {
	border: 1px solid rgba(255, 130, 130, 0.55);
}

.site-footer {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	padding: 34px var(--pad);
	border-top: 1px solid var(--line);
	color: var(--muted);
	font-size: 0.86rem;
}

.site-footer div,
.site-footer nav {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
}

.site-footer strong {
	color: var(--text);
}

.site-footer a:hover,
.site-footer a:focus-visible {
	color: var(--cyan);
}

.social-links a {
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.04);
	color: var(--text);
	transition: border-color 240ms ease, color 240ms ease, transform 240ms ease, background 240ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
	border-color: var(--cyan);
	background: rgba(73, 230, 255, 0.08);
	color: var(--cyan);
	transform: translateY(-2px);
}

.social-links svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.video-modal {
	position: fixed;
	inset: 0;
	z-index: 80;
	display: grid;
	place-items: center;
	padding: var(--pad);
	background: rgba(2, 5, 10, 0.88);
	opacity: 0;
	visibility: hidden;
	transition: opacity 240ms ease, visibility 240ms ease;
}

.video-modal.is-open {
	opacity: 1;
	visibility: visible;
}

.video-modal__frame {
	width: min(1040px, 100%);
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #000;
	box-shadow: var(--shadow);
}

.video-modal video {
	width: 100%;
	max-height: 78vh;
	background: #000;
}

.video-modal__close {
	position: absolute;
	top: 22px;
	right: 22px;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.07);
	color: var(--text);
	font-size: 1.65rem;
	line-height: 1;
	cursor: pointer;
}

.cursor-glow {
	position: fixed;
	z-index: 90;
	width: 180px;
	height: 180px;
	pointer-events: none;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(73, 230, 255, 0.16), transparent 64%);
	opacity: 0;
	transform: translate(-50%, -50%);
	transition: opacity 220ms ease;
	mix-blend-mode: screen;
}

[data-reveal] {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

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

@keyframes fikra-scan {
	0% {
		transform: scaleX(0);
		opacity: 0;
	}
	45% {
		opacity: 1;
	}
	100% {
		transform: scaleX(1);
		opacity: 0;
	}
}

@media (max-width: 900px) {
	.site-header {
		position: absolute;
	}

	.video-grid,
	.card-grid,
	.production-band__list,
	.hybrid-grid,
	.contact {
		grid-template-columns: 1fr;
	}

	.video-card {
		min-height: 260px;
	}

	.service-card {
		min-height: auto;
	}

	.production-band {
		padding: clamp(28px, 8vw, 44px);
	}

	.hybrid-grid article {
		min-height: auto;
	}

	.hybrid-grid strong {
		margin-bottom: 32px;
	}

	.site-footer {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 640px) {
	:root {
		--pad: 18px;
	}

	.site-header {
		align-items: flex-start;
		padding-top: 18px;
	}

	.site-nav {
		gap: 12px;
		font-size: 0.68rem;
	}

	.brand small {
		display: none;
	}

	.brand__logo {
		width: min(132px, 38vw);
	}

	.hero {
		min-height: 94vh;
		padding-top: 112px;
	}

	h1 {
		font-size: clamp(2.85rem, 14.5vw, 5.4rem);
	}

	.button {
		width: 100%;
	}

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

@media (hover: none), (pointer: coarse) {
	.cursor-glow {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 1ms !important;
		scroll-behavior: auto !important;
		transition-duration: 1ms !important;
	}
}
