:root {
  --vm-violet: #6d28d9;
  --vm-violet-bright: #8b5cf6;
  --vm-lilac: #c4b5fd;
  --vm-ink: #0b0b12;
  --vm-ink-soft: #14141f;
  --vm-panel: #191926;
  --vm-line: rgba(196, 181, 253, 0.16);
  --vm-text: #ece9f6;
  --vm-muted: #a7a3bd;
  --vm-shell: 1120px;
  --vm-unit: 1.15rem;
  --vm-radius: 20px;
  --vm-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

.vm-body {
  margin: 0;
  background: var(--vm-ink);
  color: var(--vm-text);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: "Sora", system-ui, sans-serif;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.015em;
}

a { color: var(--vm-lilac); text-decoration: none; }
a:hover { color: #ffffff; }

.vm-shell {
  width: 100%;
  max-width: var(--vm-shell);
  margin: 0 auto;
  padding: 0 1.35rem;
}

.vm-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--vm-violet);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0 0 12px 0;
  z-index: 100;
}
.vm-skip:focus { left: 0; }

/* Header */
.vm-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(11, 11, 18, 0.72);
  border-bottom: 1px solid var(--vm-line);
  transition: background 0.4s var(--vm-ease), border-color 0.4s var(--vm-ease);
}
.vm-header.vm-header--float {
  background: rgba(11, 11, 18, 0.92);
}
.vm-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}
.vm-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--vm-text);
  letter-spacing: -0.01em;
}
.vm-brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: conic-gradient(from 210deg, var(--vm-violet), var(--vm-lilac), var(--vm-violet-bright), var(--vm-violet));
  box-shadow: 0 0 18px rgba(139, 92, 246, 0.55);
  flex: none;
}
.vm-brand-mark--sm { width: 18px; height: 18px; border-radius: 6px; }

.vm-nav { display: flex; align-items: center; }
.vm-nav-list {
  list-style: none;
  display: flex;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
}
.vm-nav-list a {
  color: var(--vm-muted);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.4rem 0;
  position: relative;
}
.vm-nav-list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--vm-lilac);
  transition: width 0.3s var(--vm-ease);
}
.vm-nav-list a:hover { color: #fff; }
.vm-nav-list a:hover::after { width: 100%; }

.vm-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--vm-line);
  border-radius: 11px;
  cursor: pointer;
}
.vm-nav-bar {
  width: 20px;
  height: 2px;
  background: var(--vm-text);
  border-radius: 2px;
  transition: transform 0.3s var(--vm-ease), opacity 0.3s var(--vm-ease);
}
.vm-nav-toggle[aria-expanded="true"] .vm-nav-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vm-nav-toggle[aria-expanded="true"] .vm-nav-bar:nth-child(2) { opacity: 0; }
.vm-nav-toggle[aria-expanded="true"] .vm-nav-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.vm-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 12vw, 8.5rem) 0 clamp(3.5rem, 8vw, 6rem);
  isolation: isolate;
}
.vm-hero-glow {
  position: absolute;
  inset: -30% -10% auto -10%;
  height: 130%;
  background:
    radial-gradient(60% 55% at 20% 25%, rgba(109, 40, 217, 0.55), transparent 60%),
    radial-gradient(50% 50% at 82% 30%, rgba(139, 92, 246, 0.38), transparent 62%),
    radial-gradient(70% 60% at 55% 90%, rgba(196, 181, 253, 0.18), transparent 65%);
  background-size: 200% 200%;
  filter: blur(8px);
  animation: vm-drift 18s ease-in-out infinite;
  z-index: -2;
}
.vm-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(38px);
  opacity: 0.55;
  z-index: -1;
}
.vm-hero-orb--a {
  width: 320px; height: 320px;
  top: 8%; right: -60px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.7), transparent 70%);
  animation: vm-float 12s ease-in-out infinite;
}
.vm-hero-orb--b {
  width: 260px; height: 260px;
  bottom: -70px; left: -50px;
  background: radial-gradient(circle, rgba(196, 181, 253, 0.5), transparent 70%);
  animation: vm-float 15s ease-in-out infinite reverse;
}
.vm-hero-inner { position: relative; max-width: 820px; }
.vm-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--vm-lilac);
  margin: 0 0 1.2rem;
}
.vm-hero-title {
  font-size: clamp(2.15rem, 6vw, 3.9rem);
  font-weight: 800;
  margin-bottom: 1.4rem;
  background: linear-gradient(120deg, #ffffff 20%, var(--vm-lilac) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.vm-hero-lead {
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  color: var(--vm-muted);
  max-width: 640px;
  margin: 0 0 2.2rem;
}
.vm-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* Buttons */
.vm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  transition: transform 0.25s var(--vm-ease), box-shadow 0.25s var(--vm-ease), background 0.25s var(--vm-ease);
  cursor: pointer;
}
.vm-btn--primary {
  background: linear-gradient(120deg, var(--vm-violet), var(--vm-violet-bright));
  color: #fff;
  box-shadow: 0 12px 30px -12px rgba(139, 92, 246, 0.8);
}
.vm-btn--primary:hover {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 18px 40px -12px rgba(139, 92, 246, 0.95);
}
.vm-btn--ghost {
  border: 1px solid var(--vm-line);
  color: var(--vm-text);
  background: rgba(196, 181, 253, 0.04);
}
.vm-btn--ghost:hover {
  transform: translateY(-3px);
  border-color: var(--vm-lilac);
  color: #fff;
}

