Inquiries & Scheduling
Contact & Advisory Inquiries
Submit an inquiry for technical advisory, curriculum consultations, or validator infrastructure reviews.
Research Headquarters
Our research fellows and advisory team operate from our primary facility in Chiang Mai, Thailand. Inquiries are reviewed directly by senior engineering researchers.
<div class="card" style="background: rgba(16, 23, 36, 0.85); margin-bottom: 1.5rem;">
<div style="display: flex; flex-direction: column; gap: 1rem;">
<div>
<div class="mono" style="font-size: 0.78rem; text-transform: uppercase; color: var(--accent-turquoise);">Registered Entity</div>
<div style="font-weight: 700; color: #ffffff;">Dime Ecosystem Library Co., Ltd.</div>
</div>
<div>
<div class="mono" style="font-size: 0.78rem; text-transform: uppercase; color: var(--accent-turquoise);">Office Address</div>
<div style="color: #e2e8f0; font-size: 0.95rem;">Office 9, 45 Placeholder Avenue, Chiang Mai 00000</div>
</div>
<div>
<div class="mono" style="font-size: 0.78rem; text-transform: uppercase; color: var(--accent-turquoise);">Telephone</div>
<div style="color: #e2e8f0; font-size: 0.95rem;">+66 52 000 652</div>
</div>
<div>
<div class="mono" style="font-size: 0.78rem; text-transform: uppercase; color: var(--accent-turquoise);">Electronic Mail</div>
<div style="color: #e2e8f0; font-size: 0.95rem;">contact@huborbitbase.click</div>
</div>
<div>
<div class="mono" style="font-size: 0.78rem; text-transform: uppercase; color: var(--accent-turquoise);">Expected Response Time</div>
<div style="color: var(--text-muted); font-size: 0.9rem;">Within 1 to 2 business days (Indochina Time, UTC+7)</div>
</div>
</div>
</div>
Submit Advisory Inquiry
<div x-show="submitted" x-cloak class="form-alert-success">
<h4 style="color: var(--accent-neon-green); margin-bottom: 0.35rem;">Inquiry Transmitted Successfully</h4>
<p style="font-size: 0.92rem; margin: 0; color: #ffffff;">
Thank you for contacting the Dime Ecosystem Library. Our research fellows will review your technical overview and reply within 1–2 business days.
</p>
</div>
<div x-show="submitError" x-cloak class="form-alert-error">
<p style="font-size: 0.92rem; margin: 0; color: #ffffff;" x-text="errorMessage"></p>
</div>
<form x-show="!submitted" @submit.prevent="handleSubmit()">
<div class="form-group">
<label class="form-label" for="contact-name">
<span>Your Full Name</span>
<span x-show="errors.name" x-cloak class="form-error" x-text="errors.name"></span>
</label>
<input type="text" id="contact-name" x-model="formData.name" class="form-input" placeholder="e.g. Alex Thorne" required>
</div>
<div class="form-group">
<label class="form-label" for="contact-email">
<span>Corporate or Technical Email</span>
<span x-show="errors.email" x-cloak class="form-error" x-text="errors.email"></span>
</label>
<input type="email" id="contact-email" x-model="formData.email" class="form-input" placeholder="e.g. alex@engineering.org" required>
</div>
<div class="form-group">
<label class="form-label" for="contact-service">
<span>Area of Interest or Engagement</span>
</label>
<select id="contact-service" x-model="formData.service" class="form-select">
<option value="ecosystem-mapping-advisory">Ecosystem Mapping & Architecture Advisory ($1,250)</option>
<option value="technical-briefings">Custom Technical Briefing ($650)</option>
<option value="validator-operational-reviews">Validator & Node Operational Review ($1,850)</option>
<option value="curriculum-inquiry">Custom Educational Curriculum Inquiry</option>
<option value="general-inquiry">General Research & Library Question</option>
</select>
</div>
<div class="form-group">
<label class="form-label" for="contact-timeline">
<span>Preferred Engagement Timeline</span>
</label>
<select id="contact-timeline" x-model="formData.timeline" class="form-select">
<option value="standard">Standard (Next 3–4 Weeks)</option>
<option value="urgent">Near Term (Next 1–2 Weeks)</option>
<option value="future">Planning for Upcoming Quarter</option>
</select>
</div>
<div class="form-group">
<label class="form-label" for="contact-message">
<span>Technical Context & Scope Overview</span>
<span x-show="errors.message" x-cloak class="form-error" x-text="errors.message"></span>
</label>
<textarea id="contact-message" x-model="formData.message" rows="4" class="form-textarea" placeholder="Briefly describe your team's architecture, target throughput, or questions..."></textarea>
</div>
<button type="submit" class="btn btn-primary btn-lg" style="width: 100%;" :disabled="isSubmitting">
<span x-show="!isSubmitting">Transmit Advisory Inquiry</span>
<span x-show="isSubmitting" x-cloak>Transmitting...</span>
</button>
</form>
</div>