Get in Touch with Our Cryptographic Specialists

Whether you are seeking to reserve a Key Custody Architecture Review, schedule an on-site workshop for your engineering team, or submit an inquiry regarding our open-source research publications, our team in Chiang Mai is here to assist.


Office & Contact Details

<div style="margin-bottom: 1.5rem;">
  <h4 style="color: var(--color-green); margin-bottom: 0.35rem; font-size: 1.05rem;">Office Address</h4>
  <p style="margin-bottom: 0; color: #fff;">
    Office 12, 43 Test Avenue, Chiang Mai 00000
  </p>
  <p style="font-size: 0.88rem; color: var(--text-muted); margin-top: 0.25rem;">
    Chiang Mai Province, Kingdom of Thailand
  </p>
</div>

<div style="margin-bottom: 1.5rem;">
  <h4 style="color: var(--color-cyan); margin-bottom: 0.35rem; font-size: 1.05rem;">Telephone Support</h4>
  <p style="margin-bottom: 0; color: #fff; font-family: var(--font-mono); font-size: 1.1rem;">
    +66 52 000 485
  </p>
  <p style="font-size: 0.88rem; color: var(--text-muted); margin-top: 0.25rem;">
    Operating Hours: Monday – Friday, 09:00 – 18:00 ICT (UTC+7)
  </p>
</div>

<div style="margin-bottom: 1.5rem;">
  <h4 style="color: #c792ea; margin-bottom: 0.35rem; font-size: 1.05rem;">Electronic Mail</h4>
  <p style="margin-bottom: 0;">
    <a href="mailto:info@focus-weavecore.click" style="color: var(--color-green); font-size: 1.05rem; font-family: var(--font-mono);">info@focus-weavecore.click</a>
  </p>
  <p style="font-size: 0.88rem; color: var(--text-muted); margin-top: 0.25rem;">
    PGP key fingerprints available upon initial email verification.
  </p>
</div>

<div style="border-top: 1px solid var(--border-subtle); padding-top: 1.25rem; margin-top: 1.5rem;">
  <h4 style="font-size: 1rem; color: #fff; margin-bottom: 0.5rem;">Response Time Commitment</h4>
  <p style="font-size: 0.92rem; color: var(--text-muted); margin-bottom: 0;">
    All educational inquiries and workshop reservation requests receive a comprehensive scope reply within <strong>24 business hours</strong>.
  </p>
</div>

Send an Inquiry or Booking Brief

<!-- Success Message -->
<div class="alert-success" x-show="success" style="display: none;" role="alert">
  <h4 style="color: #14f195; margin-bottom: 0.5rem;">&#10003; Inquiry Received Successfully</h4>
  <p style="font-size: 0.95rem; margin-bottom: 0; color: #d1fae5;">
    Thank you for contacting Dime Key Management Guide. Our research coordinator has received your brief and will reply to your provided email within 24 business hours.
  </p>
</div>

<!-- Error Message -->
<div class="alert-error" x-show="errorMessage" style="display: none;" role="alert" x-text="errorMessage"></div>

<form @submit.prevent="submitForm" novalidate x-show="!success">
  <div class="form-group">
    <label for="name" class="form-label">Your Name / Organization Lead *</label>
    <input 
      type="text" 
      id="name" 
      class="form-control" 
      placeholder="e.g. Alex Morgan or Tech Lead" 
      x-model="name"
      :class="{ 'is-invalid': errors.name }"
    >
    <div class="form-error" x-show="errors.name" x-text="errors.name"></div>
  </div>

  <div class="form-group">
    <label for="email" class="form-label">Professional Email Address *</label>
    <input 
      type="email" 
      id="email" 
      class="form-control" 
      placeholder="e.g. alex@yourdomain.com" 
      x-model="email"
      :class="{ 'is-invalid': errors.email }"
    >
    <div class="form-error" x-show="errors.email" x-text="errors.email"></div>
  </div>

  <div class="form-group">
    <label for="service" class="form-label">Engagement or Inquiry Category</label>
    <select id="service" class="form-control" x-model="service">
      <option value="Flagship: Key Custody Architecture Review">Flagship: Key Custody Architecture Review ($1,850)</option>
      <option value="Multi-Signature Governance Session">Multi-Signature Governance Session ($1,400)</option>
      <option value="Validator & HSM Key Hardening">Validator &amp; HSM Key Hardening ($2,400)</option>
      <option value="Disaster Recovery Simulation Drill">Disaster Recovery Simulation Drill ($1,100)</option>
      <option value="General Educational Inquiry">General Educational / Research Inquiry</option>
    </select>
  </div>

  <div class="form-group">
    <label for="datePreference" class="form-label">Preferred Timeframe / Delivery Mode</label>
    <input 
      type="text" 
      id="datePreference" 
      class="form-control" 
      placeholder="e.g. Next month, Remote or Chiang Mai on-site" 
      x-model="datePreference"
    >
  </div>

  <div class="form-group">
    <label for="message" class="form-label">Project Scope &amp; Current Setup Details *</label>
    <textarea 
      id="message" 
      class="form-control" 
      placeholder="Please describe your current key storage setup, number of participants, or specific educational topics you wish to cover..." 
      x-model="message"
      :class="{ 'is-invalid': errors.message }"
    ></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="loading">
    <span x-show="!loading">Submit Inquiry / Booking Request &rarr;</span>
    <span x-show="loading" style="display: none;">Transmitting Secure Brief...</span>
  </button>

  <p style="font-size: 0.8rem; color: var(--text-muted); margin-top: 1rem; text-align: center; margin-bottom: 0;">
    We strictly protect your communication confidentiality. We never solicit or accept real private keys.
  </p>
</form>