/* Sections */
.vm-section-title {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.4rem;
}
.vm-intro { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.vm-intro-copy {
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  color: var(--vm-muted);
  max-width: 760px;
}

/* Offer grid */
.vm-offer {
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3.5rem, 8vw, 6rem);
  border-top: 1px solid var(--vm-line);
}
.vm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  margin-top: 2rem;
}
.vm-card {
  position: relative;
  background: linear-gradient(160deg, var(--vm-ink-soft), var(--vm-panel));
  border: 1px solid var(--vm-line);
  border-radius: var(--vm-radius);
  padding: 2rem 1.75rem 1.9rem;
  overflow: hidden;
  transition: transform 0.35s var(--vm-ease), border-color 0.35s var(--vm-ease), box-shadow 0.35s var(--vm-ease);
}
.vm-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 100% 0%, rgba(139, 92, 246, 0.16), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s var(--vm-ease);
}
.vm-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 181, 253, 0.4);
  box-shadow: 0 24px 48px -26px rgba(139, 92, 246, 0.7);
}
.vm-card:hover::before { opacity: 1; }
.vm-card-index {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--vm-violet-bright);
  letter-spacing: 0.1em;
}
.vm-card-title {
  font-size: 1.32rem;
  font-weight: 700;
  margin: 0.65rem 0 0.7rem;
}
.vm-card-copy { color: var(--vm-muted); margin: 0; font-size: 1rem; }

/* Contact */
.vm-contact {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  border-top: 1px solid var(--vm-line);
}
.vm-contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
.vm-contact-copy { color: var(--vm-muted); max-width: 460px; margin: 0 0 1.8rem; font-size: 1.08rem; }
.vm-contact-panel {
  background: linear-gradient(160deg, var(--vm-panel), var(--vm-ink-soft));
  border: 1px solid var(--vm-line);
  border-radius: var(--vm-radius);
  padding: 2rem 1.9rem;
}
.vm-panel-title {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--vm-lilac);
  margin: 0 0 1rem;
}
.vm-address {
  font-style: normal;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--vm-text);
}
.vm-reg-line {
  margin: 1.2rem 0 0.9rem;
  color: var(--vm-muted);
  font-size: 0.95rem;
}
.vm-panel-email { margin: 0; font-weight: 600; }

/* Footer */
.vm-footer {
  border-top: 1px solid var(--vm-line);
  background: #08080e;
  padding: 3rem 0 3.2rem;
}
.vm-footer-inner { display: flex; flex-direction: column; gap: 0.85rem; }
.vm-footer-brand { display: inline-flex; align-items: center; gap: 0.55rem; }
.vm-footer-name { font-family: "Sora", sans-serif; font-weight: 700; font-size: 1.05rem; }
.vm-footer-address { font-style: normal; color: var(--vm-muted); font-size: 0.98rem; }
.vm-footer-reg { color: var(--vm-muted); font-size: 0.9rem; margin: 0; }
.vm-footer-links { margin: 0.4rem 0 0; font-size: 0.95rem; }
.vm-footer-links a { color: var(--vm-lilac); font-weight: 600; }
.vm-footer-links a:hover { color: #fff; }
.vm-dot { color: var(--vm-muted); margin: 0 0.55rem; }

/* Scroll reveal */
.vm-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--vm-ease), transform 0.7s var(--vm-ease);
}
.vm-reveal.vm-in { opacity: 1; transform: none; }

/* Privacy page */
.vm-legal { padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem); }
.vm-legal-shell { max-width: 780px; }
.vm-legal h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
  background: linear-gradient(120deg, #fff, var(--vm-lilac));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.vm-legal-intro { color: var(--vm-muted); font-size: 1.1rem; margin: 0.4rem 0 2.4rem; }
.vm-legal h2 {
  font-size: 1.3rem;
  margin: 2.2rem 0 0.7rem;
  color: var(--vm-lilac);
}
.vm-legal p, .vm-legal li { color: var(--vm-muted); }
.vm-legal ul { padding-left: 1.2rem; }
.vm-legal li { margin-bottom: 0.5rem; }
.vm-legal a { font-weight: 600; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .vm-hero-glow, .vm-hero-orb { animation: none; }
  .vm-reveal { opacity: 1; transform: none; transition: none; }
}

/* Tablet+ */
@media (min-width: 720px) {
  .vm-grid { grid-template-columns: repeat(2, 1fr); gap: 1.35rem; }
  .vm-contact-inner { grid-template-columns: 1.1fr 0.9fr; gap: 3rem; }
  .vm-footer-links { margin-top: 0.6rem; }
}

/* Desktop */
@media (min-width: 1000px) {
  .vm-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Mobile nav */
@media (max-width: 719px) {
  .vm-nav-toggle { display: flex; }
  .vm-nav-list {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(11, 11, 18, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--vm-line);
    padding: 0.5rem 1.35rem 1.2rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--vm-ease), transform 0.3s var(--vm-ease);
  }
  .vm-nav-list.vm-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .vm-nav-list li { border-bottom: 1px solid var(--vm-line); }
  .vm-nav-list li:last-child { border-bottom: none; }
  .vm-nav-list a { display: block; padding: 0.95rem 0; font-size: 1.05rem; }
  .vm-nav-list a::after { display: none; }
}

@keyframes vm-drift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes vm-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-18px, 24px) scale(1.08); }
}
