:root {
  --vm-black: #071924;
  --vm-ink: #092536;
  --vm-panel-soft: rgba(238, 251, 255, 0.12);
  --vm-text: #f4fbff;
  --vm-muted: #c6ddea;
  --vm-green: #9ac93e;
  --vm-blue: #9dd6ff;
  --vm-violet: #c6b7ff;
  --vm-radius-xl: 48px;
  --vm-shadow: 0 36px 110px rgba(2, 19, 32, 0.34);
  --vm-shadow-soft: 0 22px 70px rgba(2, 19, 32, 0.2);
  --vm-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --vm-display: "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  color: var(--vm-text);
  background: var(--vm-black);
  font-family: var(--vm-font);
  line-height: 1.55;
}

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

button {
  font: inherit;
  color: inherit;
}

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

::selection {
  background: rgba(154, 201, 62, 0.35);
  color: #fff;
}

.vm-page {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 0%, rgba(154, 201, 62, 0.17), transparent 34rem),
    radial-gradient(circle at 88% 4%, rgba(142, 199, 255, 0.16), transparent 32rem),
    radial-gradient(circle at 48% 45%, rgba(169, 165, 255, 0.08), transparent 46rem),
    linear-gradient(180deg, #02070d 0%, #071421 42%, #02070d 100%);
}

.vm-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.17;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 22%, #000 0%, transparent 70%);
}

.vm-page > * {
  position: relative;
  z-index: 1;
}

.vm-ambient {
  position: fixed;
  z-index: 0;
  width: 52vw;
  height: 52vw;
  min-width: 520px;
  min-height: 520px;
  filter: blur(38px);
  opacity: 0.36;
  pointer-events: none;
  border-radius: 999px;
}

.vm-ambient-a {
  top: -18vw;
  left: -18vw;
  background: radial-gradient(circle, rgba(154, 201, 62, 0.28), transparent 62%);
}

.vm-ambient-b {
  top: 10vh;
  right: -20vw;
  background: radial-gradient(circle, rgba(142, 199, 255, 0.26), transparent 62%);
}

.vm-container {
  width: min(1180px, calc(100% - 44px));
  margin-inline: auto;
}

.vm-section {
  padding: clamp(82px, 9vw, 138px) 0;
}

.vm-section-head {
  max-width: 840px;
  margin-bottom: 42px;
}

.vm-section-head h2,
.vm-contact-card h2 {
  margin: 0 0 18px;
  font-family: var(--vm-display);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
  font-size: clamp(2.45rem, 5.5vw, 5.65rem);
}

.vm-section-head p,
.vm-contact-card p {
  max-width: 760px;
  color: var(--vm-muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.vm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--vm-green);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.73rem;
  font-weight: 900;
}

.vm-eyebrow span {
  width: 34px;
  height: 1px;
  display: inline-block;
  background: linear-gradient(90deg, transparent, var(--vm-green));
}

.vm-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: var(--vm-text);
  font-size: 0.94rem;
  font-weight: 860;
  cursor: pointer;
  isolation: isolate;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.vm-btn:hover,
.vm-btn:focus-visible {
  transform: translateY(-2px);
}

.vm-btn-ghost:hover,
.vm-btn-ghost:focus-visible,
.vm-btn-primary:hover,
.vm-btn-primary:focus-visible {
  border-color: rgba(154, 201, 62, 0.3);
  background: rgba(154, 201, 62, 0.09);
}

.vm-contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(28px, 5vw, 64px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--vm-radius-xl);
  background:
    radial-gradient(circle at 15% 15%, rgba(154, 201, 62, 0.13), transparent 32%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.032)),
    rgba(12, 29, 45, 0.7);
  box-shadow: var(--vm-shadow);
  backdrop-filter: blur(22px);
}

.vm-contact-value {
  display: block;
  max-width: 100%;
  margin: 0;
  color: var(--vm-text);
  font-size: 0.98rem;
  line-height: 1.58;
  font-weight: 600;
  font-style: normal;
  text-decoration: none;
}

.vm-contact-value--email,
.vm-contact-value--phone,
.vm-contact-value--link {
  overflow-wrap: anywhere;
}

.vm-contact-value:hover,
.vm-contact-value:focus-visible {
  color: var(--vm-green);
}

@media (max-width: 900px) {
  .vm-contact-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .vm-section-head h2,
  .vm-contact-card h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .vm-hero-actions {
    display: grid;
  }

  .vm-hero-actions .vm-btn {
    width: 100%;
  }
}
