Contact the Research Desk
Get in touch with our Edinburgh educational team for research inquiries, session scheduling, or academic collaboration.
Reach Our Edinburgh Office
We welcome inquiries from academic researchers, university departments, software engineers, and students. Our team is available Monday through Friday from 09:00 to 17:30 UTC. We aim to respond to all written educational inquiries within 24 business hours.
Contact Information
Please use the direct contact points below or submit the inquiry form.
<div style="margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem;">
<div style="display: flex; gap: 1rem; align-items: flex-start;">
<div class="card-icon" style="margin-bottom: 0; flex-shrink: 0;">
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"></path>
<circle cx="12" cy="10" r="3"></circle>
</svg>
</div>
<div>
<h4 style="margin-bottom: 0.25rem;">Physical Office</h4>
<p style="margin: 0; color: var(--text-bright);">Office 9, 45 Placeholder Road, Edinburgh ZZ5 5AA</p>
<span style="font-size: 0.82rem; color: var(--text-dim);">Scotland, United Kingdom</span>
</div>
</div>
<div style="display: flex; gap: 1rem; align-items: flex-start;">
<div class="card-icon" style="margin-bottom: 0; flex-shrink: 0;">
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path>
</svg>
</div>
<div>
<h4 style="margin-bottom: 0.25rem;">Direct Telephone</h4>
<p style="margin: 0;"><a href="tel:+441310006520" style="color: var(--text-bright); font-weight: 600;">+44 131 000 6520</a></p>
<span style="font-size: 0.82rem; color: var(--text-dim);">Mon–Fri, 09:00–17:30 UTC</span>
</div>
</div>
<div style="display: flex; gap: 1rem; align-items: flex-start;">
<div class="card-icon" style="margin-bottom: 0; flex-shrink: 0;">
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path>
<polyline points="22,6 12,13 2,6"></polyline>
</svg>
</div>
<div>
<h4 style="margin-bottom: 0.25rem;">Email Inquiries</h4>
<p style="margin: 0;"><a href="mailto:hello@focusprismhub.click" style="color: var(--color-green); font-weight: 600;">hello@focusprismhub.click</a></p>
<span style="font-size: 0.82rem; color: var(--text-dim);">General and academic correspondence</span>
</div>
</div>
</div>
Send an Inquiry
<div x-show="submitSuccess" class="form-success-box" style="display: none; margin-bottom: 1.5rem;">
<h4 style="color: #14F195; margin-bottom: 0.25rem;">Inquiry Received</h4>
<p style="font-size: 0.9rem; color: #d1fae5; margin: 0;">Thank you for contacting our research desk. A team coordinator will review your request and get back to you within 24 business hours.</p>
</div>
<div x-show="submitError" style="color: #f87171; background: rgba(239, 68, 68, 0.1); padding: 1rem; border-radius: var(--radius-md); margin-bottom: 1.5rem; display: none;" x-text="submitError"></div>
<form @submit.prevent="handleSubmit" novalidate>
<div class="form-group">
<label for="name" class="form-label">Full Name *</label>
<input type="text" id="name" x-model="name" class="form-input" placeholder="e.g. Dr. Jane Stewart" required>
<div class="form-error" x-show="errors.name" x-text="errors.name"></div>
</div>
<div class="form-group">
<label for="email" class="form-label">Email Address *</label>
<input type="email" id="email" x-model="email" class="form-input" placeholder="e.g. j.stewart@university.ac.uk" required>
<div class="form-error" x-show="errors.email" x-text="errors.email"></div>
</div>
<div class="form-group">
<label for="service" class="form-label">Topic / Service of Interest</label>
<select id="service" x-model="service" class="form-select">
<option value="General Educational Inquiry">General Educational Inquiry</option>
<option value="1-on-1 Research Curriculum Briefing">1-on-1 Research Curriculum Briefing (£240)</option>
<option value="Consensus Study Seminar">Consensus Study Seminar (£480)</option>
<option value="Commissioned Research Monograph">Commissioned Research Monograph</option>
<option value="Academic Collaboration / Guest Article">Academic Collaboration / Guest Article</option>
</select>
</div>
<div class="form-group">
<label for="message" class="form-label">Your Message or Research Question *</label>
<textarea id="message" x-model="message" rows="5" class="form-textarea" placeholder="Describe your technical background, specific topics you wish to explore, or desired briefing dates..." required></textarea>
<div class="form-error" x-show="errors.message" x-text="errors.message"></div>
</div>
<button type="submit" class="btn btn-primary" style="width: 100%;" :disabled="isSubmitting">
<span x-show="!isSubmitting">Submit Inquiry</span>
<span x-show="isSubmitting" style="display: none;">Transmitting...</span>
</button>
</form>