Get in Touch with Our Security Specialists
Whether you need a confidential 1-on-1 Wallet Security & Custody Assessment, assistance configuring a newly acquired hardware device, or custom multi-signature governance for your organization, our advisory team in Petaling Jaya is ready to assist you.
Advisory Desk & Studio Office
We welcome scheduled in-person appointments at our Petaling Jaya studio as well as remote consultations via end-to-end encrypted video channels for international clients.
<div class="glass-card-static" style="display: flex; flex-direction: column; gap: 1.25rem; border: 1px solid var(--border-subtle);">
<div>
<strong style="color: var(--text-muted); font-size: 0.82rem; text-transform: uppercase; display: block;">Official Office Address</strong>
<span style="color: var(--text-primary); font-size: 1rem; font-weight: 500;">Office 11, 57 Sample Street, Petaling Jaya 00000</span>
</div>
<div>
<strong style="color: var(--text-muted); font-size: 0.82rem; text-transform: uppercase; display: block;">Direct Telephone Line</strong>
<a href="tel:+60300003290" style="color: var(--color-accent-green); font-size: 1rem; font-weight: 600;">+60 3 0000 3290</a>
</div>
<div>
<strong style="color: var(--text-muted); font-size: 0.82rem; text-transform: uppercase; display: block;">Electronic Correspondence</strong>
<a href="mailto:contact@mindprismpoint.click" style="color: var(--color-accent-cyan); font-size: 1rem; font-weight: 500;">contact@mindprismpoint.click</a>
</div>
<div>
<strong style="color: var(--text-muted); font-size: 0.82rem; text-transform: uppercase; display: block;">Advisory Operating Hours</strong>
<span style="color: var(--text-secondary); font-size: 0.92rem;">Monday – Friday: 09:00 – 18:00 (MYT / UTC+8)</span>
</div>
<div>
<strong style="color: var(--text-muted); font-size: 0.82rem; text-transform: uppercase; display: block;">Response Time Guarantee</strong>
<span style="color: var(--text-secondary); font-size: 0.92rem;">All audit and session inquiries receive a response within 24 business hours.</span>
</div>
</div>
Schedule an Engagement
Fill out the form below to request a session slot or ask a specific custody question.
<form @submit.prevent="submitForm">
<div class="form-group">
<label class="form-label" for="contact-name">Full Name *</label>
<input type="text" id="contact-name" x-model="name" class="form-control" placeholder="e.g. Marcus Tan" required>
<span class="form-error" x-show="errors.name" x-text="errors.name" style="display: none;"></span>
</div>
<div class="form-group">
<label class="form-label" for="contact-email">Email Address *</label>
<input type="email" id="contact-email" x-model="email" class="form-control" placeholder="name@example.com" required>
<span class="form-error" x-show="errors.email" x-text="errors.email" style="display: none;"></span>
</div>
<div class="form-group">
<label class="form-label" for="contact-service">Requested Advisory Service *</label>
<select id="contact-service" x-model="service" class="form-control">
<option value="Wallet Security & Custody Assessment (Flagship)">1-on-1 Wallet Security & Custody Assessment (Flagship)</option>
<option value="Hardware Wallet Onboarding & Recovery Drill">Hardware Wallet Onboarding & Recovery Drill</option>
<option value="Multi-Signature Custody Blueprint Workshop">Multi-Signature Custody Blueprint Workshop</option>
<option value="Key Recovery & Digital Continuity Planning">Key Recovery & Digital Continuity Planning</option>
<option value="Custom Institutional Scope">Custom Institutional Scope / Other Inquiry</option>
</select>
</div>
<div class="form-group">
<label class="form-label" for="contact-experience">Storage Experience Level</label>
<select id="contact-experience" x-model="experience" class="form-control">
<option value="Beginner (Transitioning from Exchanges)">Beginner (Transitioning from Exchanges)</option>
<option value="Intermediate (Active Hardware Wallet User)">Intermediate (Active Hardware Wallet User)</option>
<option value="Advanced / Institutional (Multi-Sig & Treasury)">Advanced / Institutional (Multi-Sig & Treasury)</option>
</select>
</div>
<div class="form-group">
<label class="form-label" for="contact-date">Preferred Session Date (Optional)</label>
<input type="date" id="contact-date" x-model="preferredDate" class="form-control">
</div>
<div class="form-group">
<label class="form-label" for="contact-message">Inquiry Details & Device Information *</label>
<textarea id="contact-message" x-model="message" rows="4" class="form-control" placeholder="Please describe your current setup, device models, or specific custody topics you wish to review. (Do not share private keys!)." required></textarea>
<span class="form-error" x-show="errors.message" x-text="errors.message" style="display: none;"></span>
</div>
<button type="submit" class="btn btn-primary" style="width: 100%;" :disabled="submitting">
<span x-show="!submitting">Submit Consultation Request →</span>
<span x-show="submitting" style="display: none;">Submitting Request...</span>
</button>
<div x-show="submitted && submitSuccess" class="form-status form-status-success" style="display: none;">
<strong style="display: block; margin-bottom: 0.25rem;">Request Submitted!</strong>
<span x-text="responseMsg"></span>
</div>
<div x-show="submitted && !submitSuccess" class="form-status form-status-error" style="display: none;">
<strong style="display: block; margin-bottom: 0.25rem;">Submission Notice</strong>
<span x-text="responseMsg"></span>
</div>
</form>
</div>